Searched refs:MIN (Results 1 – 6 of 6) sorted by relevance
/hostap-latest/src/tls/ |
D | libtommath.c | 492 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) { in mp_mul() 498 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) { in mp_mul() 513 MIN(a->used, b->used) <= in mp_mul() 2344 MIN (a->used, b->used) < in s_mp_mul_digs() 2362 pb = MIN (b->used, digs - ix); in s_mp_mul_digs() 2432 pa = MIN(digs, a->used + b->used); in fast_s_mp_mul_digs() 2443 ty = MIN(b->used-1, ix); in fast_s_mp_mul_digs() 2453 iy = MIN(a->used-tx, ty+1); in fast_s_mp_mul_digs() 2597 && MIN (a->used, b->used) < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) { in s_mp_mul_high_digs() 3275 ty = MIN(a->used-1, ix); in fast_s_mp_sqr() [all …]
|
/hostap-latest/src/crypto/ |
D | sha256-internal.c | 161 n = MIN(inlen, (SHA256_BLOCK_SIZE - md->curlen)); in sha256_process()
|
D | sha512-internal.c | 199 n = MIN(inlen, (SHA512_BLOCK_SIZE - md->curlen)); in sha512_process()
|
/hostap-latest/src/utils/ |
D | common.h | 467 #ifndef MIN 468 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
|
/hostap-latest/wpa_supplicant/ |
D | scan.c | 2291 max_tx_pwr_count = MIN(max_tx_pwr_count, 3); in wpas_channel_width_tx_pwr() 2292 offs = MIN(offset, max_tx_pwr_count) + 1; in wpas_channel_width_tx_pwr() 2305 max_tx_power = MIN(max_tx_power, tx_pwr); in wpas_channel_width_tx_pwr() 2331 max_tx_power = MIN(max_tx_power, tx_pwr); in wpas_channel_width_tx_pwr() 2377 #ifndef MIN in wpa_scan_result_compar() 2378 #define MIN(a,b) a < b ? a : b in wpa_scan_result_compar() macro 2418 snr_a = MIN(snr_a_full, GREAT_SNR); in wpa_scan_result_compar() 2423 snr_b = MIN(snr_b_full, GREAT_SNR); in wpa_scan_result_compar()
|
/hostap-latest/src/ap/ |
D | wmm.c | 54 MIN(wmm_conf[ac].txop_limit, wmm_reg[ac].max_txop); in wmm_set_regulatory_limit()
|