Home
last modified time | relevance | path

Searched refs:BYTE (Results 1 – 25 of 712) sorted by relevance

12345678910>>...29

/third_party/lz4/lib/
Dlz4.c302 typedef uint8_t BYTE; typedef
312 typedef unsigned char BYTE; typedef
363 … const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ in LZ4_isLittleEndian()
426 const BYTE* p = (const BYTE*)memPtr; in LZ4_readLE16()
436 BYTE* p = (BYTE*)memPtr; in LZ4_writeLE16()
437 p[0] = (BYTE) value; in LZ4_writeLE16()
438 p[1] = (BYTE)(value>>8); in LZ4_writeLE16()
446 BYTE* d = (BYTE*)dstPtr; in LZ4_wildCopy8()
447 const BYTE* s = (const BYTE*)srcPtr; in LZ4_wildCopy8()
448 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy8()
[all …]
Dlz4hc.c100 static void LZ4HC_init_internal (LZ4HC_CCtx_internal* hc4, const BYTE* start) in LZ4HC_init_internal()
120 LZ4_FORCE_INLINE void LZ4HC_Insert (LZ4HC_CCtx_internal* hc4, const BYTE* ip) in LZ4HC_Insert()
124 const BYTE* const prefixPtr = hc4->prefixStart; in LZ4HC_Insert()
146 int LZ4HC_countBack(const BYTE* const ip, const BYTE* const match, in LZ4HC_countBack()
147 const BYTE* const iMin, const BYTE* const mMin) in LZ4HC_countBack()
177 LZ4HC_countPattern(const BYTE* ip, const BYTE* const iEnd, U32 const pattern32) in LZ4HC_countPattern()
179 const BYTE* const iStart = ip; in LZ4HC_countPattern()
192 while ((ip<iEnd) && (*ip == (BYTE)patternByte)) { in LZ4HC_countPattern()
198 BYTE const byte = (BYTE)(pattern >> bitOffset); in LZ4HC_countPattern()
210 LZ4HC_reverseCountPattern(const BYTE* ip, const BYTE* const iLow, U32 pattern) in LZ4HC_reverseCountPattern()
[all …]
Dlz4frame.c170 typedef uint8_t BYTE; typedef
176 typedef unsigned char BYTE; typedef
187 const BYTE* const srcPtr = (const BYTE*)src; in LZ4F_readLE32()
197 BYTE* const dstPtr = (BYTE*)dst; in LZ4F_writeLE32()
198 dstPtr[0] = (BYTE)value32; in LZ4F_writeLE32()
199 dstPtr[1] = (BYTE)(value32 >> 8); in LZ4F_writeLE32()
200 dstPtr[2] = (BYTE)(value32 >> 16); in LZ4F_writeLE32()
201 dstPtr[3] = (BYTE)(value32 >> 24); in LZ4F_writeLE32()
206 const BYTE* const srcPtr = (const BYTE*)src; in LZ4F_readLE64()
220 BYTE* const dstPtr = (BYTE*)dst; in LZ4F_writeLE64()
[all …]
Dxxhash.c147 typedef uint8_t BYTE; typedef
151 typedef unsigned char BYTE; typedef
222 … const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ in XXH_isLittleEndian()
295 const BYTE* p = (const BYTE*)ptr; in XXH32_finalize()
355 const BYTE* p = (const BYTE*)input; in XXH32_endian_align()
356 const BYTE* bEnd = p + len; in XXH32_endian_align()
362 bEnd=p=(const BYTE*)(size_t)16; in XXH32_endian_align()
367 const BYTE* const limit = bEnd - 15; in XXH32_endian_align()
461 { const BYTE* p = (const BYTE*)input; in XXH32_update_endian()
462 const BYTE* const bEnd = p + len; in XXH32_update_endian()
[all …]
/third_party/openGLES/xml/
Dwgltypes.txt21 BYTE iPixelType;
22 BYTE cColorBits;
23 BYTE cRedBits;
24 BYTE cRedShift;
25 BYTE cGreenBits;
26 BYTE cGreenShift;
27 BYTE cBlueBits;
28 BYTE cBlueShift;
29 BYTE cAlphaBits;
30 BYTE cAlphaShift;
[all …]
/third_party/skia/third_party/externals/opengl-registry/xml/
Dwgltypes.txt21 BYTE iPixelType;
22 BYTE cColorBits;
23 BYTE cRedBits;
24 BYTE cRedShift;
25 BYTE cGreenBits;
26 BYTE cGreenShift;
27 BYTE cBlueBits;
28 BYTE cBlueShift;
29 BYTE cAlphaBits;
30 BYTE cAlphaShift;
[all …]
/third_party/FatFs/source/
Ddiskio.h22 typedef BYTE DSTATUS;
38 DSTATUS disk_initialize (BYTE pdrv);
39 DSTATUS disk_status (BYTE pdrv);
40 DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
41 DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count);
43 DRESULT disk_read_readdir (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
47 DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
49 DRESULT disk_read_readdir (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
Dff.h62 static const BYTE LfnOfs[] = {1,3,5,7,9,14,16,18,20,22,24,28,30}; /* FAT: Offset of LFN characters …
97 BYTE di; /* Physics disk id */
98 BYTE pd; /* Physical drive number */
99 BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
216 BYTE fs_type; /* Filesystem type (0:not mounted) */
217 BYTE pdrv; /* Associated physical drive */
218 BYTE n_fats; /* Number of FATs (1 or 2) */
219 BYTE wflag; /* win[] flag (b0:dirty) */
220 BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
247 BYTE* win; /* Disk access window for Directory, FAT (and file data at tiny cfg) */
[all …]
Ddiskio.c39 BYTE pdrv /* Physical drive nmuber to identify the drive */ in disk_status()
59 BYTE pdrv /* Physical drive nmuber to identify the drive */ in disk_initialize()
82 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_read()
83 BYTE *buff, /* Data buffer to store read data */ in disk_read()
104 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_read_readdir()
105 BYTE *buff, /* Data buffer to store read data */ in disk_read_readdir()
145 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_write()
146 const BYTE *buff, /* Data to be written */ in disk_write()
187 BYTE pdrv, /* Physical drive nmuber (0..) */ in disk_ioctl()
188 BYTE cmd, /* Control code */ in disk_ioctl()
Dffsystem.c26 BYTE *d = (BYTE*)dst; in ff_memset()
29 *d++ = (BYTE)val; in ff_memset()
38 const BYTE *p = (const BYTE *)NULL; in ff_strnlen()
39 const BYTE *c = (const BYTE*)str; in ff_strnlen()
109 BYTE vol, /* Corresponding volume (logical drive number) */ in ff_cre_syncobj()
Dff.c167 #define ABORT(fs, res) { fp->err = (BYTE)(res); LEAVE_FF(fs, res); }
380 static BYTE CurrVol; /* Current drive */
400 static const BYTE* ExCvt; /* Ptr to SBCS up-case table Ct???[] (null:not used) */
401 static const BYTE* DbcTbl; /* Ptr to DBCS code range table Dc???[] (null:not used) */
403 static const BYTE Ct437[] = TBL_CT437;
404 static const BYTE Ct720[] = TBL_CT720;
405 static const BYTE Ct737[] = TBL_CT737;
406 static const BYTE Ct771[] = TBL_CT771;
407 static const BYTE Ct775[] = TBL_CT775;
408 static const BYTE Ct850[] = TBL_CT850;
[all …]
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/
Dnv_control.h123 BYTE type; /* X_Reply */
148 BYTE type; /* X_Reply */
172 BYTE type; /* X_Reply */
199 BYTE type;
200 BYTE pad0;
214 BYTE type;
215 BYTE pad0;
254 BYTE type;
255 BYTE pad0;
281 BYTE type;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/
Dnv_control.h123 BYTE type; /* X_Reply */
148 BYTE type; /* X_Reply */
172 BYTE type; /* X_Reply */
199 BYTE type;
200 BYTE pad0;
214 BYTE type;
215 BYTE pad0;
254 BYTE type;
255 BYTE pad0;
281 BYTE type;
[all …]
/third_party/lz4/tests/
Dframetest.c57 BYTE* const dstPtr = (BYTE*)dstVoidPtr; in FUZ_writeLE32()
58 dstPtr[0] = (BYTE) value32; in FUZ_writeLE32()
59 dstPtr[1] = (BYTE)(value32 >> 8); in FUZ_writeLE32()
60 dstPtr[2] = (BYTE)(value32 >> 16); in FUZ_writeLE32()
61 dstPtr[3] = (BYTE)(value32 >> 24); in FUZ_writeLE32()
177 BYTE* BBuffer = (BYTE*)buffer; in FUZ_fillCompressibleNoiseBuffer()
182 BBuffer[pos++] = (BYTE)(FUZ_rand(seed)); in FUZ_fillCompressibleNoiseBuffer()
200 while (pos < end) BBuffer[pos++] = (BYTE)(FUZ_rand(seed) >> 5); in FUZ_fillCompressibleNoiseBuffer()
321 const BYTE* cBuff = (const BYTE*) compressedBuffer; in basicTests()
322 BYTE* const ostart = (BYTE*)decodedBuffer; in basicTests()
[all …]
/third_party/flutter/glfw/deps/mingw/
Dxinput.h165 BYTE bLeftTrigger;
166 BYTE bRightTrigger;
198 BYTE Type;
199 BYTE SubType;
213 BYTE UserIndex;
214 BYTE HidCode;
219 BYTE BatteryType;
220 BYTE BatteryLevel;
233 DWORD WINAPI XInputGetBatteryInformation(DWORD, BYTE, XINPUT_BATTERY_INFORMATION*);
/third_party/skia/third_party/externals/angle2/src/common/third_party/xxhash/
Dxxhash.c147 typedef uint8_t BYTE; typedef
151 typedef unsigned char BYTE; typedef
222 … const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ in XXH_isLittleEndian()
295 const BYTE* p = (const BYTE*)ptr; in XXH32_finalize()
355 const BYTE* p = (const BYTE*)input; in XXH32_endian_align()
356 const BYTE* bEnd = p + len; in XXH32_endian_align()
362 bEnd=p=(const BYTE*)(size_t)16; in XXH32_endian_align()
367 const BYTE* const limit = bEnd - 15; in XXH32_endian_align()
461 { const BYTE* p = (const BYTE*)input; in XXH32_update_endian()
462 const BYTE* const bEnd = p + len; in XXH32_update_endian()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/third_party/xxhash/
Dxxhash.c147 typedef uint8_t BYTE; typedef
151 typedef unsigned char BYTE; typedef
222 … const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ in XXH_isLittleEndian()
295 const BYTE* p = (const BYTE*)ptr; in XXH32_finalize()
355 const BYTE* p = (const BYTE*)input; in XXH32_endian_align()
356 const BYTE* bEnd = p + len; in XXH32_endian_align()
362 bEnd=p=(const BYTE*)(size_t)16; in XXH32_endian_align()
367 const BYTE* const limit = bEnd - 15; in XXH32_endian_align()
461 { const BYTE* p = (const BYTE*)input; in XXH32_update_endian()
462 const BYTE* const bEnd = p + len; in XXH32_update_endian()
[all …]
/third_party/skia/third_party/externals/libpng/contrib/visupng/
DVisualPng.c57 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
58 BYTE **ppDiData, int cxWinSize, int cyWinSize,
59 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
63 BYTE *pDiData, int cxWinSize, int cyWinSize);
66 BYTE *pDiData, int cxWinSize, int cyWinSize,
67 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
157 static BYTE *pbImage; in WndProc()
165 static BYTE *pDib = NULL; in WndProc()
166 static BYTE *pDiData = NULL; in WndProc()
705 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
[all …]
/third_party/flutter/skia/third_party/externals/libpng/contrib/visupng/
DVisualPng.c57 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
58 BYTE **ppDiData, int cxWinSize, int cyWinSize,
59 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
63 BYTE *pDiData, int cxWinSize, int cyWinSize);
66 BYTE *pDiData, int cxWinSize, int cyWinSize,
67 BYTE *pbImage, int cxImgSize, int cyImgSize, int cImgChannels,
157 static BYTE *pbImage; in WndProc()
165 static BYTE *pDib = NULL; in WndProc()
166 static BYTE *pDiData = NULL; in WndProc()
705 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
[all …]
/third_party/FatFs/documents/res/
Dapp4.c37 BYTE pdrv, /* Physical drive number to be checked (all data on the drive will be lost) */ in test_diskio()
46 BYTE *pbuff = (BYTE*)buff; in test_diskio()
120 for (n = 0, pn(pns); n < sz_sect; n++) pbuff[n] = (BYTE)pn(0); in test_diskio()
146 for (n = 0, pn(pns); n < sz_sect && pbuff[n] == (BYTE)pn(0); n++) ; in test_diskio()
159 for (n = 0, pn(pns); n < (UINT)(sz_sect * ns); n++) pbuff[n] = (BYTE)pn(0); in test_diskio()
185 for (n = 0, pn(pns); n < (UINT)(sz_sect * ns) && pbuff[n] == (BYTE)pn(0); n++) ; in test_diskio()
199 for (n = 0, pn(pns); n < sz_sect; n++) pbuff[n+3] = (BYTE)pn(0); in test_diskio()
225 for (n = 0, pn(pns); n < sz_sect && pbuff[n+5] == (BYTE)pn(0); n++) ; in test_diskio()
237 for (n = 0, pn(pns); n < (UINT)(sz_sect * 2); n++) pbuff[n] = (BYTE)pn(0); in test_diskio()
279 for (n = 0, pn(pns); pbuff[n] == (BYTE)pn(0) && n < (UINT)(sz_sect * 2); n++) ; in test_diskio()
/third_party/mesa3d/src/glx/apple/
Dappledristr.h59 BYTE type; /* X_Reply */
84 BYTE type; /* X_Reply */
112 BYTE type;
138 BYTE type; /* X_Reply */
163 BYTE type; /* always eventBase + event type */
164 BYTE kind;
192 BYTE type;
193 BYTE data1;
230 BYTE type; /*1 */
/third_party/lz4/programs/
Ddatagen.c52 typedef BYTE litDistribTable[LTSIZE];
74 BYTE const firstChar = ld <= 0.0 ? 0 : '('; in RDG_fillLiteralDistrib()
75 BYTE const lastChar = ld <= 0.0 ? 255 : '}'; in RDG_fillLiteralDistrib()
76 BYTE character = ld <= 0.0 ? 0 : '0'; in RDG_fillLiteralDistrib()
92 static BYTE RDG_genChar(U32* seed, const litDistribTable lt) in RDG_genChar()
104 BYTE* buffPtr = (BYTE*)buffer; in RDG_genBlock()
167 BYTE buff[RDG_DICTSIZE + RDG_BLOCKSIZE]; in RDG_genOut()
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dgstmfvideobuffer.cpp86 BYTE * data, DWORD length, IMFMediaBuffer ** buffer) in CreateInstanceWrapped()
131 data_ = (BYTE *) g_malloc0 (GST_VIDEO_INFO_SIZE (info_)); in Initialize()
140 IGstMFVideoBuffer::InitializeWrapped (GstVideoInfo * info, BYTE * data, in InitializeWrapped()
255 IGstMFVideoBuffer::Lock (BYTE ** buffer, DWORD * max_length, in Lock()
276 contiguous_data_ = (BYTE *) g_malloc0 (contiguous_len_); in Lock()
359 IGstMFVideoBuffer::Lock2D (BYTE ** buffer, LONG * pitch) in Lock2D()
396 IGstMFVideoBuffer::GetScanline0AndPitch (BYTE ** buffer, LONG * pitch) in GetScanline0AndPitch()
439 IGstMFVideoBuffer::ContiguousCopyTo (BYTE * dest_buffer, in ContiguousCopyTo()
448 IGstMFVideoBuffer::ContiguousCopyFrom (const BYTE * src_buffer, in ContiguousCopyFrom()
459 IGstMFVideoBuffer::ContiguousCopyToUnlocked (BYTE * dest_buffer, in ContiguousCopyToUnlocked()
[all …]
/third_party/libdrm/tests/ttmtest/src/
Dxf86dristr.h69 BYTE type; /* X_Reply */
96 BYTE type; /* X_Reply */
125 BYTE type; /* X_Reply */
152 BYTE type;
188 BYTE type; /* X_Reply */
216 BYTE type; /* X_Reply */
254 BYTE type; /* X_Reply */
292 BYTE type; /* X_Reply */
322 BYTE type; /* X_Reply */
349 BYTE type;
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/core/windows/
DSDL_xinput.h106 BYTE bLeftTrigger;
107 BYTE bRightTrigger;
123 BYTE BatteryType;
124 BYTE BatteryLevel;
150 BYTE devType,

12345678910>>...29