Searched refs:Byte (Results 1 - 25 of 65) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DCpuArch.h30 #define GetUi16(p) (((const Byte *)(p))[0] | ((UInt16)((const Byte *)(p))[1] << 8))
33 ((const Byte *)(p))[0] | \
34 ((UInt32)((const Byte *)(p))[1] << 8) | \
35 ((UInt32)((const Byte *)(p))[2] << 16) | \
36 ((UInt32)((const Byte *)(p))[3] << 24))
38 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
41 ((Byte *)(p))[0] = (Byte)_x_; \
42 ((Byte *)(
[all...]
H A DLzmaDec.h36 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
50 Byte *dic;
51 const Byte *buf;
64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
130 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
133 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
178 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
194 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
195 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
219 SRes LzmaDecode(Byte *des
[all...]
H A DLzFind.h13 Byte *buffer;
28 Byte *bufferBase;
55 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p);
72 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
83 typedef Byte (*Mf_GetIndexByte_Func)(void *object, Int32 index);
85 typedef const Byte * (*Mf_GetPointerToCurrentPos_Func)(void *object);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DCpuArch.h30 #define GetUi16(p) (((const Byte *)(p))[0] | ((UInt16)((const Byte *)(p))[1] << 8))
33 ((const Byte *)(p))[0] | \
34 ((UInt32)((const Byte *)(p))[1] << 8) | \
35 ((UInt32)((const Byte *)(p))[2] << 16) | \
36 ((UInt32)((const Byte *)(p))[3] << 24))
38 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
41 ((Byte *)(p))[0] = (Byte)_x_; \
42 ((Byte *)(
[all...]
H A DBra.h53 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
54 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
55 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
56 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
57 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
58 SizeT IA64_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
H A DBra86.c8 const Byte kMaskToAllowedStatus[8] = {1, 1, 1, 0, 1, 0, 0, 0};
9 const Byte kMaskToBitNumber[8] = {0, 1, 2, 2, 3, 3, 3, 3};
11 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
22 Byte *p = data + bufferPos;
23 Byte *limit = data + size - 4;
38 Byte b = p[4 - kMaskToBitNumber[prevMask]];
56 Byte b;
65 b = (Byte)(dest >> (24 - index));
70 p[4] = (Byte)(~(((dest >> 24) & 1) - 1));
71 p[3] = (Byte)(des
[all...]
H A DLzmaDec.h36 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
50 Byte *dic;
51 const Byte *buf;
64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
130 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
133 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
178 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
194 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
195 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
219 SRes LzmaDecode(Byte *des
[all...]
H A DLzmaEnc.h51 SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size);
54 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
68 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
69 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
H A DLzFind.h13 Byte *buffer;
28 Byte *bufferBase;
55 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p);
72 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
83 typedef Byte (*Mf_GetIndexByte_Func)(void *object, Int32 index);
85 typedef const Byte * (*Mf_GetPointerToCurrentPos_Func)(void *object);
H A DLzFindMt.h42 typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos,
48 const Byte *pointerToCurPos;
64 Byte btDummy[kMtCacheLineDummy];
76 Byte *buffer;
83 /* Byte hashDummy[kMtCacheLineDummy]; */
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Din6addr.h39 UCHAR Byte[16]; member in union:__anon13599
48 #define WS__S6_u8 Byte
52 #define _S6_u8 Byte
56 #define s6_bytes u.Byte
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Din6addr.h39 WS(u_char) Byte[16]; member in union:__anon991
48 #define WS__S6_u8 Byte
52 #define _S6_u8 Byte
56 #define s6_bytes u.Byte
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseS3SmbusLib/
H A DS3SmbusLib.c150 UINT8 Byte; local
152 Byte = SmBusReceiveByte (SmBusAddress, Status);
154 InternalSaveSmBusExecToBootScript (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte);
156 return Byte;
188 UINT8 Byte; local
190 Byte = SmBusSendByte (SmBusAddress, Value, Status);
192 InternalSaveSmBusExecToBootScript (EfiSmbusSendByte, SmBusAddress, 1, &Byte);
194 return Byte;
223 UINT8 Byte; local
225 Byte
261 UINT8 Byte; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/
H A DUsbHcMem.c167 UINTN Byte; local
180 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
186 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
193 NEXT_BIT (Byte, Bit);
196 NEXT_BIT (Byte, Bit);
199 StartByte = Byte;
211 Byte = StartByte;
215 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
217 Block->Bits[Byte]
516 UINTN Byte; local
[all...]
H A DUsbHcMem.h63 #define NEXT_BIT(Byte, Bit) \
67 (Byte)++; \
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciPei/
H A DUsbHcMem.c141 UINTN Byte; local
154 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
160 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
167 NEXT_BIT (Byte, Bit);
170 NEXT_BIT (Byte, Bit);
173 StartByte = Byte;
185 Byte = StartByte;
189 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
191 Block->Bits[Byte]
444 UINTN Byte; local
[all...]
H A DUsbHcMem.h67 #define NEXT_BIT(Byte, Bit) \
71 (Byte)++; \
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/UhciDxe/
H A DUsbHcMem.c166 UINTN Byte; local
179 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
185 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
192 NEXT_BIT (Byte, Bit);
195 NEXT_BIT (Byte, Bit);
198 StartByte = Byte;
210 Byte = StartByte;
214 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
216 Block->Bits[Byte]
514 UINTN Byte; local
[all...]
H A DUsbHcMem.h64 #define NEXT_BIT(Byte, Bit) \
68 (Byte)++; \
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/
H A DSmbusLib.c110 UINT8 Byte; local
116 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
118 return Byte;
149 UINT8 Byte; local
155 Byte = Value;
156 InternalSmBusExec (EfiSmbusSendByte, SmBusAddress, 1, &Byte, Status);
186 UINT8 Byte; local
191 InternalSmBusExec (EfiSmbusReadByte, SmBusAddress, 1, &Byte, Status);
193 return Byte;
224 UINT8 Byte; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeSmbusLib/
H A DSmbusLib.c136 UINT8 Byte; local
142 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
144 return Byte;
185 UINT8 Byte; local
191 Byte = Value;
192 InternalSmBusExec (EfiSmbusSendByte, SmBusAddress, 1, &Byte, Status);
232 UINT8 Byte; local
237 InternalSmBusExec (EfiSmbusReadByte, SmBusAddress, 1, &Byte, Status);
239 return Byte;
280 UINT8 Byte; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiSmbusLibSmbus2Ppi/
H A DSmbusLib.c136 UINT8 Byte; local
142 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
144 return Byte;
185 UINT8 Byte; local
191 Byte = Value;
192 InternalSmBusExec (EfiSmbusSendByte, SmBusAddress, 1, &Byte, Status);
232 UINT8 Byte; local
237 InternalSmBusExec (EfiSmbusReadByte, SmBusAddress, 1, &Byte, Status);
239 return Byte;
280 UINT8 Byte; local
[all...]
/vbox/src/libs/zlib-1.2.6/test/
H A Dexample.c37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
39 Byte *uncompr, uLong uncomprLen));
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
41 Byte *uncompr, uLong uncomprLen));
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
43 Byte *uncompr, uLong uncomprLen));
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLen,
46 Byte *uncomp
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c104 Byte *inBuffer = 0;
105 Byte *outBuffer = 0;
106 Byte *filteredStream = 0;
114 inBuffer = (Byte *)MyAlloc(inSize);
128 outBuffer = (Byte *)MyAlloc(outSize);
137 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i));
142 filteredStream = (Byte *)MyAlloc(inSize);
188 Byte *inBuffer = 0;
189 Byte *outBuffer = 0;
200 inBuffer = (Byte *)MyAllo
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbEnumer.h22 #define USB_NEXT_BIT(Byte, Bit) \
26 (Byte)++; \

Completed in 77 milliseconds

123