Searched refs:cnt (Results 1 – 3 of 3) sorted by relevance
/coreutils/src/ |
D | digest.c | 1120 size_t cnt; in hex_equal() local 1121 for (cnt = 0; cnt < digest_bin_bytes; ++cnt) in hex_equal() 1123 if (tolower (hex_digest[2 * cnt]) in hex_equal() 1124 != bin2hex[bin_buffer[cnt] >> 4] in hex_equal() 1125 || (tolower (hex_digest[2 * cnt + 1]) in hex_equal() 1126 != (bin2hex[bin_buffer[cnt] & 0xf]))) in hex_equal() 1129 return cnt == digest_bin_bytes; in hex_equal()
|
D | factor.c | 320 #define rsh2(rh, rl, ah, al, cnt) \ argument 322 (rl) = ((ah) << (W_TYPE_SIZE - (cnt))) | ((al) >> (cnt)); \ 323 (rh) = (ah) >> (cnt); \ 326 #define lsh2(rh, rl, ah, al, cnt) \ argument 328 (rh) = ((ah) << cnt) | ((al) >> (W_TYPE_SIZE - (cnt))); \ 329 (rl) = (al) << (cnt); \ 424 int cnt = cntd - cnta; in mod2() local 425 lsh2 (d1, d0, d1, d0, cnt); in mod2() 426 for (int i = 0; i < cnt; i++) in mod2() 761 int cnt; in factor_using_division() local [all …]
|
D | longlong.h | 873 #define count_leading_zeros(cnt, x) \ 881 (cnt) = __clr_cnt.__i.__h; \
|