HomeSort by: relevance | last modified time | path
    Searched defs:tableSize (Results 1 - 16 of 16) sorted by relevancy

  /src/external/bsd/zstd/dist/programs/
util.h 246 size_t tableSize; /* nb of fileNames */
266 UTIL_assembleFileNamesTable(const char** filenames, size_t tableSize, char* buf);
302 FileNamesTable* UTIL_allocateFileNamesTable(size_t tableSize);
  /src/external/bsd/zstd/dist/tests/fuzz/
huf_round_trip.c 94 size_t const tableSize = HUF_writeCTable_wksp(cBuf, cBufSize, ct, maxSymbol, tableLog, wksp, wkspSize);
95 if (ERR_isError(tableSize)) {
99 FUZZ_ZASSERT(tableSize);
101 FUZZ_ZASSERT(HUF_readDTableX1_wksp(dt, cBuf, tableSize, wksp, wkspSize, flags));
103 size_t const ret = HUF_readDTableX2_wksp(dt, cBuf, tableSize, wksp, wkspSize, flags);
105 FUZZ_ZASSERT(HUF_readDTableX1_wksp(dt, cBuf, tableSize, wksp, wkspSize, flags));
  /src/sys/arch/shark/include/
profileio.h 82 unsigned int tableSize; /* total table size in entries */
106 unsigned int tableSize; /* the total table size in entries */
132 unsigned int tableSize; /* the total table size in entries */
  /src/external/bsd/zstd/dist/lib/common/
fse_decompress.c 66 U32 const tableSize = 1 << tableLog;
67 U32 highThreshold = tableSize-1;
92 if (highThreshold == tableSize - 1) {
93 size_t const tableMask = tableSize-1;
94 size_t const step = FSE_TABLESTEP(tableSize);
124 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */
125 for (s = 0; s < (size_t)tableSize; s += unroll) {
136 U32 const tableMask = tableSize-1;
137 U32 const step = FSE_TABLESTEP(tableSize);
151 for (u=0; u<tableSize; u++)
    [all...]
  /src/external/bsd/zstd/dist/contrib/seekable_format/
zstdseek_decompress.c 391 U32 const tableSize = sizePerEntry * numFrames;
392 U32 const frameSize = tableSize + ZSTD_seekTableFooterSize + ZSTD_SKIPPABLEHEADERSIZE;
  /src/external/bsd/zstd/dist/lib/compress/
fse_compress.c 72 U32 const tableSize = 1 << tableLog;
73 U32 const tableMask = tableSize - 1;
76 void* const FSCT = ((U32*)ptr) + 1 /* header */ + (tableLog ? tableSize>>1 : 1) ;
78 U32 const step = FSE_TABLESTEP(tableSize);
82 FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)(cumul + (maxSV1+1)); /* size = tableSize */
84 U32 highThreshold = tableSize-1;
97 ZSTD_memset(tableSymbol, 0, sizeof(*tableSymbol) * tableSize); /* useless initialization, just to keep scan-build happy */
112 cumul[maxSV1] = (U16)(tableSize+1);
116 if (highThreshold == tableSize - 1) {
120 BYTE* const spread = tableSymbol + tableSize; /* size = tableSize + 8 (may write beyond tableSize) *
    [all...]
  /src/external/bsd/wpa/dist/src/utils/
http_curl.c 308 ASN1_INTEGER *tableSize;
382 ASN1_IMP(LogotypeImageResolution, d.tableSize, ASN1_INTEGER, 2)
656 val = ASN1_INTEGER_get(info->resolution->d.tableSize);
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 492 U32 const tableSize = 1 << tableLog;
496 U32 highThreshold = tableSize - 1;
523 assert(tableSize <= 512);
529 if (highThreshold == tableSize - 1) {
530 size_t const tableMask = tableSize-1;
531 size_t const step = FSE_TABLESTEP(tableSize);
564 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */
565 for (s = 0; s < (size_t)tableSize; s += unroll) {
576 U32 const tableMask = tableSize-1;
577 U32 const step = FSE_TABLESTEP(tableSize);
    [all...]
  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 358 const U32 tableSize = table->pos;
363 U32 u; for (u=1; u<tableSize; u++) {
381 for (u=1; u<tableSize; u++) {
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 347 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
363 const U32 tableSize = 1 << tableLog;
364 const U32 tableMask = tableSize-1;
365 const U32 step = FSE_tableStep(tableSize);
368 U32 highThreshold = tableSize-1;
410 for (i=0; i<tableSize; i++)
415 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
578 const unsigned tableSize = 1 << nbBits
    [all...]
zstd_v03.c 1032 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1040 const U32 tableSize = 1 << tableLog;
1041 const U32 tableMask = tableSize-1;
1042 const U32 step = FSE_tableStep(tableSize);
1045 U32 highThreshold = tableSize-1;
1087 for (i=0; i<tableSize; i++)
1092 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1255 const unsigned tableSize = 1 << nbBits
    [all...]
zstd_v02.c 1032 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1040 const U32 tableSize = 1 << tableLog;
1041 const U32 tableMask = tableSize-1;
1042 const U32 step = FSE_tableStep(tableSize);
1045 U32 highThreshold = tableSize-1;
1087 for (i=0; i<tableSize; i++)
1092 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1255 const unsigned tableSize = 1 << nbBits
    [all...]
zstd_v04.c 1014 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1022 const U32 tableSize = 1 << tableLog;
1023 const U32 tableMask = tableSize-1;
1024 const U32 step = FSE_tableStep(tableSize);
1027 U32 highThreshold = tableSize-1;
1070 for (i=0; i<tableSize; i++)
1075 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1240 const unsigned tableSize = 1 << nbBits
    [all...]
zstd_v05.c 1142 static U32 FSEv05_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1162 const U32 tableSize = 1 << tableLog;
1163 const U32 tableMask = tableSize-1;
1164 const U32 step = FSEv05_tableStep(tableSize);
1167 U32 highThreshold = tableSize-1;
1202 for (i=0; i<tableSize; i++) {
1206 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1352 const unsigned tableSize = 1 << nbBits
    [all...]
zstd_v06.c 1145 #define FSEv06_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3)
1409 U32 const tableSize = 1 << tableLog;
1410 U32 highThreshold = tableSize-1;
1434 { U32 const tableMask = tableSize-1;
1435 U32 const step = FSEv06_TABLESTEP(tableSize);
1450 for (u=0; u<tableSize; u++) {
1454 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
1491 const unsigned tableSize = 1 << nbBits
    [all...]
zstd_v07.c 910 #define FSEv07_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3)
1430 U32 const tableSize = 1 << tableLog;
1431 U32 highThreshold = tableSize-1;
1455 { U32 const tableMask = tableSize-1;
1456 U32 const step = FSEv07_TABLESTEP(tableSize);
1471 for (u=0; u<tableSize; u++) {
1475 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
1512 const unsigned tableSize = 1 << nbBits
    [all...]

Completed in 32 milliseconds