Searched refs:size (Results 1 – 4 of 4) sorted by relevance
/math/ |
A D | atest-exp.c | 42 print_mpn_hex (const mp_limb_t *x, unsigned size) in print_mpn_hex() argument 44 char value[size + 1]; in print_mpn_hex() 46 const unsigned final = (size * 4 > SZ * mpbpl) ? SZ * mpbpl / 4 : size; in print_mpn_hex() 48 memset (value, '0', size); in print_mpn_hex() 51 value[size - 1 - i] = hexdig[x[i * 4 / mpbpl] >> (i * 4) % mpbpl & 0xf]; in print_mpn_hex() 53 value[size] = '\0'; in print_mpn_hex()
|
A D | atest-sincos.c | 45 print_mpn_hex (const mp_limb_t *x, unsigned size) in print_mpn_hex() argument 47 char value[size + 1]; in print_mpn_hex() 49 const unsigned final = (size * 4 > SZ * mpbpl) ? SZ * mpbpl / 4 : size; in print_mpn_hex() 51 memset (value, '0', size); in print_mpn_hex() 54 value[size-1-i] = hexdig[x[i * 4 / mpbpl] >> (i * 4) % mpbpl & 0xf]; in print_mpn_hex() 56 value[size] = '\0'; in print_mpn_hex()
|
A D | libm-test-support.c | 158 fmt_ftostr (char *dest, size_t size, int precision, const char *conversion, in fmt_ftostr() argument 178 size--; in fmt_ftostr() 182 FTOSTR (dest, size, format, value); in fmt_ftostr()
|
A D | gen-auto-libm-tests.c | 1424 size_t size = 0; in read_input() local 1426 ssize_t ret = getline (&line, &size, fp); in read_input()
|
Completed in 10 milliseconds