Searched refs:byte (Results 151 - 175 of 314) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/boot/i386/mbr/
H A Dmbr.s18 # A 512 byte MBR boot manager that simply boots the active partition.
154 flags: .byte FLAGS # Flags
/freebsd-10.0-release/sys/dev/drm2/
H A Ddrm_dp_iic_helper.c97 * Write a single byte to the current I2C address, the
101 iic_dp_aux_put_byte(device_t idev, u8 byte) argument
111 ret = iic_dp_aux_transaction(idev, MODE_I2C_WRITE, byte, NULL);
116 * Read a single byte from the current I2C address, the
/freebsd-10.0-release/sys/dev/iicbus/
H A Diicbus.c66 char byte; local
76 if (!iicbus_block_read(dev, (u_char)addr, &byte, 1, &count))
/freebsd-10.0-release/sys/powerpc/powermac/
H A Dwindtunnel.c93 adm1030_write_byte(device_t dev, uint32_t addr, uint8_t reg, uint8_t byte) argument
104 buf[1] = byte;
/freebsd-10.0-release/secure/lib/libcrypto/i386/
H A Dx86-mont.s452 .byte 77,111,110,116,103,111,109,101,114,121,32,77,117,108,116,105
453 .byte 112,108,105,99,97,116,105,111,110,32,102,111,114,32,120,56
454 .byte 54,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121
455 .byte 32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46
456 .byte 111,114,103,62,0
H A Dsha1-586.s1437 .byte 102,15,56,0,198
1438 .byte 102,15,56,0,206
1439 .byte 102,15,56,0,214
1441 .byte 102,15,56,0,222
1457 .byte 102,15,58,15,224,8
1519 .byte 102,15,58,15,233,8
1581 .byte 102,15,58,15,242,8
1644 .byte 102,15,58,15,251,8
1707 .byte 102,15,58,15,214,8
1761 .byte 10
[all...]
/freebsd-10.0-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_stream.c178 uint8_t byte; local
184 byte = in[*in_pos];
187 s->vli |= (vli_type)(byte & 0x7F) << s->pos;
189 if ((byte & 0x80) == 0) {
191 if (byte == 0 && s->pos != 0)
344 * s->pos must be zero when starting to validate the first byte.
525 /* Size of Properties = 1-byte Filter Properties */
587 /* We need one byte of input to continue. */
723 * Since we know that the last input byte never produces any output, we know
/freebsd-10.0-release/usr.sbin/pciconf/
H A Dpciconf.c99 int byte, isshort; local
102 bars = caps = errors = verbose = byte = isshort = 0;
112 byte = 1;
160 byte ? 1 : isshort ? 2 : 4);
163 byte ? 1 : isshort ? 2 : 4);
/freebsd-10.0-release/sys/dev/ppc/
H A Dppc.c188 w_ecr(ppc, 0x34); /* byte mode, no interrupt, no DMA */
246 /* if FIFO empty before the last byte, error */
253 /* FIFO must be empty after the last byte */
324 /* return to byte mode (keeping direction bit),
369 /* return to byte mode (keeping direction bit),
443 * Read the SID byte. Possible values are :
1339 #define w_reg(reg, ppc, byte) (bus_write_1((ppc)->res_ioport, reg, byte))
1899 ppc_io(device_t ppcdev, int iop, u_char *addr, int cnt, u_char byte) argument
1938 w_dtr(ppc, byte);
[all...]
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dsrconv.c187 int byte = *idx / 8; local
194 if (byte > 240)
199 byte = *idx / 8;
207 ptr[byte] = n;
210 ptr[byte + 0] = n >> 8;
211 ptr[byte + 1] = n;
214 ptr[byte + 0] = n >> 24;
215 ptr[byte + 1] = n >> 16;
216 ptr[byte + 2] = n >> 8;
217 ptr[byte
228 int byte = *idx / 8; local
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dsimplify-rtx.c4227 enum machine_mode innermode, unsigned int byte)
4283 unsigned byte = (elem * elem_bitsize) / BITS_PER_UNIT;
4286 unsigned word_byte = WORDS_BIG_ENDIAN ? ibyte : byte;
4287 unsigned subword_byte = BYTES_BIG_ENDIAN ? ibyte : byte;
4363 /* Now, pick the right byte to start with. */
4364 /* Renumber BYTE so that the least-significant byte is byte 0. A special
4370 - byte);
4371 unsigned word_byte = WORDS_BIG_ENDIAN ? ibyte : byte;
4372 unsigned subword_byte = BYTES_BIG_ENDIAN ? ibyte : byte;
4217 simplify_immed_subreg(enum machine_mode outermode, rtx op, enum machine_mode innermode, unsigned int byte) argument
4274 unsigned byte = (elem * elem_bitsize) / BITS_PER_UNIT; local
4404 unsigned byte = (elem * elem_bitsize) / BITS_PER_UNIT; local
4480 simplify_subreg(enum machine_mode outermode, rtx op, enum machine_mode innermode, unsigned int byte) argument
4772 simplify_gen_subreg(enum machine_mode outermode, rtx op, enum machine_mode innermode, unsigned int byte) argument
[all...]
/freebsd-10.0-release/libexec/bootpd/
H A Dbootpd.c1245 byte *vp;
1271 byte *p, *ep;
1272 byte tag, len;
1284 /* Now scan the length byte. */
1312 bytesleft = ((byte*)bp + pktlen) - vp;
1326 *vp++ = TAG_SUBNET_MASK;/* -1 byte */
1327 *vp++ = 4; /* -1 byte */
1342 *vp++ = (byte) ((bootsize >> 8) & 0xFF);
1343 *vp++ = (byte) (bootsize & 0xFF);
1358 *vp++ = (byte) (le
[all...]
/freebsd-10.0-release/sys/dev/nand/
H A Dnandsim_chip.c493 uint8_t byte; local
497 byte = *((uint8_t *)data);
505 buffer[chip->sm_addr_cycle++] = byte;
508 buffer[chip->sm_addr_cycle++] = byte;
511 nand_debug(NDBG_SIM, "Chip [%x] read addr byte: %02x (%d of %d)\n",
512 chip->chip_num, byte, chip->sm_addr_cycle, ncycles);
890 nandsim_ignore_address(struct nandsim_chip *chip, uint8_t byte) argument
892 nandsim_log(chip, NANDSIM_LOG_SM, "ignored address byte: %d\n", byte);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DLibCxx.cpp57 size_t byte_idx = (idx >> 3); // divide by 8 to get byte index
63 uint8_t byte = 0;
66 size_t bytes_read = process_sp->ReadMemory(byte_location, &byte, 1, err);
90 bool bit_set = ((byte & mask) != 0);
/freebsd-10.0-release/sys/amd64/amd64/
H A Dapic_vector.S225 .byte 0x66,0x0f,0x38,0x82,0x02
313 .byte 0x66,0x0f,0x38,0x82,0x02
410 .byte 0x66,0x0f,0x38,0x82,0x02
H A Ddb_disasm.c70 #define Eb 4 /* address, byte size */
88 #define Ib 21 /* byte immediate, unsigned */
89 #define Ibs 22 /* byte immediate, signed */
93 #define Db 26 /* byte displacement from EIP */
104 #define Iba 37 /* byte immediate, don't print if 0xa */
109 short i_has_modrm; /* has regmodrm byte */
873 /*d6*/ { ".byte\t0xd6", FALSE, NONE, 0, 0 },
904 /*f1*/ { ".byte\t0xf1", FALSE, NONE, 0, 0 },
926 #define f_mod(rex, byte) ((byte)>>
[all...]
/freebsd-10.0-release/sys/i386/i386/
H A Ddb_disasm.c58 #define Eb 4 /* address, byte size */
75 #define Ib 21 /* byte immediate, unsigned */
76 #define Ibs 22 /* byte immediate, signed */
79 #define Db 26 /* byte displacement from EIP */
90 #define Iba 37 /* byte immediate, don't print if 0xa */
94 short i_has_modrm; /* has regmodrm byte */
799 /*d6*/ { ".byte\t0xd6", FALSE, NONE, 0, 0 },
830 /*f1*/ { ".byte\t0xf1", FALSE, NONE, 0, 0 },
852 #define f_mod(byte) ((byte)>>
[all...]
/freebsd-10.0-release/secure/lib/libcrypto/amd64/
H A Dsha1-x86_64.S1290 .byte 0xf3,0xc3
1321 .byte 102,15,56,0,198
1323 .byte 102,15,56,0,206
1324 .byte 102,15,56,0,214
1325 .byte 102,15,56,0,222
1342 .byte 102,15,58,15,224,8
1403 .byte 102,15,58,15,233,8
1464 .byte 102,15,58,15,242,8
1525 .byte 102,15,58,15,251,8
1585 .byte 10
[all...]
/freebsd-10.0-release/contrib/openbsm/bin/auditdistd/
H A Dauditdistd.h186 #error Unknown byte order.
/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_string.h225 * The allocated string buffer will be at least one byte larger than
256 * The allocated string buffer will be at least one byte larger than
260 * one byte more than @a minimum_size. If compatibility with pre-1.8
287 /** Append the single character @a byte onto @a targetstr.
299 char byte);
/freebsd-10.0-release/sys/amd64/include/
H A Dasmacros.h47 #define ALIGN_DATA .p2align 3 /* 8 byte alignment, zero filled */
49 #define ALIGN_TEXT .p2align 4,0x90 /* 16-byte alignment, nop filled */
51 #define ALIGN_TEXT .p2align 4,0x90 /* 16-byte alignment, nop filled */
53 #define SUPERALIGN_TEXT .p2align 4,0x90 /* 16-byte alignment, nop filled */
58 #define NON_GPROF_RET .byte 0xc3 /* opcode for `ret' */
/freebsd-10.0-release/sys/boot/i386/pxeldr/
H A Dpxeldr.S43 .set MEM_BIOS_KEYBOARD,0x496 # BDA byte with keyboard bit
109 * set the RBX_SERIAL bit in the howto byte.
116 * set the RBX_DUAL and RBX_SERIAL bits in the howto byte.
/freebsd-10.0-release/sys/compat/ndis/
H A Dwinx64_wrap.S95 mov %rsp,%rbp # is 16-byte aligned
/freebsd-10.0-release/sys/i386/include/
H A Dasmacros.h47 #define ALIGN_DATA .p2align 2 /* 4 byte alignment, zero filled */
49 #define ALIGN_TEXT .p2align 4,0x90 /* 16-byte alignment, nop filled */
51 #define ALIGN_TEXT .p2align 2,0x90 /* 4-byte alignment, nop filled */
53 #define SUPERALIGN_TEXT .p2align 4,0x90 /* 16-byte alignment, nop filled */
58 #define NON_GPROF_RET .byte 0xc3 /* opcode for `ret' */
/freebsd-10.0-release/sys/powerpc/include/
H A Dasm.h98 .byte 0,0,0,0,0,0,0,0; \

Completed in 184 milliseconds

1234567891011>>