/third_party/lz4/lib/ |
H A D | lz4.c | 302 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* in LZ4_wildCopy8() [all...] |
H A D | lz4hc.c | 100 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* cons in LZ4HC_countPattern() [all...] |
H A D | lz4frame.c | 170 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)(value3 in LZ4F_writeLE32() [all...] |
H A D | xxhash.c | 147 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* cons in XXH32_endian_align() [all...] |
/third_party/FatFs/source/ |
H A D | diskio.h | 22 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 pdr [all...] |
H A D | ff.h | 62 static const BYTE LfnOfs[] = {1,3,5,7,9,14,16,18,20,22,24,28,30}; /* FAT: Offset of LFN characters in the directory entry */ 97 BYTE di; /* Physics disk id */ 98 BYTE pd; /* Physical drive number */ 99 BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */ 178 #define DIR_Attr 11 /* Attribute (BYTE) */ 179 #define DIR_NTres 12 /* Lower case flag (BYTE) */ 180 #define DIR_CrtTime10 13 /* Created time sub-second (BYTE) */ 187 #define LDIR_Ord 0 /* LFN: LFN order and LLE flag (BYTE) */ 188 #define LDIR_Attr 11 /* LFN: LFN attribute (BYTE) */ 189 #define LDIR_Type 12 /* LFN: Entry type (BYTE) */ [all...] |
H A D | diskio.c | 39 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 cm in disk_ioctl() [all...] |
H A D | ffsystem.c | 26 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()
|
H A D | ff.c | 87 #define BPB_SecPerClus 13 /* Cluster size [sector] (BYTE) */ 89 #define BPB_NumFATs 16 /* Number of FATs (BYTE) */ 92 #define BPB_Media 21 /* Media descriptor byte (BYTE) */ 98 #define BS_DrvNum 36 /* Physical drive number for int13h (BYTE) */ 99 #define BS_NTres 37 /* WindowsNT error flag (BYTE) */ 100 #define BS_BootSig 38 /* Extended boot signature (BYTE) */ 113 #define BS_DrvNum32 64 /* FAT32: Physical drive number for int13h (BYTE) */ 114 #define BS_NTres32 65 /* FAT32: Error flag (BYTE) */ 115 #define BS_BootSig32 66 /* FAT32: Extended boot signature (BYTE) */ 167 #define ABORT(fs, res) { fp->err = (BYTE)(re 5477 f_forward( FIL* fp, UINT (*func)(const BYTE*,UINT), UINT btf, UINT* bf ) global() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/ |
H A D | nv_control.h | 123 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 typ [all...] |
/third_party/lame/Dll/ |
H A D | BladeMP3EncDLL.h | 138 BYTE byMode; // BE_MP3_MODE_STEREO, BE_MP3_MODE_DUALCHANNEL, BE_MP3_MODE_MONO 180 WORD nQuality; // Quality Setting, HIGH BYTE should be NOT LOW byte, otherwhise quality=5 183 BYTE btReserved[255-4*sizeof(DWORD) - sizeof( WORD )]; 190 BYTE byMode; 192 BYTE byEncodingMethod; 205 BYTE byDLLMajorVersion; 206 BYTE byDLLMinorVersion; 210 BYTE byMajorVersion; 211 BYTE byMinorVersion; 215 BYTE byDa [all...] |
/third_party/lz4/tests/ |
H A D | frametest.c | 57 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_ran in FUZ_fillCompressibleNoiseBuffer() [all...] |
/third_party/glfw/deps/mingw/ |
H A D | xinput.h | 165 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/ |
H A D | xxhash.c | 147 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* cons in XXH32_endian_align() [all...] |
/third_party/lz4/programs/ |
H A D | datagen.c | 52 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/mesa3d/src/glx/apple/ |
H A D | appledristr.h | 59 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/FatFs/documents/res/ |
H A D | app4.c | 37 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)p in test_diskio() [all...] |
/third_party/libdrm/tests/ttmtest/src/ |
H A D | xf86dristr.h | 69 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 typ [all...] |
/third_party/skia/third_party/externals/libpng/contrib/visupng/ |
H A D | VisualPng.c | 57 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 **ppDi [all...] |
/third_party/mesa3d/src/glx/windows/ |
H A D | windowsdristr.h | 45 BYTE type; /* X_Reply */ 70 BYTE type; /* X_Reply */ 88 BYTE type; /* always eventBase + event type */ 89 BYTE kind; 113 BYTE type; /* X_Reply */ 139 BYTE type; /* X_Reply */
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/truetype/ |
H A D | SimpleGlyph.java | 74 this.instructionsOffset + this.instructionSize * FontData.DataSize.BYTE.size(); in initialize() 81 this.flagsOffset + this.flagByteCount * FontData.DataSize.BYTE.size(); in initialize() 83 this.xCoordinatesOffset + this.xByteCount * FontData.DataSize.BYTE.size(); in initialize() 94 + (this.instructionSize * FontData.DataSize.BYTE.size()) in initialize() 95 + (flagByteCount * FontData.DataSize.BYTE.size()) in initialize() 96 + (xByteCount * FontData.DataSize.BYTE.size()) in initialize() 97 + (yByteCount * FontData.DataSize.BYTE.size()); in initialize() 178 return this.data.readUByte(this.flagsOffset + index * FontData.DataSize.BYTE.size()); in flagAsInt()
|
/third_party/FreeBSD/sys/crypto/rijndael/ |
H A D | rijndael-api-fst.c | 35 typedef uint8_t BYTE; typedef 37 int rijndael_makeKey(keyInstance *key, BYTE direction, int keyLen, in rijndael_makeKey() 70 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) { in rijndael_cipherInit() 85 const BYTE *input, int inputLen, BYTE *outBuffer) { in rijndael_blockEncrypt() 201 const BYTE *input, int inputOctets, BYTE *outBuffer) { in rijndael_padEncrypt() 251 block[i] = (BYTE)padLen ^ iv[i]; in rijndael_padEncrypt() 265 const BYTE *input, int inputLen, BYTE *outBuffe in rijndael_blockDecrypt() [all...] |
/third_party/icu/icu4c/source/samples/layout/ |
H A D | UnicodeReader.cpp | 24 #define BYTE(b) (((int) b) & 0xFF) macro 79 BYTE(startBytes[0]), BYTE(startBytes[1]), BYTE(startBytes[2]), BYTE(startBytes[3])); in readFile()
|
/third_party/skia/third_party/externals/icu/source/samples/layout/ |
H A D | UnicodeReader.cpp | 24 #define BYTE(b) (((int) b) & 0xFF) macro 79 BYTE(startBytes[0]), BYTE(startBytes[1]), BYTE(startBytes[2]), BYTE(startBytes[3])); in readFile()
|
/third_party/libuv/src/win/ |
H A D | process-stdio.c | 171 BYTE** buffer_ptr) { in uv__stdio_create() 172 BYTE* buffer; in uv__stdio_create() 187 buffer = (BYTE*) uv__malloc(CHILD_STDIO_SIZE(count)); in uv__stdio_create() 357 void uv__stdio_destroy(BYTE* buffer) { in uv__stdio_destroy() 372 void uv__stdio_noinherit(BYTE* buffer) { in uv__stdio_noinherit() 385 int uv__stdio_verify(BYTE* buffer, WORD size) { in uv__stdio_verify() 409 WORD uv__stdio_size(BYTE* buffer) { in uv__stdio_size() 414 HANDLE uv__stdio_handle(BYTE* buffer, int fd) { in uv__stdio_handle()
|