Searched refs:byte (Results 101 - 125 of 314) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/dev/nand/
H A Dnandsim_ctrl.c302 nandsim_write_byte(device_t dev, uint8_t byte) argument
312 byte_corrupt(chip, &byte);
313 chip->data.data_ptr[chip->data.index] &= byte;
315 nandsim_log(chip, NANDSIM_LOG_DATA, "write %02x\n", byte);
383 byte_corrupt(struct nandsim_chip *chip, uint8_t *byte) argument
391 if (*byte & (1 << bit))
392 *byte &= ~(1 << bit);
394 *byte |= (1 << bit);
/freebsd-10.0-release/lib/libvgl/
H A Dbitmap.c39 static byte mask[8] = {0xff, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x03, 0x01};
46 WriteVerticalLine(VGLBitmap *dst, int x, int y, int width, byte *line)
51 byte *address;
52 byte *VGLPlane[4];
178 ReadVerticalLine(VGLBitmap *src, int x, int y, int width, byte *line)
182 byte *address;
183 byte *VGLPlane[4];
336 byte buffer[2048]; /* XXX */
337 byte *p;
369 *VGLBitmapCreate(int type, int xsize, int ysize, byte *bit
[all...]
/freebsd-10.0-release/contrib/dtc/
H A Ddtc-lexer.l144 yylval.byte = strtol(yytext, NULL, 16);
145 DPRINT("Byte: %02x\n", (int)yylval.byte);
/freebsd-10.0-release/lib/libc/i386/
H A DSYS.h57 #define LCALL(x,y) .byte 0x9a ; .long y; .word x
/freebsd-10.0-release/sys/dev/iicbus/
H A Diiconf.c274 * Write a byte to the slave previously started by iicbus_start() call
277 iicbus_write_byte(device_t bus, char byte, int timeout) argument
279 char data = byte;
288 * Read a byte from the slave previously started by iicbus_start() call
291 iicbus_read_byte(device_t bus, char *byte, int timeout) argument
295 return (iicbus_read(bus, byte, 1, &read, IIC_LAST_READ, timeout));
/freebsd-10.0-release/sys/arm/arm/
H A Ddb_trace.c126 u_int byte; member in struct:unwind_state
174 /* Reads the next byte from the instruction list */
181 insn = (*state->insn) >> (state->byte * 8);
184 if (state->byte == 0) {
185 state->byte = 3;
189 state->byte--;
330 state->byte = 2;
333 state->byte = 1;
/freebsd-10.0-release/contrib/ldns/
H A Dutil.c71 ldns_set_bit(uint8_t *byte, int bit_nr, bool value) argument
79 *byte = *byte | (0x01 << bit_nr);
81 *byte = *byte & ~(0x01 << bit_nr);
/freebsd-10.0-release/secure/lib/libcrypto/i386/
H A Dsha256-586.s255 .byte 83,72,65,50,53,54,32,98,108,111,99,107,32,116,114,97
256 .byte 110,115,102,111,114,109,32,102,111,114,32,120,56,54,44,32
257 .byte 67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97
258 .byte 112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103
259 .byte 62,0
H A Dx86-gf2m.s255 .byte 102,15,58,68,192,1
339 .byte 71,70,40,50,94,109,41,32,77,117,108,116,105,112,108,105
340 .byte 99,97,116,105,111,110,32,102,111,114,32,120,56,54,44,32
341 .byte 67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97
342 .byte 112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103
343 .byte 62,0
/freebsd-10.0-release/sys/dev/mse/
H A Dmse_isa.c407 char byte; local
414 byte = bus_space_read_1(tag, handle, MSE_PORTB);
415 *dx = byte;
417 byte = bus_space_read_1(tag, handle, MSE_PORTB);
418 *dy = byte;
/freebsd-10.0-release/sys/ia64/ia64/
H A Dlocore.S198 .byte 0
202 .byte intr_n / 100 + '0'
203 .byte (intr_n % 100) / 10 + '0'
204 .byte intr_n % 10 + '0'
206 .byte 0
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dlibbfd.c339 Write a 4 byte integer @var{i} to the output BFD @var{abfd}, in big
354 /** The do-it-yourself (byte) sex-change kit */
357 target machine. It doesn't matter what the byte order of the host
999 unsigned char byte;
1006 byte = bfd_get_8 (abfd, buf);
1009 result |= (((bfd_vma) byte & 0x7f) << shift);
1012 while (byte & 0x80);
1027 unsigned char byte;
1034 byte = bfd_get_8 (abfd, buf);
1037 result |= (((bfd_vma) byte
996 unsigned char byte; local
1024 unsigned char byte; local
[all...]
/freebsd-10.0-release/sys/boot/i386/boot2/
H A Dboot1.S66 .byte 0 # sectors/clustor
68 .byte 0 # number of FATs
71 .byte 0 # media type (W)
79 ebpb: .byte 0 # BIOS physical drive number (W)
88 * %dl - byte - drive to read from
89 * %dh - byte - num sectors to read
271 * %dl - byte - drive number
361 flags: .byte FLAGS # Flags
368 part4: .byte 0x80, 0x00, 0x01, 0x00
369 .byte
[all...]
/freebsd-10.0-release/sys/pci/
H A Dintpm.c73 static int intsmb_sendb(device_t dev, u_char slave, char byte);
74 static int intsmb_recvb(device_t dev, u_char slave, char *byte);
75 static int intsmb_writeb(device_t dev, u_char slave, char cmd, char byte);
77 static int intsmb_readb(device_t dev, u_char slave, char cmd, char *byte);
542 intsmb_sendb(device_t dev, u_char slave, char byte) argument
554 bus_write_1(sc->io_res, PIIX4_SMBHSTCMD, byte);
562 intsmb_recvb(device_t dev, u_char slave, char *byte) argument
582 *byte = bus_read_1(sc->io_res, PIIX4_SMBHSTCMD);
584 *byte = bus_read_1(sc->io_res, PIIX4_SMBHSTDAT0);
592 intsmb_writeb(device_t dev, u_char slave, char cmd, char byte) argument
635 intsmb_readb(device_t dev, u_char slave, char cmd, char *byte) argument
[all...]
H A Dviapm.c695 viasmb_sendb(device_t dev, u_char slave, char byte) argument
708 VIAPM_OUTB(SMBHCMD, byte);
714 VIAPM_DEBUG(printf("viapm: SENDB to 0x%x, byte=0x%x, error=0x%x\n", slave, byte, error));
721 viasmb_recvb(device_t dev, u_char slave, char *byte) argument
738 *byte = VIAPM_INB(SMBHDATA0);
740 VIAPM_DEBUG(printf("viapm: RECVB from 0x%x, byte=0x%x, error=0x%x\n", slave, *byte, error));
747 viasmb_writeb(device_t dev, u_char slave, char cmd, char byte) argument
761 VIAPM_OUTB(SMBHDATA0, byte);
774 viasmb_readb(device_t dev, u_char slave, char cmd, char *byte) argument
[all...]
/freebsd-10.0-release/secure/lib/libcrypto/amd64/
H A Dbsaes-x86_64.S17 .byte 102,68,15,56,0,255
19 .byte 102,15,56,0,199
21 .byte 102,15,56,0,207
23 .byte 102,15,56,0,215
25 .byte 102,15,56,0,223
27 .byte 102,15,56,0,231
29 .byte 102,15,56,0,239
30 .byte 102,15,56,0,247
125 .byte 102,68,15,56,0,255
127 .byte 10
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.h26 /// Write position in dictionary. The next byte will be written to
101 /// Get a byte from the history buffer.
136 // than copying byte by byte in a loop, the copying process gets split
184 /// Puts one byte into the dictionary. Returns true if the dictionary was
185 /// already full and the byte couldn't be added.
187 dict_put(lzma_dict *dict, uint8_t byte) argument
192 dict->buf[dict->pos++] = byte;
/freebsd-10.0-release/sys/boot/pc98/boot0.5/
H A Dstart.s39 .byte 0x4e, 0x45, 0x43
42 .byte 0x32, 0x2e, 0x37, 0x30
H A Dsupport.s48 # Read one byte from BIOS parameter block
58 # Write one byte to BIOS paramter block
H A Dputssjis.s58 # 1 byte character
71 # Check 2byte "hankaku"
97 # Check 2-byte code.
/freebsd-10.0-release/sys/powerpc/booke/
H A Dcopyinout.c170 subyte(void *addr, int byte) argument
185 *(char *)addr = (char)byte;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dax-general.c93 /* Append the low N bytes of VAL as an N-byte integer to the
110 /* Extract an N-byte big-endian unsigned integer from expression X at
143 /* N must fit in a byte. */
176 /* N must fit in a byte. */
513 int byte = reg / 8;
516 if (byte >= reg_mask_len)
520 int new_len = byte + 1;
528 reg_mask[byte] |= 1 << (reg % 8);
511 int byte = reg / 8; local
/freebsd-10.0-release/sys/fs/udf/
H A Dosta.c24 * The Unicode output will be in the byte order
38 byte *UDFCompressed, /* (Input) bytes read from media. */
44 /* Use UDFCompressed to store current byte being read. */
57 /* Move the first byte to the high bits of the
66 /*Then the next byte to the low bits. */
79 * it keeps byte order of unicode string.
84 byte *UDFCompressed, /* (Input) bytes read from media. */
85 byte *unicode) /* (Output) uncompressed unicode characters. */
90 /* Use UDFCompressed to store current byte being read. */
103 /* Move the first byte t
[all...]
/freebsd-10.0-release/sys/netgraph/
H A Dng_frame_relay.c100 #define LASTBYTE_D_C 0x02 /* last byte is dl_core or dlci info */
114 #define SHIFTIN(segment, byte, dlci) \
118 (((byte) & (segment)->mask) >> (segment)->shift); \
121 #define SHIFTOUT(segment, byte, dlci) \
123 (byte) |= (((dlci) << (segment)->shift) & (segment)->mask); \
372 * First byte is MSBits of addr so work backwards.
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DLibStdcpp.cpp56 size_t byte_idx = (idx >> 3); // divide by 8 to get byte index
62 uint8_t byte = 0;
65 size_t bytes_read = process_sp->ReadMemory(byte_location, &byte, 1, err);
89 bool bit_set = ((byte & mask) != 0);

Completed in 411 milliseconds

1234567891011>>