/src/lib/libc/arch/m68k/gen/ |
flt_rounds_softfloat.S | 18 .byte 1 /* round to nearest */ 19 .byte 0 /* round to zero */ 20 .byte 2 /* round to positive infinity */ 21 .byte 3 /* round to negative infinity */
|
/src/common/lib/libc/arch/sparc/string/ |
ffs.S | 52 * We use a table lookup on each byte. 54 * In each section below, %o1 is the current byte (0, 1, 2, or 3). 55 * The last byte is handled specially: for the first three, 56 * if that byte is nonzero, we return the table value 57 * (plus 0, 8, or 16 for the byte number), but for the last 68 andcc %o0, 0xff, %o1 ! get low byte 70 srl %o0, 8, %o0 ! delay slot, get ready for next byte 76 andcc %o0, 0xff, %o1 ! byte 1 like byte 0... 78 srl %o0, 8, %o0 ! (use delay to prepare for byte 2 [all...] |
/src/sys/lib/libkern/ |
intoa.c | 55 u_int byte; local in function:intoa 65 byte = addr & 0xff; 66 *--cp = byte % 10 + '0'; 67 byte /= 10; 68 if (byte > 0) { 69 *--cp = byte % 10 + '0'; 70 byte /= 10; 71 if (byte > 0) 72 *--cp = byte + '0';
|
/src/common/lib/libc/arch/sparc64/string/ |
ffs.S | 74 * We use a table lookup on each byte. 76 * In each section below, %o1 is the current byte (0, 1, 2, or 3). 77 * The last byte is handled specially: for the first three, 78 * if that byte is nonzero, we return the table value 79 * (plus 0, 8, or 16 for the byte number), but for the last 89 andcc %o0, 0xff, %o1 ! get low byte 91 srl %o0, 8, %o0 ! delay slot, get ready for next byte 97 andcc %o0, 0xff, %o1 ! byte 1 like byte 0... 99 srl %o0, 8, %o0 ! (use delay to prepare for byte 2 [all...] |
/src/usr.sbin/memswitch/ |
properties.c | 77 38, 1, 0, {byte:{[0] 0}}, 0, {byte:{[0] 0}}, {byte:{[0] 0}}, 122 40, 1, 0, {byte:{[0] 0}}, 0, {byte:{[0] 0}}, {byte:{[0] 14}}, 130 44, 1, 0, {byte:{[0] 0}}, 0, {byte:{[0] 0}}, {byte:{[0] 0}}, 139 89, 1, 0, {byte:{[0] 0}}, 0, {byte:{[0] 0}}, {byte:{[0] 0}} [all...] |
/src/usr.sbin/bootp/common/ |
bptypes.h | 24 typedef unsigned char byte; typedef in typeref:typename:unsigned char
|
dovend.h | 6 extern int insert_ip(byte, struct in_addr_list *, byte **, int *);
|
/src/common/lib/libc/arch/arm/string/ |
ffs.S | 85 .byte 0, 1, 2, 13, 3, 7, 0, 14 /* 0- 7 */ 86 .byte 4, 0, 8, 0, 0, 0, 0, 15 /* 8-15 */ 87 .byte 11, 5, 0, 0, 9, 0, 0, 26 /* 16-23 */ 88 .byte 0, 0, 0, 0, 0, 22, 28, 16 /* 24-31 */ 89 .byte 32, 12, 6, 0, 0, 0, 0, 0 /* 32-39 */ 90 .byte 10, 0, 0, 25, 0, 0, 21, 27 /* 40-47 */ 91 .byte 31, 0, 0, 0, 0, 24, 0, 20 /* 48-55 */ 92 .byte 30, 0, 23, 19, 29, 18, 17, 0 /* 56-63 */
|
/src/usr.bin/cmp/ |
misc.c | 50 errmsg(const char *file, off_t byte, off_t line) 54 (long long)byte, (long long)line); 60 eofmsg(const char *file, off_t byte, off_t line) 68 file, (long long)byte, (long long)line); 71 file, (long long)byte); 78 diffmsg(const char *file1, const char *file2, off_t byte, off_t line) 82 file1, file2, (long long)byte, (long long)line);
|
special.c | 53 off_t byte, line; local in function:c_special 63 for (byte = line = 1; skip1--; byte++) { 70 for (byte = line = 1; skip2--; byte++) { 78 for (byte = line = 1;; ++byte) { 86 (void)printf("%6lld %3o %3o\n", (long long)byte, 89 diffmsg(file1, file2, byte, line); 98 errmsg(file1, byte, line) [all...] |
/src/sys/arch/ia64/unwind/ |
decode.h | 9 #define IS_R1(byte) (( (byte) & 0xc0) == 0) 10 #define IS_R2(byte) (((byte) & 0xf8) == 0x40) 11 #define IS_R3(byte) (((byte) & 0xfc) == 0x60) 12 #define IS_P1(byte) (((byte) & 0xe0) == 0x80) 13 #define IS_P2(byte) (((byte) & 0xf0) == 0xa0 [all...] |
/src/sys/fs/udf/ |
udf_osta.h | 28 * byte needs to be unsigned 8-bit, and unicode_t needs to be 32 typedef uint8_t byte; typedef in typeref:typename:uint8_t 35 int udf_UncompressUnicode(int, byte *, unicode_t *); 36 int udf_CompressUnicode(int, int, unicode_t *, byte *);
|
/src/sys/arch/arm/include/ |
pio.h | 44 #define outb(port, byte) bus_space_write_1(&isa_io_bs_tag, (bus_space_handle_t)isa_io_bs_tag.bs_cookie, (port), (byte))
|
/src/sys/crypto/blowfish/arch/i386/ |
bf_cbc.S | 103 .byte 15 104 .byte 200 # bswapl %eax 105 .byte 15 106 .byte 203 # bswapl %ebx 112 .byte 15 113 .byte 200 # bswapl %eax 114 .byte 15 115 .byte 203 # bswapl %ebx 150 .byte 15 151 .byte 200 # bswapl %ea [all...] |
/src/sys/dev/ppbus/ |
ppbus_io.h | 92 #define ppbus_wepp_A(dev,byte) \ 93 ppbus_io((dev), PPBUS_WEPP_A, NULL, 0, (byte)) 95 #define ppbus_wepp_D(dev,byte) \ 96 ppbus_io((dev), PPBUS_WEPP_D, NULL, 0, (byte)) 98 #define ppbus_wecr(dev,byte) \ 99 ppbus_io((dev), PPBUS_WECR, NULL, 0, (byte)) 101 #define ppbus_wfifo(dev,byte) \ 102 ppbus_io((dev), PPBUS_WFIFO, NULL, 0, (byte)) 113 #define ppbus_wdtr(dev,byte) \ 114 ppbus_io((dev), PPBUS_WDTR, NULL, 0, (byte)) [all...] |
/src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
crt0-efi-arm.S | 48 .byte 0x02 // MajorLinkerVersion 49 .byte 0x14 // MinorLinkerVersion 99 .byte 0 100 .byte 0 // end of 0 padding of section name 113 .byte 0 114 .byte 0 115 .byte 0 // end of 0 padding of section name
|
/src/sys/dev/nand/ |
hamming.c | 59 * If the xor sum of the byte is 0, then this byte has no 66 * Example on one byte: 190 /* this byte should remain zero all the time */ 204 /* Get byte and bit indexes */ 205 uint8_t byte = correction_code[0] & 0x80; local in function:hamming_correct_256 206 byte |= (correction_code[0] << 1) & 0x40; 207 byte |= (correction_code[0] << 2) & 0x20; 208 byte |= (correction_code[0] << 3) & 0x10; 210 byte |= (correction_code[1] >> 4) & 0x08 [all...] |
/src/usr.bin/make/unit-tests/ |
directive-for-null.mk | 3 # Test for parsing a .for loop that accidentally contains a null byte. 5 # expect: make: (stdin):2: Zero byte read from file
|
directive-for-null.exp | 1 make: (stdin):2: Zero byte read from file
|
/src/lib/libc/net/ |
iso_addr.c | 71 register int byte = 0, state = VIRGIN; local in function:iso_addr 91 *cp++ = byte; /*FALLTHROUGH*/ 93 state = GOTONE; byte = newaddr; continue; 95 state = GOTTWO; byte = newaddr + (byte << 4); continue; 97 state = VIRGIN; *cp++ = byte; byte = 0; continue; 100 *cp++ = byte; /* FALLTHROUGH */
|
/src/sys/arch/alpha/pci/ |
pci_eb64plus.c | 142 int byte = (irq / 8), bit = (irq % 8); 145 printf("eb64plus_intr_enable: enabling %d (%d:%d)\n", irq, byte, bit); 147 eb64plus_intr_mask[byte] &= ~(1 << bit); 149 bus_space_write_1(eb64plus_intrgate_iot, eb64plus_intrgate_ioh, byte, 150 eb64plus_intr_mask[byte]); 156 int byte = (irq / 8), bit = (irq % 8); 159 printf("eb64plus_intr_disable: disabling %d (%d:%d)\n", irq, byte, bit); 161 eb64plus_intr_mask[byte] |= (1 << bit); 163 bus_space_write_1(eb64plus_intrgate_iot, eb64plus_intrgate_ioh, byte, 164 eb64plus_intr_mask[byte]); [all...] |
pci_eb66.c | 142 int byte = (irq / 8), bit = (irq % 8); 145 printf("eb66_intr_enable: enabling %d (%d:%d)\n", irq, byte, bit); 147 eb66_intr_mask[byte] &= ~(1 << bit); 149 bus_space_write_1(eb66_intrgate_iot, eb66_intrgate_ioh, byte, 150 eb66_intr_mask[byte]); 156 int byte = (irq / 8), bit = (irq % 8); 159 printf("eb66_intr_disable: disabling %d (%d:%d)\n", irq, byte, bit); 161 eb66_intr_mask[byte] |= (1 << bit); 163 bus_space_write_1(eb66_intrgate_iot, eb66_intrgate_ioh, byte, 164 eb66_intr_mask[byte]); [all...] |
/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
CircularBuffer.cs | 24 private byte[] _buffer;
30 _buffer = new byte[capacity];
39 public int Put(byte[] source, int offset, int count)
51 public bool Put(byte b)
61 public int Get(byte[] destination, int offset, int count)
|
/src/common/lib/libc/arch/mips/string/ |
strchr.S | 48 and a1, 0xff # limit to byte value 50 lbu a2, 0(a0) # get a byte
|
/src/sys/dev/ic/ |
atppcreg.h | 102 /* Byte mode signals */ 158 #define atppc_w_dtr(atppc, byte) bus_space_write_1((atppc)->sc_iot, \ 159 (atppc)->sc_ioh, ATPPC_SPP_DTR, (byte)) 160 #define atppc_w_str(atppc, byte) bus_space_write_1((atppc)->sc_iot, \ 161 (atppc)->sc_ioh, ATPPC_SPP_STR, (byte)) 162 #define atppc_w_ctr(atppc, byte) bus_space_write_1((atppc)->sc_iot, \ 163 (atppc)->sc_ioh, ATPPC_SPP_CTR, (byte)) 164 #define atppc_w_eppA(atppc, byte) bus_space_write_1((atppc)->sc_iot, \ 165 (atppc)->sc_ioh, ATPPC_EPP_ADDR, (byte)) 166 #define atppc_w_eppD(atppc, byte) bus_space_write_1((atppc)->sc_iot, [all...] |