/src/lib/libm/ld128/ |
s_nanl.c | 38 uint32_t bits[4]; member in union:nanl::__anonca8e8a6c010a 41 _scan_nan(u.bits, 4, s);
|
/src/lib/libm/ld80/ |
s_nanl.c | 39 uint32_t bits[3]; member in union:nanl::__anona18dc699010a 42 _scan_nan(u.bits, 3, s);
|
/src/lib/libc/gdtoa/ |
ldtoa.c | 71 uint32_t bits[(LDBL_MANT_DIG + 31) / 32]; local in function:ldtoa 76 EXT_TO_ARRAY32(u, bits); 82 bits[LDBL_MANT_DIG / 32] |= 1 << ((LDBL_MANT_DIG - 1) % 32); 102 ret = gdtoa(&fpi, be, (ULong *)bits, &kind, mode, ndigits, decpt, rve);
|
strtopd.c | 44 ULong bits[2]; local in function:strtopd 53 k = strtodg(s, sp, fpi, &expt, bits); 56 ULtod((ULong*)d, bits, expt, k);
|
strtopf.c | 44 ULong bits[1], *L; local in function:strtopf 53 k = strtodg(s, sp, fpi, &expt, bits); 65 L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23); 69 L[0] = bits[0];
|
strtodI.c | 61 ULong bits[2], sign; local in function:strtodI 66 k = strtodg(s, sp, &fpi, &exp, bits); 91 word1(&u[0]) = bits[0]; 92 word0(&u[0]) = bits[1]; 96 word1(&u[0]) = bits[0]; 97 word0(&u[0]) = (bits[1] & ~0x100000) | ((exp + 0x3ff + 52) << 20); 163 word0(&u[0]) = word0(&u[1]) = 0x7ff00000 | sign | bits[1]; 164 word1(&u[0]) = word1(&u[1]) = bits[0];
|
strtodnrp.c | 35 /* require setting the precision control to 53 bits. */ 50 ULong bits[2]; local in function:strtod 55 k = strtodg(s, sp, &fpi, &expt, bits); 69 u.L[_1] = bits[0]; 70 u.L[_0] = (bits[1] & ~0x100000) | ((expt + 0x3ff + 52) << 20); 74 u.L[_1] = bits[0]; 75 u.L[_0] = bits[1]; 89 u.L[_0] = 0x7ff00000 | bits[1]; 90 u.L[_1] = bits[0];
|
strtopxL.c | 56 ULong bits[2]; local in function:strtopxL 66 k = strtodg(s, sp, fpi, &expt, bits, loc); 78 L[_2] = bits[0]; 79 L[_1] = bits[1];
|
strtord.c | 38 ULtod(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k; 40 ULtod(ULong *L, ULong *bits, Long expt, int k) 50 L[_1] = bits[0]; 51 L[_0] = bits[1]; 56 L[_1] = bits[0]; 57 L[_0] = (bits[1] & ~0x100000) | ((expt + 0x3ff + 52) << 20); 81 ULong bits[2]; local in function:strtord 91 k = strtodg(s, sp, fpi, &expt, bits, loc); 94 ULtod((/* LINTED */(U*)d)->L, bits, expt, k) [all...] |
strtordd.c | 38 ULtodd(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k; 40 ULtodd(ULong *L, ULong *bits, Long expt, int k) 52 L[_1] = (bits[1] >> 21 | bits[2] << 11) & (ULong)0xffffffffL; 53 L[_0] = (bits[2] >> 21) | (bits[3] << 11 & 0xfffff) 56 if (bits[1] &= 0x1fffff) { 57 i = hi0bits(bits[1]) - 11; 65 bits[1] = bits[1] << i | bits[0] >> (32-i) 189 ULong bits[4]; local in function:strtordd [all...] |
strtorf.c | 38 ULtof(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k; 40 ULtof(ULong *L, ULong *bits, Long expt, int k) 51 L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23); 55 L[0] = bits[0]; 79 ULong bits[1]; local in function:strtorf 89 k = strtodg(s, sp, fpi, &expt, bits); 92 ULtof((ULong*)f, bits, expt, k);
|
g_dfmt.c | 45 ULong bits[2], *L, sign; local in function:g_dfmt 82 bits[0] = L[_1]; 83 bits[1] = L[_0] & 0xfffff; 85 bits[1] |= 0x100000; 95 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
|
g_ffmt.c | 45 ULong bits[1], *L, sign; local in function:g_ffmt 80 bits[0] = L[0] & 0x7fffff; 82 bits[0] |= 0x800000; 93 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
|
g_xLfmt.c | 61 ULong bits[2], *L, sign; local in function:g_xLfmt 76 bits[1] = L[_1]; 77 bits[0] = L[_2]; 81 if (bits[0] | bits[1]) 93 else if (bits[0] | bits[1]) { 113 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
|
strtof.c | 49 ULong bits[1]; local in function:__weak_alias 59 k = strtodg(s, sp, fpi, &expt, bits, loc); 72 u.L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23); 76 u.L[0] = bits[0];
|
/src/lib/libc/gdtoa/test/ |
xQtest.c | 34 union { long double d; unsigned int bits[4]; } u, w; member in union:main::__anond0e14a83010a 37 w.bits[0] = w.bits[3] = 0; 41 if (w.bits[0] && w.bits[3])
|
/src/sys/crypto/camellia/ |
camellia.h | 37 int bits; /* key-length */ member in struct:__anon09886de00108
|
/src/tests/usr.bin/xlint/lint1/ |
msg_145.c | 8 struct bits { struct 16 struct bits local_bits; 25 struct bits local_bits;
|
msg_166.c | 34 struct bit_set bits; local in function:example 38 bits.minus_1_to_0 = -2; 39 bits.minus_1_to_0 = -1; 40 bits.minus_1_to_0 = 0; 42 bits.minus_1_to_0 = 1; 44 bits.minus_1_to_0 = 2; 47 bits.minus_8_to_7 = -9; 48 bits.minus_8_to_7 = -8; 49 bits.minus_8_to_7 = 7; 51 bits.minus_8_to_7 = 8 [all...] |
expr.c | 17 struct bit_fields bits = { 0 }; local in function:expr_cond_cvt 20 return bits.u32 < ul ? bits.u32 : ul;
|
/src/sys/arch/m68k/fpsp/ |
fpsp.h | 154 FPR_DIRTY_BITS equ LV-91 ;fpr dirty bits 170 NMNEXC equ LV-44 ;NMNEXC (unsup,snan bits only) 188 stag_mask equ $E0 ;upper 3 bits are source tag type 209 dtag_mask equ $E0 ;upper 3 bits are dest type tag 215 E_BYTE equ LV-28 ;holds E1 and E3 bits (1 byte) variable in typeref:typename:holds E1 and E3 220 T_BYTE equ LV-27 ;holds T and U bits (1 byte) variable in typeref:typename:holds T and U 246 * FPSR/FPCR bits 333 sx_mask equ $01800000 set s and x bits in word $48 342 norm_tag equ $00 tag bits in {7:5} position
|
/src/sys/dev/ic/ |
smc93cx6.c | 43 * **Note: There are 8 address bits for the 93C56/66 chips unlike 44 * the 93C46/26/06 chips which have 6 address bits. 54 * is preceded by an initial zero (leading 0, followed by 16-bits, MSB 84 unsigned char bits[3]; member in struct:seeprom_cmd 130 if (seeprom_read.bits[i] != 0) 136 if (seeprom_read.bits[i] != 0)
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/ |
M0209.h | 11 u8 bits; member in struct:nvbios_M0209E
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/fifo/ |
nv04.h | 10 unsigned bits:6; member in struct:nv04_fifo_ramfc
|
/src/sys/arch/evbppc/wii/dev/ |
viio.h | 37 uint8_t bits; member in struct:vi_regs
|