/src/lib/libc/quad/ |
floatunditf_ieee754.c | 74 unsigned int bit = 0; local in function:__floatunditf 87 bit += width; 91 x <<= (bit + 1); 93 extu.extu_exp = EXT_EXP_BIAS + (64 - (bit + 1));
|
floatunditf_ieee754.c | 74 unsigned int bit = 0; local in function:__floatunditf 87 bit += width; 91 x <<= (bit + 1); 93 extu.extu_exp = EXT_EXP_BIAS + (64 - (bit + 1));
|
/src/sys/external/bsd/gnu-efi/dist/lib/ia32/ |
math.c | 45 // Left shift 64bit by 32bit and get a 64bit result 80 // Right shift 64bit by 32bit and get a 64bit result 116 // Multiple 64bit by 32bit and get a 64bit result 142 // divide 64bit by 32bit and get a 64bit resul 151 UINT32 bit; local in function:DivU64x32 [all...] |
math.c | 45 // Left shift 64bit by 32bit and get a 64bit result 80 // Right shift 64bit by 32bit and get a 64bit result 116 // Multiple 64bit by 32bit and get a 64bit result 142 // divide 64bit by 32bit and get a 64bit resul 151 UINT32 bit; local in function:DivU64x32 [all...] |
/src/games/bcd/ |
bcd.c | 57 * the patterns were that the old bcd was using for each possible 8-bit 59 * holes. (A 1 bit is a hole.) These may be wrong, but they match the old 123 * i'th bit of w. 125 #define bit(w,i) ((w)&(1<<(i))) macro 196 * like a hole, if the appropriate bit is set in the holes[] table. 203 if (bit(holes[(unsigned char)*p], 11 - row))
|
bcd.c | 57 * the patterns were that the old bcd was using for each possible 8-bit 59 * holes. (A 1 bit is a hole.) These may be wrong, but they match the old 123 * i'th bit of w. 125 #define bit(w,i) ((w)&(1<<(i))) macro 196 * like a hole, if the appropriate bit is set in the holes[] table. 203 if (bit(holes[(unsigned char)*p], 11 - row))
|
/src/sys/arch/m68k/fpsp/ |
fpsp.h | 148 * fsave offsets and bit definitions 186 guard_bit equ 1 ;guard bit is bit number 1 187 round_bit equ 0 ;round bit is bit number 0 189 denorm_bit equ 7 ;bit determins if denorm or unnorm 190 etemp15_bit equ 4 ;etemp exponent bit #15 191 wbtemp66_bit equ 2 ;wbtemp mantissa bit #66 192 wbtemp1_bit equ 1 ;wbtemp mantissa bit #1 193 wbtemp0_bit equ 0 ;wbtemp mantissa bit # 212 WB_BYTE equ LV-31 ;holds WBTE15 bit (1 byte) variable in typeref:typename:holds WBTE15 [all...] |
fpsp.h | 148 * fsave offsets and bit definitions 186 guard_bit equ 1 ;guard bit is bit number 1 187 round_bit equ 0 ;round bit is bit number 0 189 denorm_bit equ 7 ;bit determins if denorm or unnorm 190 etemp15_bit equ 4 ;etemp exponent bit #15 191 wbtemp66_bit equ 2 ;wbtemp mantissa bit #66 192 wbtemp1_bit equ 1 ;wbtemp mantissa bit #1 193 wbtemp0_bit equ 0 ;wbtemp mantissa bit # 212 WB_BYTE equ LV-31 ;holds WBTE15 bit (1 byte) variable in typeref:typename:holds WBTE15 [all...] |
/src/sys/dev/wscons/ |
wscons_rinit.c | 72 int ch, i, n, bit; local in function:rcons_initfont 85 for (bit = 0; bit < 32; bit++) 86 if (pix[i] & (1 << bit)) 87 npix |= (1 << (31 - bit));
|
wscons_rinit.c | 72 int ch, i, n, bit; local in function:rcons_initfont 85 for (bit = 0; bit < 32; bit++) 86 if (pix[i] & (1 << bit)) 87 npix |= (1 << (31 - bit));
|
/src/sys/arch/mips/rmi/ |
rmixl_mainbus.c | 112 uint64_t bit; local in function:mainbus_node_alloc 116 bit = 1 << node; 117 if ((sc->sc_node_mask & bit) == 0) { 118 sc->sc_node_mask |= bit; 129 bit = 1 << node; 130 if ((sc->sc_node_mask & bit) == 0) { 131 sc->sc_node_mask |= bit;
|
rmixl_mainbus.c | 112 uint64_t bit; local in function:mainbus_node_alloc 116 bit = 1 << node; 117 if ((sc->sc_node_mask & bit) == 0) { 118 sc->sc_node_mask |= bit; 129 bit = 1 << node; 130 if ((sc->sc_node_mask & bit) == 0) { 131 sc->sc_node_mask |= bit;
|
/src/sys/arch/mips/mips/ |
mips_fputrap.c | 84 unsigned int bit; member in struct:__anon54097fc30108 99 if (fpustat & fpecodes[i].bit)
|
mips_fputrap.c | 84 unsigned int bit; member in struct:__anon54097fc30108 99 if (fpustat & fpecodes[i].bit)
|
/src/sys/arch/evbsh3/ap_ms104_sh4/ |
rs5c316_mainbus.c | 159 int bit; local in function:rtc_read 163 bit = (_reg_read_2(SH4_PDTRA) & (1 << GPIO_PIN_RTC_SIO)) ? 1 : 0; 169 return bit; 173 rtc_write(struct rs5c313_softc *sc, int bit) 178 if (bit)
|
rs5c316_mainbus.c | 159 int bit; local in function:rtc_read 163 bit = (_reg_read_2(SH4_PDTRA) & (1 << GPIO_PIN_RTC_SIO)) ? 1 : 0; 169 return bit; 173 rtc_write(struct rs5c313_softc *sc, int bit) 178 if (bit)
|
/src/sys/arch/m68k/fpe/ |
fpu_mul.c | 61 * Each step consists of shifting the accumulator right one bit 62 * (maintaining any guard bits) and, if the next bit in y is set, 64 * we advance one bit leftward in y. Algorithmically: 67 * for (bit = 0; bit < FP_NMANT; bit++) { 69 * if (Y & (1 << bit)) 76 * shifted right, but at most one bit. 90 * - bit FP_NMANT-1 is set, and FP_1*2 fits in a word. 94 * run 32 times without adding X to A. We can do a 32-bit shift faste 103 uint32_t a2, a1, a0, x2, x1, x0, bit, m; local in function:fpu_mul [all...] |
fpu_mul.c | 61 * Each step consists of shifting the accumulator right one bit 62 * (maintaining any guard bits) and, if the next bit in y is set, 64 * we advance one bit leftward in y. Algorithmically: 67 * for (bit = 0; bit < FP_NMANT; bit++) { 69 * if (Y & (1 << bit)) 76 * shifted right, but at most one bit. 90 * - bit FP_NMANT-1 is set, and FP_1*2 fits in a word. 94 * run 32 times without adding X to A. We can do a 32-bit shift faste 103 uint32_t a2, a1, a0, x2, x1, x0, bit, m; local in function:fpu_mul [all...] |
/src/sys/arch/playstation2/playstation2/ |
interrupt.h | 41 int bit; member in struct:_ipl_dispatcher
|
interrupt.h | 41 int bit; member in struct:_ipl_dispatcher
|
/src/sys/arch/powerpc/pic/ |
pic_prepivr.c | 106 int icu, bit; local in function:prepivr_establish_irq 109 bit = irq % 8; 114 elcr[icu] |= 1 << bit; 116 elcr[icu] &= ~(1 << bit);
|
pic_prepivr.c | 106 int icu, bit; local in function:prepivr_establish_irq 109 bit = irq % 8; 114 elcr[icu] |= 1 << bit; 116 elcr[icu] &= ~(1 << bit);
|
/src/sys/dev/nand/ |
hamming.c | 37 * Calculates the 22-bit hamming code for a 256-bytes block of data. 65 * index bit to 0 (even) or 1 (odd). 77 * - P4 -> bit 2 of index is 0 --------------------' 78 * - P4' -> bit 2 of index is 1. 79 * - P2 -> bit 1 of index if 0. 81 * We deduce that a bit position has an impact on all 82 * even Px if the log2(x)nth bit of its index is 0 85 * and on all odd Px' if the log2(x)nth bit 202 /* If there is a single bit error, there are 11 bits set to 1 */ 204 /* Get byte and bit indexes * 215 uint8_t bit = (correction_code[2] >> 5) & 0x04; local in function:hamming_correct_256 [all...] |
hamming.c | 37 * Calculates the 22-bit hamming code for a 256-bytes block of data. 65 * index bit to 0 (even) or 1 (odd). 77 * - P4 -> bit 2 of index is 0 --------------------' 78 * - P4' -> bit 2 of index is 1. 79 * - P2 -> bit 1 of index if 0. 81 * We deduce that a bit position has an impact on all 82 * even Px if the log2(x)nth bit of its index is 0 85 * and on all odd Px' if the log2(x)nth bit 202 /* If there is a single bit error, there are 11 bits set to 1 */ 204 /* Get byte and bit indexes * 215 uint8_t bit = (correction_code[2] >> 5) & 0x04; local in function:hamming_correct_256 [all...] |
/src/sys/arch/landisk/dev/ |
rs5c313_landisk.c | 160 * Read bit from SPB1DT pin. 165 int bit; local in function:rtc_read 169 bit = (SHREG_SCSPTR & SCSPTR_SPB1DT) ? 1 : 0; 175 return bit; 180 * Write bit via SPB1DT pin. 183 rtc_write(struct rs5c313_softc *sc, int bit) 187 if (bit)
|