Searched refs:byte (Results 1 - 25 of 152) sorted by relevance

1234567

/haiku-fatelf/src/bin/network/tcpdump/
H A Ddecnet.h25 typedef u_int8_t byte[1]; /* single byte field */ typedef
28 * the keyword 'byte' generates conflicts in Windows
30 typedef unsigned char Byte[1]; /* single byte field */
31 #define byte Byte macro
33 typedef u_int8_t word[2]; /* 2 byte field */
66 byte sh_flags; /* route flags */
69 byte sh_visits; /* visit count */
74 byte lg_flags; /* route flags */
75 byte lg_dare
[all...]
/haiku-fatelf/headers/private/bluetooth/
H A DbtDebug.h41 #define SET_BIT(byte,bit_mask) {byte|=bit_mask;}
42 #define CLEAR_BIT(byte,bit_mask) {byte&=~bit_mask;}
43 #define GET_BIT(byte,bit_mask) ((byte&bit_mask)!=0)
44 #define TOOGLE_BIT(byte,bit_mask) {byte^=bit_mask;}
46 //#define TEST_AND_SET(byte,bit_mask) (((byte|
49 TEST_AND_SET(uint32 *byte, uint32 bit_mask) argument
56 TEST_AND_CLEAR(uint32* byte, uint32 bit_mask) argument
[all...]
/haiku-fatelf/src/tests/add-ons/print/pcl6/
H A Ddisasm.h38 uint8 fBuffer; // one byte only
97 bool DecodeOperator(uint8 byte);
98 struct ATTRIBUTE* ReadData(uint8 byte);
99 bool PushData(uint8 byte);
105 bool DecodeAttribute(uint8 byte);
106 bool DecodeEmbedData(uint8 byte);
109 bool IsOperator(uint8 byte) const { return byte >= 0x41 && byte <= 0xb9; }
110 bool IsDataType(uint8 byte) cons
[all...]
H A Ddisasm.cpp54 bool InputStream::PutUByte(uint8 byte) { argument
56 fBufferSize = 1; fBuffer = byte; fPos --;
116 uint8 byte; local
118 if (!fStream->ReadUByte(byte) || byte != *t) return false;
124 uint8 byte; local
125 if (!fStream->ReadUByte(byte)) return false;
130 if (byte != *t) {
131 if (!fStream->ReadUByte(byte)) return false;
136 if (!fStream->ReadUByte(byte)) retur
146 uint8 byte; local
197 DecodeOperator(uint8 byte) argument
448 ReadData(uint8 byte) argument
534 PushData(uint8 byte) argument
940 DecodeAttribute(uint8 byte) argument
1168 DecodeEmbedData(uint8 byte) argument
1216 uint8 byte; local
[all...]
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dh8500-dis.c37 /* Points to first byte not fetched. */
113 int byte; local
125 for (byte = 0; byte < opcode->length; byte++)
127 FETCH_DATA (info, buffer + byte + 1);
128 if ((buffer[byte] & opcode->bytes[byte].mask)
129 != (opcode->bytes[byte].contents))
136 switch (opcode->bytes[byte]
[all...]
/haiku-fatelf/src/bin/coreutils/man/
H A Dwc.x2 wc \- print newline, word, and byte counts for each file
/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86_64/
H A Ds_copysign.S32 .byte 0, 0, 0, 0, 0, 0, 0, 0x80
33 .byte 0, 0, 0, 0, 0, 0, 0, 0
37 .byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f
38 .byte 0, 0, 0, 0, 0, 0, 0, 0
/haiku-fatelf/src/system/libroot/posix/glibc/include/arch/generic/
H A Dmemcopy.h63 typedef unsigned char byte; typedef
83 byte __x = ((byte *) src_bp)[0]; \
86 ((byte *) dst_bp)[0] = __x; \
101 byte __x; \
103 __x = ((byte *) src_ep)[0]; \
106 ((byte *) dst_ep)[0] = __x; \
/haiku-fatelf/src/add-ons/print/drivers/pcl6/
H A DDeltaRowCompression.h38 // append byte to delta row
39 virtual void AppendByteToDeltaRow(uchar byte) = 0;
79 // write byte to delta row and calculate size of delta row
80 void Put(uchar byte) argument
83 AppendByteToDeltaRow(byte);
93 // the index of the next byte to be written into
114 virtual void AppendByteToDeltaRow(uchar byte) argument
116 fDeltaRow[CurrentDeltaRowSize()] = byte;
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetDebug.cpp154 uint8 *byte = (uint8 *) data; local
162 sprintf(ptr, "%02x ", byte[j]);
172 if ( byte[j] >= 0x20 && byte[j] < 0x7e )
173 *ptr = byte[j];
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Dangel.h81 typedef unsigned char byte ; typedef
156 byte *bp ;
160 byte (*bfn)(void) ;
/haiku-fatelf/headers/build/host/sunos/
H A Dendian.h17 #error Unable to determine byte order!
/haiku-fatelf/src/libs/libtelnet/
H A Dpk.h34 typedef unsigned char byte, DesData[ 8], IdeaData[16]; typedef
/haiku-fatelf/src/system/libroot/posix/glibc/include/arch/ppc/bits/
H A Dendian.h34 # warning Cannot determine current byte order, assuming big-endian.
/haiku-fatelf/src/apps/debugger/util/
H A DBitBuffer.cpp28 uint8 byte = *data; local
33 return byte;
35 return (byte << bitOffset) | (*data >> (8 - bitOffset));
40 uint8 byte = *data; local
48 return byte & ((1 << count) - 1);
51 return (byte >> (8 - bitOffset)) & ((1 << count) - 1);
56 return ((byte << bitOffset) | (*data >> (8 - bitOffset)))
133 // If we have left-over bits, write a partial byte.
166 // zero the remaining bytes, including a potentially partial last byte
/haiku-fatelf/src/bin/rmd160/
H A Dmain.c97 void pack_chunk(word *chunk, byte *buf) {
107 byte *rmdfp(char *fname, FILE *fp) {
118 static byte code[RMDBITS / 8];
143 /* do all the remaining 64-byte blocks */
159 /* convert to 64-byte string using little-endian conversion */
165 code[i] = (byte) (wd);
166 code[i + 1] = (byte) (wd >> 8);
167 code[i + 2] = (byte) (wd >> 16);
168 code[i + 3] = (byte) (wd >> 24);
174 void printcode(byte *cod
[all...]
/haiku-fatelf/src/bin/bc/bc/
H A Dexecute.c51 /* Get the current byte and advance the PC counter. */
54 byte (pc) function
93 inst = byte(&pc);
120 var_name = byte(&pc);
122 var_name = ((var_name & 0x7f) << 8) + byte(&pc);
131 label_num = byte(&pc); /* Low order bits first. */
132 label_num += byte(&pc) << 8;
145 new_func = byte(&pc);
147 new_func = ((new_func & 0x7f) << 8) + byte(&pc);
192 var_name = byte(
[all...]
/haiku-fatelf/src/kits/game/
H A DFileGameSound.cpp41 for (int32 byte = 0; byte < samples; byte++) {
43 data[byte] = uint8(float(buffer[byte]) * gain);
46 *bytes = byte * sizeof(uint8);
60 for (int32 byte = 0; byte < samples; byte++) {
62 data[byte]
77 size_t byte = 0; local
100 size_t byte = 0; local
[all...]
/haiku-fatelf/src/system/boot/platform/pxe_ia32/
H A Dpxe_stage2.S72 .byte 0x66
81 .byte 0x66
82 .byte 0x67
91 .byte 0x66
135 .byte 0x66
136 .byte 0x67
210 .byte 1
213 .byte 0xff
/haiku-fatelf/src/add-ons/input_server/methods/canna/lib/
H A DRKroma.c338 int byte; local
365 byte = strlen((char *)kana);
372 byte = RkCvtNone(tmp, sizeof(tmp), src, count);
375 byte = RkCvtHira(tmp, sizeof(tmp), src, count);
378 byte = RkCvtHan(tmp, sizeof(tmp), src, count);
381 byte = RkCvtKana(tmp, sizeof(tmp), src, count);
384 byte = RkCvtZen(tmp, sizeof(tmp), src, count);
393 byte = strlen((char *)kana);
403 byte = strlen((char *)kana);
408 byte
465 int byte; local
[all...]
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dshell.S72 .byte 0xbe, 0x50, 0x38 // id
74 .byte 0x00, 0x02 //BPS
75 .byte 0x02 //SPC
76 //.byte 0x00 //???
77 .byte 0x00, 0x02 //RES - number of reserved sectors
78 .byte 0x00 //NFATS
79 .byte 0x00, 0x00 //NDIRS
80 .byte 0x40, 0x0b //NSECTS
81 .byte 0xf0 //MEDIA
82 .byte
[all...]
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dstage1.S15 * The offset of the partition in 512 byte blocks must be written at
21 * in 512 byte blocks and dl - BIOS ID of the boot drive.
89 .byte 0
198 .byte 0
202 .byte 0
206 .byte 12
210 .byte 0
/haiku-fatelf/src/apps/debugger/dwarf/
H A DDataReader.h130 uint8 byte = Read<uint8>(0); local
131 result |= uint64(byte & 0x7f) << shift;
132 if ((byte & 0x80) == 0)
145 uint8 byte = Read<uint8>(0); local
146 result |= uint64(byte & 0x7f) << shift;
149 if ((byte & 0x80) == 0) {
151 if ((byte & 0x40) != 0 && shift < 64)
/haiku-fatelf/src/system/boot/platform/bios_ia32/
H A Dshell.S53 // written by the "makeflop" command in 512 byte blocks
74 .byte 0x67
93 .byte 0x67
177 shl $9, %ax // get byte offset
258 .byte 0x67
260 .byte 0x67
261 .byte 0x66
273 .byte 0x66 // that allows linking with others
274 .byte 0x67
285 .byte
[all...]
/haiku-fatelf/src/add-ons/kernel/busses/scsi/usb/
H A Dsg_buffer.c78 sg_access_byte(sg_buffer *sgb, off_t offset, uchar *byte, bool b_set) argument
88 ptr[offset] = *byte;
90 *byte = ptr[offset];
127 uchar byte = 0; local
130 status = sg_access_byte(s_sgb, s_offset + i, &byte, false);
132 status = sg_access_byte(d_sgb, d_offset + i, &byte, true);

Completed in 147 milliseconds

1234567