HomeSort by: relevance | last modified time | path
    Searched defs:byte (Results 1 - 25 of 126) sorted by relevancy

1 2 3 4 5 6

  /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';
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/usr.sbin/bootp/common/
bptypes.h 24 typedef unsigned char byte; typedef in typeref:typename:unsigned char
bptypes.h 24 typedef unsigned char byte; typedef in typeref:typename:unsigned char
  /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 *);
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/usr.bin/cmp/
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...]
regular.c 59 off_t byte, length, line; local in function:c_regular
73 byte = line = 1;
103 for (; blk_cnt--; ++p1, ++p2, ++byte) {
106 diffmsg(file1, file2, byte, line);
111 (long long)byte, ch, *p2);
124 eofmsg(len1 > len2 ? file2 : file1, byte, 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...]
regular.c 59 off_t byte, length, line; local in function:c_regular
73 byte = line = 1;
103 for (; blk_cnt--; ++p1, ++p2, ++byte) {
106 diffmsg(file1, file2, byte, line);
111 (long long)byte, ch, *p2);
124 eofmsg(len1 > len2 ? file2 : file1, byte, line);
  /src/lib/libtelnet/
pk.h 34 typedef unsigned char byte, DesData[ 8], IdeaData[16]; typedef in typeref:typename:unsigned char
pk.h 34 typedef unsigned char byte, DesData[ 8], IdeaData[16]; typedef in typeref:typename:unsigned char
  /src/sys/ddb/
db_expr.c 55 int i, c, byte; local in function:db_term
59 byte = 0;
61 byte = c - '0';
63 byte = c - 'a' + 10;
65 byte = c - 'A' + 10;
69 v = v * db_radix + byte;
db_expr.c 55 int i, c, byte; local in function:db_term
59 byte = 0;
61 byte = c - '0';
63 byte = c - 'a' + 10;
65 byte = c - 'A' + 10;
69 v = v * db_radix + byte;
  /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...]
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/sys/arch/x86/x86/
i8259.c 196 uint8_t byte; local in function:i8259_hwmask
204 byte = i8259_imen >> 8;
207 byte = i8259_imen & 0xff;
209 outb(port, byte);
216 uint8_t byte; local in function:i8259_hwunmask
225 byte = i8259_imen >> 8;
228 byte = i8259_imen & 0xff;
230 outb(port, byte);
i8259.c 196 uint8_t byte; local in function:i8259_hwmask
204 byte = i8259_imen >> 8;
207 byte = i8259_imen & 0xff;
209 outb(port, byte);
216 uint8_t byte; local in function:i8259_hwunmask
225 byte = i8259_imen >> 8;
228 byte = i8259_imen & 0xff;
230 outb(port, byte);
  /src/sys/dev/fdt/
fdt_ddb.c 109 const uint8_t *byte = (const uint8_t *)prop->data; local in function:fdt_for_each_property_offset
113 pr("%02x%s", byte[j],
fdt_ddb.c 109 const uint8_t *byte = (const uint8_t *)prop->data; local in function:fdt_for_each_property_offset
113 pr("%02x%s", byte[j],
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_dp_auxch.c 69 u8 byte; local in function:radeon_dp_aux_transfer_native
125 byte = (msg->request << 4) | ((msg->address >> 16) & 0xf);
127 AUX_SW_DATA_MASK(byte) | AUX_SW_AUTOINCREMENT_DISABLE);
129 byte = (msg->address >> 8) & 0xff;
131 AUX_SW_DATA_MASK(byte));
133 byte = msg->address & 0xff;
135 AUX_SW_DATA_MASK(byte));
137 byte = msize;
139 AUX_SW_DATA_MASK(byte));
radeon_dp_auxch.c 69 u8 byte; local in function:radeon_dp_aux_transfer_native
125 byte = (msg->request << 4) | ((msg->address >> 16) & 0xf);
127 AUX_SW_DATA_MASK(byte) | AUX_SW_AUTOINCREMENT_DISABLE);
129 byte = (msg->address >> 8) & 0xff;
131 AUX_SW_DATA_MASK(byte));
133 byte = msg->address & 0xff;
135 AUX_SW_DATA_MASK(byte));
137 byte = msize;
139 AUX_SW_DATA_MASK(byte));
  /src/sys/external/bsd/drm2/include/linux/
string.h 45 const uint8_t byte = c; /* XXX lose */ local in function:memchr_inv
49 if (*p != byte)
string.h 45 const uint8_t byte = c; /* XXX lose */ local in function:memchr_inv
49 if (*p != byte)
  /src/usr.bin/make/unit-tests/
opt-file.mk 12 all: file-containing-null-byte
65 # echo 'VAR=value' | tr 'l' '\0' > zero-byte.in
66 # printf '%s\n' 'all:' ': VAR=${VAR:Q}' >> zero-byte.in
70 # make-$year.01.01.00.00.00 -r -f zero-byte.in
82 # make: "(stdin)" line 1: Zero byte read from file
95 # make: "(stdin)" line 1: warning: Zero byte read from file, skipping rest of line.
99 # make: "(stdin)" line 1: Zero byte read from file
105 # make: "(stdin)" line 1: Zero byte read from file
107 file-containing-null-byte: .PHONY

Completed in 27 milliseconds

1 2 3 4 5 6