Home
last modified time | relevance | path

Searched refs:Byte (Results 1 – 25 of 218) sorted by relevance

123456789

/reactos/drivers/base/kdgdb/
H A Dgdb_receive.c34 UCHAR Byte; in gdb_receive_packet() local
43 } while (Byte != '$'); in gdb_receive_packet()
56 if (Byte == '#') in gdb_receive_packet()
61 CheckSum += (CHAR)Byte; in gdb_receive_packet()
64 if (Byte == 0x7d) in gdb_receive_packet()
69 CheckSum += (CHAR)Byte; in gdb_receive_packet()
70 Byte ^= 0x20; in gdb_receive_packet()
72 *ByteBuffer++ = Byte; in gdb_receive_packet()
76 Status = KdpReceiveByte(&Byte); in gdb_receive_packet()
81 Status = KdpReceiveByte(&Byte); in gdb_receive_packet()
[all …]
H A Dkdcom.c283 KdpSendByte(_In_ UCHAR Byte) in KdpSendByte() argument
286 CpPutByte(&KdComPort, Byte); in KdpSendByte()
329 UCHAR Byte; in KdpPollBreakIn() local
331 KdStatus = KdpPollByte(&Byte); in KdpPollBreakIn()
334 if (Byte == 0x03) in KdpPollBreakIn()
339 else if (Byte == '$') in KdpPollBreakIn()
H A Dgdb_send.c117 UCHAR Byte = *ptr++; in send_gdb_partial_binary() local
119 switch (Byte) in send_gdb_partial_binary()
127 Byte ^= 0x20; in send_gdb_partial_binary()
131 currentChecksum += Byte; in send_gdb_partial_binary()
132 KdpSendByte(Byte); in send_gdb_partial_binary()
/reactos/drivers/base/kdcom/
H A Dkdserial.c48 UCHAR Byte; in KdpReceiveBuffer() local
54 Status = KdpReceiveByte(&Byte); in KdpReceiveBuffer()
58 *ByteBuffer++ = Byte; in KdpReceiveBuffer()
78 UCHAR Index = 0, Byte, Buffer[4]; in KdpReceivePacketLeader() local
87 KdStatus = KdpReceiveByte(&Byte); in KdpReceivePacketLeader()
106 if (Byte == PACKET_LEADER_BYTE || in KdpReceivePacketLeader()
107 Byte == CONTROL_PACKET_LEADER_BYTE) in KdpReceivePacketLeader()
110 if (Byte != Buffer[0]) in KdpReceivePacketLeader()
117 Buffer[Index] = Byte; in KdpReceivePacketLeader()
125 if (Byte == BREAKIN_PACKET_BYTE) in KdpReceivePacketLeader()
[all …]
H A Dkdcom.c291 KdpSendByte(IN UCHAR Byte) in KdpSendByte() argument
294 CpPutByte(&KdComPort, Byte); in KdpSendByte()
346 UCHAR Byte; in KdpPollBreakIn() local
348 KdStatus = KdpPollByte(&Byte); in KdpPollBreakIn()
349 if ((KdStatus == KDP_PACKET_RECEIVED) && (Byte == BREAKIN_PACKET_BYTE)) in KdpPollBreakIn()
H A Dkddll.c87 UCHAR Byte = 0; in KdReceivePacket() local
269 KdStatus = KdpReceiveBuffer(&Byte, sizeof(UCHAR)); in KdReceivePacket()
270 if (KdStatus != KDP_PACKET_RECEIVED || Byte != PACKET_TRAILING_BYTE) in KdReceivePacket()
272 … KDDBGPRINT("KdReceivePacket - wrong trailing byte (0x%x), status 0x%x\n", Byte, KdStatus); in KdReceivePacket()
/reactos/drivers/network/dd/dc21x4/
H A Deeprom.h40 #define SRomIsBlockExtended(Byte) ((Byte) & 0x80) argument
41 #define SRomGetExtendedBlockLength(Byte) (((Byte) & 0x7F) + 1) argument
42 #define SRomGetMediaCode(Byte) ((Byte) & 0x3F) argument
43 #define SRomBlockHasExtendedData(Byte) ((Byte) & 0x40) argument
51 #define SRomHmrRegAddress(Byte) ((Byte) & 0x1F) argument
/reactos/sdk/lib/cportlib/
H A Dcport.c208 UCHAR Byte = 0; in ComPortTest2() local
212 WRITE_PORT_UCHAR(Address + SCRATCH_REGISTER, Byte); in ComPortTest2()
214 if (READ_PORT_UCHAR(Address + SCRATCH_REGISTER) != Byte) in ComPortTest2()
217 } while (++Byte != 0); in ComPortTest2()
254 OUT PUCHAR Byte, in CpGetByte() argument
274 *Byte = 0; in CpGetByte()
282 *Byte = READ_PORT_UCHAR(Port->Address + RECEIVE_BUFFER_REGISTER); in CpGetByte()
304 IN UCHAR Byte) in CpPutByte() argument
318 WRITE_PORT_UCHAR(Port->Address + TRANSMIT_HOLDING_REGISTER, Byte); in CpPutByte()
H A Dcport_pc98.c343 UCHAR Byte = 0; in ComPortTest2() local
347 WRITE_PORT_UCHAR((PUCHAR)SER2_IO_o_SCRATCH, Byte); in ComPortTest2()
349 if (READ_PORT_UCHAR((PUCHAR)SER2_IO_i_SCRATCH) != Byte) in ComPortTest2()
353 while (++Byte != 0); in ComPortTest2()
446 OUT PUCHAR Byte, in CpGetByte() argument
491 *Byte = 0; in CpGetByte()
503 *Byte = READ_PORT_UCHAR((PUCHAR)SER1_IO_i_DATA); in CpGetByte()
535 *Byte = 0; in CpGetByte()
564 IN UCHAR Byte) in CpPutByte() argument
582 WRITE_PORT_UCHAR((PUCHAR)SER1_IO_o_DATA, Byte); in CpPutByte()
[all …]
/reactos/drivers/serial/serial/
H A Dmisc.c38 UCHAR Byte; in SerialReceiveByte() local
49 Byte = READ_PORT_UCHAR(SER_RBR(ComPortBase)); in SerialReceiveByte()
51 DeviceExtension->ComPort, Byte); in SerialReceiveByte()
52 Status = PushCircularBufferEntry(&DeviceExtension->InputBuffer, Byte); in SerialReceiveByte()
75 UCHAR Byte; in SerialSendByte() local
87 Status = PopCircularBufferEntry(&DeviceExtension->OutputBuffer, &Byte); in SerialSendByte()
90 WRITE_PORT_UCHAR(SER_THR(ComPortBase), Byte); in SerialSendByte()
92 DeviceExtension->ComPort, Byte); in SerialSendByte()
/reactos/modules/rosapps/applications/fraginator/lang/
H A Dno-NO.rc35 DEFPUSHBUTTON "Byte",IDC_BYTES,7,148,50,14
43 LTEXT "(Disk størrelse, Byte)",IDC_DISKSIZEBYTES,83,51,117,10,
52 LTEXT "(Fil størrelse, Byte)",IDC_FILESSIZEBYTES,281,29,117,10,
57 LTEXT "(Total størrelse, Byte)",IDC_FILESSIZEONDISK,281,40,117,10,
59 LTEXT "(Fil slack Byte)",IDC_FILESSLACKBYTES,281,51,117,10,
62 LTEXT "(Ledig plass, Byte)",IDC_DISKFREEBYTES,83,62,117,10,
/reactos/sdk/lib/3rdparty/freetype/src/gzip/
H A Dftzconf.h39 # define Byte z_Byte macro
219 typedef unsigned char Byte; /* 8 bits */ typedef
226 # define Bytef Byte FAR
228 typedef Byte FAR Bytef;
239 typedef Byte FAR *voidpf;
240 typedef Byte *voidp;
H A Dinftrees.h22 Byte Exop; /* number of extra bits or operation */
23 Byte Bits; /* number of bits in this code or subcode */
H A Dinftrees.c247 r.bits = (Byte)l; /* bits to dump before this table */ in huft_build()
248 r.exop = (Byte)j; /* bits in this table */ in huft_build()
258 r.bits = (Byte)(k - w); in huft_build()
263 r.exop = (Byte)(*p < 256 ? 0 : 32 + 64); /* 256 is end-of-block */ in huft_build()
268 r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */ in huft_build()
H A Dinfcodes.c50 Byte lbits; /* ltree bits decoded per branch */
51 Byte dbits; /* dtree bits decoder per branch */
70 c->lbits = (Byte)bl; in inflate_codes_new()
71 c->dbits = (Byte)bd; in inflate_codes_new()
/reactos/sdk/include/psdk/
H A Din6addr.h5 UCHAR Byte[16]; member
12 #define _S6_u8 Byte
14 #define s6_bytes u.Byte
/reactos/ntoskrnl/inbv/
H A Dinbvport.c39 OUT PUCHAR Byte) in InbvPortGetByte() argument
42 return CpGetByte(&Port[PortId], Byte, TRUE, FALSE) == CP_GET_SUCCESS; in InbvPortGetByte()
48 IN UCHAR Byte) in InbvPortPutByte() argument
51 CpPutByte(&Port[PortId], Byte); in InbvPortPutByte()
/reactos/sdk/include/reactos/libs/zlib/
H A Dzconf.h144 # define Byte z_Byte macro
397 typedef unsigned char Byte; /* 8 bits */ typedef
404 # define Bytef Byte FAR
406 typedef Byte FAR Bytef;
418 typedef Byte const *voidpc;
419 typedef Byte FAR *voidpf;
420 typedef Byte *voidp;
/reactos/boot/freeldr/freeldr/ntldr/
H A Dheadless.c178 IN UCHAR Byte) in WinLdrPortPutByte() argument
180 CpPutByte(&Port[PortId], Byte); in WinLdrPortPutByte()
185 OUT PUCHAR Byte) in WinLdrPortGetByte() argument
187 return CpGetByte(&Port[PortId], Byte, TRUE, FALSE) == CP_GET_SUCCESS; in WinLdrPortGetByte()
/reactos/sdk/include/reactos/libs/cportlib/
H A Dcportlib.h73 OUT PUCHAR Byte,
82 IN UCHAR Byte
/reactos/sdk/lib/3rdparty/zlib/
H A Ddeflate.c381 s->method = (Byte)method;
772 put_byte(s, (Byte)(b >> 8));
773 put_byte(s, (Byte)(b & 0xff));
935 put_byte(s, (Byte)(s->gzhead->time & 0xff));
1033 put_byte(s, (Byte)(strm->adler & 0xff));
1106 put_byte(s, (Byte)(strm->adler & 0xff));
1107 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1108 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1110 put_byte(s, (Byte)(strm->total_in & 0xff));
1305 register Byte scan_end1 = scan[best_len - 1];
[all …]
/reactos/modules/rostests/unittests/isapnp/
H A Disabus.c399 UCHAR Byte = ((PUCHAR)Identifier)[i]; in IsaBusPnpChecksum() local
401 for (j = 0; j < RTL_BITS_OF(Byte); ++j) in IsaBusPnpChecksum()
403 Lfsr = IsaBusNextLFSR(Lfsr, Byte); in IsaBusPnpChecksum()
404 Byte >>= 1; in IsaBusPnpChecksum()
/reactos/sdk/include/ddk/
H A Dusbprotocoldefs.h222 BYTE Byte; member
233 BYTE Byte; member
245 BYTE Byte; member
314 BYTE Byte; member
340 BYTE Byte; member
/reactos/hal/halx86/pc98/
H A Dcmos.c71 UCHAR Byte = 0; in _Requires_lock_held_() local
76 Byte |= (__inbyte(PPI_IO_i_PORT_B) & 1) << i; in _Requires_lock_held_()
85 return Byte; in _Requires_lock_held_()
/reactos/drivers/bus/isapnp/
H A Dhardware.c390 UCHAR Byte = PeekByte(ReadDataPort); in Peek() local
393 ((PUCHAR)Buffer)[i] = Byte; in Peek()
410 UCHAR Byte = ((PUCHAR)Identifier)[i]; in IsaPnpChecksum() local
412 for (j = 0; j < RTL_BITS_OF(Byte); j++) in IsaPnpChecksum()
414 Lfsr = NextLFSR(Lfsr, Byte); in IsaPnpChecksum()
415 Byte >>= 1; in IsaPnpChecksum()
1297 UCHAR Byte = 0; in IsaHwTryReadDataPort() local
1299 for (j = 0; j < RTL_BITS_OF(Byte); j++) in IsaHwTryReadDataPort()
1308 Byte >>= 1; in IsaHwTryReadDataPort()
1312 Byte |= 0x80; in IsaHwTryReadDataPort()
[all …]

123456789