| /f-stack/freebsd/contrib/zstd/lib/common/ |
| H A D | mem.h | 54 typedef uint16_t U16; typedef 69 typedef unsigned short U16; 92 MEM_STATIC U16 MEM_read16(const void* memPtr); 102 MEM_STATIC U16 MEM_readLE16(const void* memPtr); 166 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 171 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 181 typedef struct { U16 v; } unalign16; 207 MEM_STATIC U16 MEM_read16(const void* memPtr) in MEM_read16() 288 MEM_STATIC U16 MEM_readLE16(const void* memPtr) in MEM_readLE16() 294 return (U16)(p[0] + (p[1]<<8)); in MEM_readLE16() [all …]
|
| H A D | fse.h | 516 const U16* u16ptr = (const U16*) ptr; in FSE_initCState() 532 const U16* stateTable = (const U16*)(statePtr->stateTable); in FSE_initCState2() 542 const U16* const stateTable = (const U16*)(statePtr->stateTable); in FSE_encodeSymbol() 591 U16 tableLog; 592 U16 fastMode;
|
| H A D | fse_decompress.c | 75 U16* symbolNext = (U16*)workSpace; in FSE_buildDTable_internal() 89 DTableH.tableLog = (U16)tableLog; in FSE_buildDTable_internal() 170 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_internal() 220 DTableH->tableLog = (U16)nbBits; in FSE_buildDTable_raw()
|
| H A D | zstd_internal.h | 351 U16 litLength; 352 U16 matchLength;
|
| H A D | huf.h | 140 U16 val;
|
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | fse_compress.c | 74 U16* const tableU16 = ( (U16*) ptr) + 2; in FSE_buildCTable_wksp() 87 tableU16[-2] = (U16) tableLog; in FSE_buildCTable_wksp() 88 tableU16[-1] = (U16) maxSymbolValue; in FSE_buildCTable_wksp() 130 …tableU16[cumul[s]++] = (U16) (tableSize+u); /* TableU16 : sorted by symbol order; gives next sta… in FSE_buildCTable_wksp() 507 U16* const tableU16 = ( (U16*) ptr) + 2; in FSE_buildCTable_raw() 516 tableU16[-2] = (U16) nbBits; in FSE_buildCTable_raw() 517 tableU16[-1] = (U16) maxSymbolValue; in FSE_buildCTable_raw() 521 tableU16[s] = (U16)(tableSize + s); in FSE_buildCTable_raw() 537 U16* tableU16 = ( (U16*) ptr) + 2; in FSE_buildCTable_rle() 542 tableU16[-2] = (U16) 0; in FSE_buildCTable_rle() [all …]
|
| H A D | huf_compress.c | 175 U16 valPerRank[HUF_TABLELOG_MAX+2] = {0}; in HUF_readCTable() 179 { U16 min = 0; in HUF_readCTable() 203 U16 parent; 438 huffNode[lowS].parent = huffNode[lowS-1].parent = (U16)nodeNb; in HUF_buildTree() 448 huffNode[n1].parent = huffNode[n2].parent = (U16)nodeNb; in HUF_buildTree() 476 U16 nbPerRank[HUF_TABLELOG_MAX+1] = {0}; in HUF_buildCTableFromTree() 477 U16 valPerRank[HUF_TABLELOG_MAX+1] = {0}; in HUF_buildCTableFromTree() 482 { U16 min = 0; in HUF_buildCTableFromTree() 675 MEM_writeLE16(ostart, (U16)cSize); in HUF_compress4X_usingCTable_internal() 684 MEM_writeLE16(ostart+2, (U16)cSize); in HUF_compress4X_usingCTable_internal() [all …]
|
| H A D | zstd_compress_literals.c | 29 MEM_writeLE16(ostart, (U16)((U32)set_basic + (1<<2) + (srcSize<<4))); in ZSTD_noCompressLiterals() 56 MEM_writeLE16(ostart, (U16)((U32)set_rle + (1<<2) + (srcSize<<4))); in ZSTD_compressRleLiteralsBlock()
|
| H A D | zstd_compress_sequences.c | 48 U16 const* u16ptr = (U16 const*)ptr; in ZSTD_getFSEMaxSymbolValue()
|
| H A D | zstd_compress_internal.h | 539 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq() 550 seqStorePtr->sequences[0].matchLength = (U16)mlBase; in ZSTD_storeSeq()
|
| /f-stack/freebsd/contrib/zstd/lib/legacy/ |
| H A D | zstd_v01.c | 172 typedef uint16_t U16; typedef 229 static U16 FSE_read16(const void* memPtr) { return *(const U16*) memPtr; } in FSE_read16() 395 U16 tableLog; 396 U16 fastMode; 941 U16 val; 947 U16 parent; 1074 const U16* DTable) in HUF_decompress_usingDTable() 1091 const U16* jumpTable = (const U16*)cSrc; in HUF_decompress_usingDTable() 1289 typedef uint16_t U16; typedef 1363 static U16 ZSTD_read16(const void* p) { U16 r; memcpy(&r, p, sizeof(r)); return r; } in ZSTD_read16() [all …]
|
| H A D | zstd_v03.c | 99 typedef uint16_t U16; typedef 107 typedef unsigned short U16; 154 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 158 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 208 return (U16)(p[0] + (p[1]<<8)); in MEM_readLE16() 706 U16 tableLog; 707 U16 fastMode; 1121 DTableH.tableLog = (U16)tableLog; in FSE_buildDTable() 1162 DTableH.fastMode = (U16)noLarge; in FSE_buildDTable() 1330 DTableH->tableLog = (U16)nbBits; in FSE_buildDTable_raw() [all …]
|
| H A D | zstd_v04.c | 61 typedef uint16_t U16; typedef 69 typedef unsigned short U16; 125 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 129 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 178 return (U16)(p[0] + (p[1]<<8)); in MEM_readLE16() 879 U16 tableLog; 880 U16 fastMode; 1098 DTableH.tableLog = (U16)tableLog; in FSE_buildDTable() 1139 DTableH.fastMode = (U16)noLarge; in FSE_buildDTable() 1309 DTableH->tableLog = (U16)nbBits; in FSE_buildDTable_raw() [all …]
|
| H A D | zstd_v06.c | 91 typedef uint16_t U16; typedef 146 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 150 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 584 U16* litLengthStart; 585 U16* litLength; 587 U16* matchLengthStart; 588 U16* matchLength; 1101 U16 tableLog; 1102 U16 fastMode; 2099 const U16* DTable) in HUFv06_decompress1X2_usingDTable() [all …]
|
| H A D | zstd_v02.c | 98 typedef uint16_t U16; typedef 106 typedef unsigned short U16; 153 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 157 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 206 return (U16)(p[0] + (p[1]<<8)); in MEM_readLE16() 704 U16 tableLog; 705 U16 fastMode; 1120 DTableH.tableLog = (U16)tableLog; in FSE_buildDTable() 1161 DTableH.fastMode = (U16)noLarge; in FSE_buildDTable() 1329 DTableH->tableLog = (U16)nbBits; in FSE_buildDTable_raw() [all …]
|
| H A D | zstd_v05.c | 89 typedef uint16_t U16; typedef 97 typedef unsigned short U16; 144 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 148 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 210 return (U16)(p[0] + (p[1]<<8)); in MEM_readLE16() 995 U16 tableLog; 996 U16 fastMode; 1265 DTableH.fastMode = (U16)noLarge; in FSEv05_buildDTable() 1417 DTableH->tableLog = (U16)nbBits; in FSEv05_buildDTable_raw() 1963 const U16* DTable) in HUFv05_decompress1X2_usingDTable() [all …]
|
| H A D | zstd_v07.c | 251 typedef uint16_t U16; typedef 259 typedef unsigned short U16; 306 MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } in MEM_read16() 310 MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in MEM_write16() 865 U16 tableLog; 866 U16 fastMode; 1580 DTableH->tableLog = (U16)nbBits; in FSEv07_buildDTable_raw() 2819 U16* litLengthStart; 2820 U16* litLength; 2822 U16* matchLengthStart; [all …]
|
| /f-stack/freebsd/contrib/zstd/lib/dictBuilder/ |
| H A D | fastcover.c | 151 U16* segmentFreqs) { in FASTCOVER_selectSegment() 396 U16* segmentFreqs) in FASTCOVER_buildDictionary() 474 U16* segmentFreqs = (U16 *)calloc(((U64)1 << ctx->f), sizeof(U16)); in FASTCOVER_tryParameters() 591 U16* segmentFreqs = (U16 *)calloc(((U64)1 << parameters.f), sizeof(U16)); in ZDICT_trainFromBuffer_fastCover()
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | lz4.c | 279 #define U16 uint16_t macro 289 U16 v; 357 { U16 v = A16(p); v = lz4_bswap16(v); d = (s) - v; } 359 { U16 v = (U16)(i); v = lz4_bswap16(v); A16(p) = v; p += 2; } 664 U16 *HashTable = (U16 *) (srt->hashTable); in LZ4_compress64kCtx()
|
| /f-stack/freebsd/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress_internal.h | 68 U16 nextState;
|
| H A D | zstd_decompress_block.c | 377 U16* symbolNext = (U16*)wksp; in ZSTD_buildFSETable_body() 400 symbolNext[s] = (U16)normalizedCounter[s]; in ZSTD_buildFSETable_body() 479 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable_body()
|
| H A D | huf_decompress.c | 520 typedef struct { U16 sequence; BYTE nbBits; BYTE length; } HUF_DEltX2; /* double-symbols decoding … 531 U32 nbBitsBaseline, U16 baseSeq) in HUF_fillDTableX2Level2() 559 MEM_writeLE16(&(DElt.sequence), (U16)(baseSeq + (symbol << 8))); in HUF_fillDTableX2Level2() 583 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX2()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 1959 const U16* u16ptr = (const U16*) ptr; in FSE_initCState() 1975 const U16* stateTable = (const U16*)(statePtr->stateTable); in FSE_initCState2() 2034 U16 tableLog; 2035 U16 fastMode; 6626 U16 litLength; 7552 U16* const tableU16 = ( (U16*) ptr) + 2; in FSE_buildCTable_wksp() 7983 U16* const tableU16 = ( (U16*) ptr) + 2; in FSE_buildCTable_raw() 8013 U16* tableU16 = ( (U16*) ptr) + 2; in FSE_buildCTable_rle() 8471 U16 val; 8574 U16 parent; [all …]
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/amlogic/ |
| H A D | meson-gxbb-odroidc2.dts | 90 /* U16 RT9179GB */
|
| H A D | meson-g12a-sei510.dts | 39 sound-name-prefix = "U16";
|