OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tableType
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c
141
typedef struct { BYTE maxTableLog; BYTE
tableType
; BYTE tableLog; BYTE reserved; } DTableDesc;
410
dtd.
tableType
= 0;
1259
dtd.
tableType
= 1;
1881
assert(dtd.
tableType
== 0);
1885
assert(dtd.
tableType
== 1);
1888
return dtd.
tableType
? HUF_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, flags) :
1912
assert(dtd.
tableType
== 0);
1916
assert(dtd.
tableType
== 1);
1919
return dtd.
tableType
? HUF_decompress4X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, flags) :
/src/external/bsd/zstd/dist/tests/
paramgrill.c
279
memoTableType_t
tableType
;
1418
switch(mt.
tableType
) {
1431
switch(mt.
tableType
) {
1475
mtAll[i].
tableType
= noMemo;
1491
mtAll[i].
tableType
= directMap;
1494
mtAll[i].
tableType
= xxhashMap;
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v07.c
1705
typedef struct { BYTE maxTableLog; BYTE
tableType
; BYTE tableLog; BYTE reserved; } DTableDesc;
1740
dtd.
tableType
= 0;
1842
if (dtd.
tableType
!= 0) return ERROR(GENERIC);
1964
if (dtd.
tableType
!= 0) return ERROR(GENERIC);
2154
dtd.
tableType
= 1;
2254
if (dtd.
tableType
!= 1) return ERROR(GENERIC);
2375
if (dtd.
tableType
!= 1) return ERROR(GENERIC);
2408
return dtd.
tableType
? HUFv07_decompress1X4_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable) :
2417
return dtd.
tableType
? HUFv07_decompress4X4_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable) :
Completed in 19 milliseconds
Indexes created Mon Mar 30 00:23:01 UTC 2026