Searched refs:magnitude (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/lib/libc/sparc64/fpu/
H A Dfpu_compare.c150 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude))
165 * Only numbers remain. To compare two numbers in magnitude, we
/freebsd-10-stable/sys/powerpc/fpu/
H A Dfpu_compare.c139 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude))
/freebsd-10-stable/contrib/apr/strings/
H A Dapr_snprintf.c335 register apr_uint32_t magnitude = num; local
346 * Here is what we do to obtain the number's magnitude:
354 magnitude = ((apr_uint32_t) -t) + 1;
362 register apr_uint32_t new_magnitude = magnitude / 10;
364 *--p = (char) (magnitude - new_magnitude * 10 + '0');
365 magnitude = new_magnitude;
367 while (magnitude);
378 apr_uint64_t magnitude = num; local
385 if ((magnitude <= APR_UINT32_MAX && is_unsigned)
398 * Here is what we do to obtain the number's magnitude
[all...]
/freebsd-10-stable/tools/test/iconv/tablegen/
H A Dtablegen.c127 magnitude(const uint32_t p) function
144 printf("0x%.*X", magnitude(data), data);
147 switch (magnitude(data)) {
296 inbytesleft = uniinput ? 4 : magnitude(inbuf);
/freebsd-10-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_reset.c5165 /* magnitude mismatch, tx */
5173 /* magnitude mismatch, rx */
5299 /* find magnitude by approximation */
5410 #define MAX_MAG_DELTA 11 //maximum magnitude mismatch delta across gains
5446 int32_t magnitude, phase; local
5501 magnitude = coeff->mag_coeff[ch_idx][im][0];
5504 magnitude_avg = magnitude_avg + magnitude;
5506 if (magnitude > magnitude_max) {
5507 magnitude_max = magnitude;
5510 if (magnitude < magnitude_mi
5759 int32_t magnitude, phase; local
[all...]
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DAPInt.cpp524 // If magnitude of LHS is less than RHS, return true.
528 // If magnitude of RHS is greather than LHS, return false.
1271 // Determine the magnitude of the value.
1272 unsigned magnitude = getActiveBits();
1276 if (magnitude <= 5) {
1289 // If the magnitude of the value fits in less than 52 bits (the precision of
1293 if (magnitude < 52) {

Completed in 127 milliseconds