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

1234

/haiku/src/system/kernel/arch/x86/64/
H A Dsignals_compat_asm.S14 .byte 0x55 // push %ebp
15 .byte 0x89,0xe5 // mov %esp,%ebp
16 .byte 0x83,0xec,0x14 // sub $0x14,%esp
17 .byte 0x53 // push %ebx
18 .byte 0x8b,0x5d,0x08 // mov 0x8(%ebp),%ebx
19 .byte 0x80,0xbb,0x74,0x2,0x0,0x0,0x0 // cmpb $0x0,0x274(%ebx)
20 .byte 0x74,0x19 // je <x86_64_signal_frame_function_compat+0x2c>
21 .byte 0x8b,0x93,0x70,0x2,0x0,0x0 // mov 0x270(%ebx),%edx
22 .byte 0x8b,0x83,0x6c,0x2,0x0,0x0 // mov 0x26c(%ebx),%eax
23 .byte
[all...]
/haiku/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/headers/private/kernel/arch/x86/
H A Darch_altcodepatch.h12 #define ASM_NOP1 .byte 0x90
13 #define ASM_NOP2 .byte 0x66, 0x90
14 #define ASM_NOP3 .byte 0x0f, 0x1f, 0x00
15 #define ASM_NOP4 .byte 0x0f, 0x1f, 0x40, 0x00
16 #define ASM_NOP5 .byte 0x0f, 0x1f, 0x44, 0x00, 0x00
17 #define ASM_NOP6 .byte 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00
18 #define ASM_NOP7 .byte 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00
19 #define ASM_NOP8 .byte 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00
20 #define ASM_NOP9 .byte 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00
/haiku/src/system/boot/platform/efi/arch/arm/
H A Dcrt0-efi-arm.S46 .byte 0x02 // MajorLinkerVersion
47 .byte 0x14 // MinorLinkerVersion
97 .byte 0
98 .byte 0 // end of 0 padding of section name
111 .byte 0
112 .byte 0
113 .byte 0 // end of 0 padding of section name
/haiku/src/system/boot/platform/efi/arch/riscv64/
H A Dcrt0-efi-riscv64.S57 .byte 0x02 // MajorLinkerVersion
58 .byte 0x14 // MinorLinkerVersion
118 .byte 0
119 .byte 0 // end of 0 padding of section name
132 .byte 0
133 .byte 0
134 .byte 0 // end of 0 padding of section name
/haiku/src/system/boot/platform/efi/arch/arm64/
H A Dcrt0-efi-arm64.S45 .byte 0x02 // MajorLinkerVersion
46 .byte 0x14 // MinorLinkerVersion
104 .byte 0
105 .byte 0 // end of 0 padding of section name
117 .byte 0
118 .byte 0
119 .byte 0
/haiku/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/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/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dh2generic.h116 TEST_AND_SET(uint32 *byte, uint32 bit_mask) argument
118 uint32 val = (*byte&bit_mask)!=0;
119 *byte |= bit_mask;
125 TEST_AND_CLEAR(uint32* byte, uint32 bit_mask) argument
127 uint32 val = (*byte&bit_mask)!=0;
128 *byte &= ~bit_mask;
/haiku/src/kits/debugger/dwarf/
H A DDataReader.h138 uint8 byte = Read<uint8>(0); local
139 result |= uint64(byte & 0x7f) << shift;
140 if ((byte & 0x80) == 0)
153 uint8 byte = Read<uint8>(0); local
154 result |= uint64(byte & 0x7f) << shift;
157 if ((byte & 0x80) == 0) {
159 if ((byte & 0x40) != 0 && shift < 64)
173 uint8 byte = Read<uint8>(0); local
175 result |= (uint64)byte;
180 uint8 byte local
[all...]
/haiku/src/libs/libtelnet/
H A Dpk.h34 typedef unsigned char byte, DesData[ 8], IdeaData[16]; typedef
/haiku/src/kits/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/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
H A Dsmp_trampoline.S26 .byte 0x66, 0x0f, 0x01, 0x15, 0x00, 0xc0, 0x08, 0x00
34 .byte 0x66
/haiku/src/system/boot/platform/efi/arch/x86/
H A Dsmp_trampoline.S12 // be 16-byte aligned, below 1MB and identity-mapped.
27 .byte 0x66
28 .byte 0xbe
53 .byte 0x66
/haiku/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/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/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...]
H A Dsmp_trampoline.S26 .byte 0x66, 0x0f, 0x01, 0x15, 0x00, 0xe0, 0x09, 0x00
34 .byte 0x66
/haiku/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);
/haiku/src/system/libroot/os/arch/riscv64/
H A Dbyteorder.S70 __bswap32_c1: .4byte 0xFF00FF00ULL
71 __bswap64_c1: .8byte 0xFF00FF00FF00FF00ULL
72 __bswap64_c2: .8byte 0xFFFF0000FFFF0000ULL
/haiku/headers/libs/print/libprint/
H A DHalftone.h95 uchar ConvertUsingBlackValue(uchar byte) const;
172 Halftone::ConvertUsingBlackValue(uchar byte) const
174 // bits with value = '1' in byte mean black
176 return byte;
178 return ~byte;
/haiku/src/kits/network/libnetservices2/
H A DHttpBuffer.cpp23 static constexpr std::array<std::byte, 2> kNewLine = {std::byte('\r'), std::byte('\n')};
198 fBuffer.push_back(static_cast<const std::byte>(character));
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp110 char byte; local
133 serial->Read(&byte, 1);
134 if ((byte & 0xf7) != 0x87) {
135 LOG("Self test failed for %s %x\n", devName, byte & 0xf7);
224 uint8 byte; local
234 byte = 0;
235 while(!byte)
236 dev->serial->Read(&byte, 1);
237 if (byte & 0x40 || !(byte
[all...]

Completed in 330 milliseconds

1234