Home
last modified time | relevance | path

Searched refs:ABS (Results 1 – 11 of 11) sorted by relevance

/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Dmpa.h68 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
H A Dmpatan.c61 __mp_dbl(x,&dx,p); dx=ABS(dx); in __mpatan()
/haiku/src/libs/stdc++/legacy/
H A DJamfile81 DIVCF DIVFC PLUS MINUS EQCC EQCF EQFC NECC NECF NEFC ABS ARG
92 DIVCF DIVFC PLUS MINUS EQCC EQCF EQFC NECC NECF NEFC ABS ARG
103 DIVCC DIVCF DIVFC PLUS MINUS EQCC EQCF EQFC NECC NECF NEFC ABS
H A Dcinst.cc101 #ifdef ABS
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgmp-impl.h68 #define ABS(x) (x >= 0 ? x : -x) macro
78 #define ABSIZ(x) ABS (SIZ (x))
/haiku/src/tests/kits/game/ParticlesII/
H A DparticlesII.cpp438 #define ABS(x) (((x)<0) ? -(x) : (x)) in draw_line() macro
441 dx=x2-x1; ax=ABS(dx)<<1; sx=SGN(dx); in draw_line()
442 dy=y2-y1; ay=ABS(dy)<<1; sy=SGN(dy); in draw_line()
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_reset.c5751 #define ABS(x) ((x) >= 0 ? (x) : (-(x))) macro
5866 if ((ABS(magnitude) < ABS(magnitude_max)) || in ar9300_tx_iq_cal_outlier_detection()
5867 (ABS(magnitude) < ABS(magnitude_min))) in ar9300_tx_iq_cal_outlier_detection()
5871 if ((ABS(phase) < ABS(phase_max)) || in ar9300_tx_iq_cal_outlier_detection()
5872 (ABS(phase) < ABS(phase_min))) in ar9300_tx_iq_cal_outlier_detection()
5881 if (ABS(magnitude_max - magnitude_min) > MAX_MAG_DELTA) { in ar9300_tx_iq_cal_outlier_detection()
5882 if (ABS(magnitude_max - magnitude_avg) > in ar9300_tx_iq_cal_outlier_detection()
5883 ABS(magnitude_min - magnitude_avg)) in ar9300_tx_iq_cal_outlier_detection()
5899 if (ABS(phase_max - phase_min) > MAX_PHS_DELTA) { in ar9300_tx_iq_cal_outlier_detection()
5900 if (ABS(phase_max-phase_avg) > ABS(phase_min - phase_avg)) { in ar9300_tx_iq_cal_outlier_detection()
[all …]
H A Dar9300_paprd.c76 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x) in ar9300_paprd_setup_single_table() macro
119 if (ABS(target_power_val_t2[power_tblindex], in ar9300_paprd_setup_single_table()
131 ABS(ahp->paprd_training_power, in ar9300_paprd_setup_single_table()
190 if (ABS(target_power_val_t2[power_tblindex], ahp->paprd_training_power) in ar9300_paprd_setup_single_table()
404 #undef ABS in ar9300_paprd_setup_single_table()
H A Dar9300_eeprom.c2900 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x) in ar9300_eeprom_set_transmit_power() macro
3092 if (ABS(target_power_val_t2_eep[i], target_power_val_t2[i]) > in ar9300_eeprom_set_transmit_power()
3187 #undef ABS in ar9300_eeprom_set_transmit_power()
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fp.c443 mp_size_t bignum_size = ((ABS (exponent) + BITS_PER_MP_LIMB - 1) in __printf_fp()
/haiku/src/add-ons/translators/raw/
H A DRAW.cpp29 #define ABS(x) (((int)(x) ^ ((int)(x) >> 31)) - ((int)(x) >> 31)) macro
1820 ldiff[d][i] = ABS(lab[d][tr][tc][0] in _AHDInterpolate()