Home
last modified time | relevance | path

Searched refs:tableType (Results 1 – 15 of 15) sorted by relevance

/external/lz4/lib/
Dlz4.c631 static U32 LZ4_hash4(U32 sequence, tableType_t const tableType) in LZ4_hash4() argument
633 if (tableType == byU16) in LZ4_hash4()
639 static U32 LZ4_hash5(U64 sequence, tableType_t const tableType) in LZ4_hash5() argument
641 const U32 hashLog = (tableType == byU16) ? LZ4_HASHLOG+1 : LZ4_HASHLOG; in LZ4_hash5()
651 LZ4_FORCE_INLINE U32 LZ4_hashPosition(const void* const p, tableType_t const tableType) in LZ4_hashPosition() argument
653 if ((sizeof(reg_t)==8) && (tableType != byU16)) return LZ4_hash5(LZ4_read_ARCH(p), tableType); in LZ4_hashPosition()
654 return LZ4_hash4(LZ4_read32(p), tableType); in LZ4_hashPosition()
657 static void LZ4_clearHash(U32 h, void* tableBase, tableType_t const tableType) in LZ4_clearHash() argument
659 switch (tableType) in LZ4_clearHash()
669 static void LZ4_putIndexOnHash(U32 idx, U32 h, void* tableBase, tableType_t const tableType) in LZ4_putIndexOnHash() argument
[all …]
Dlz4.h568 uint16_t tableType; member
588 unsigned short tableType; member
/external/zstd/lib/decompress/
Dhuf_decompress.c101 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member
168 dtd.tableType = 0; in HUF_readDTableX1_wksp_bmi2()
460 if (dtd.tableType != 0) return ERROR(GENERIC); in HUF_DGEN()
485 if (dtd.tableType != 0) return ERROR(GENERIC); in HUF_decompress4X1_usingDTable()
706 dtd.tableType = 1; in HUF_readDTableX2_wksp()
926 if (dtd.tableType != 1) return ERROR(GENERIC); in HUF_DGEN()
952 if (dtd.tableType != 1) return ERROR(GENERIC); in HUF_decompress4X2_usingDTable()
993 assert(dtd.tableType == 0); in HUF_decompress1X_usingDTable()
997 assert(dtd.tableType == 1); in HUF_decompress1X_usingDTable()
1000 …return dtd.tableType ? HUF_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTa… in HUF_decompress1X_usingDTable()
[all …]
/external/icu/icu4c/source/tools/makeconv/
Dmakeconv.cpp117 int32_t tableType; in writeConverterData() local
124 tableType=TABLE_NONE; in writeConverterData()
126 tableType|=TABLE_BASE; in writeConverterData()
129 tableType|=TABLE_EXT; in writeConverterData()
153 if(tableType&TABLE_BASE) { in writeConverterData()
154 size += data->cnvData->write(data->cnvData, &data->staticData, mem, tableType); in writeConverterData()
156 if(tableType&TABLE_EXT) { in writeConverterData()
157 size += data->extData->write(data->extData, &data->staticData, mem, tableType); in writeConverterData()
Dmakeconv.h59 UNewDataMemory *pData, int32_t tableType);
Dgencnvex.c44 UNewDataMemory *pData, int32_t tableType);
119 UNewDataMemory *pData, int32_t tableType) { in CnvExtWrite() argument
126 if(tableType&TABLE_BASE) { in CnvExtWrite()
Dgenmbcs.cpp105 UNewDataMemory *pData, int32_t tableType);
1424 UNewDataMemory *pData, int32_t tableType) { in MBCSWrite() argument
1545 if(tableType&TABLE_EXT) { in MBCSWrite()
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp393 UnicodeString tableType = parseLine.group(3, status); in testConfData() local
395 if (tableType.indexOf("SL") >= 0) { in testConfData()
397 } else if (tableType.indexOf("SA") >= 0) { in testConfData()
399 } else if (tableType.indexOf("ML") >= 0) { in testConfData()
401 } else if (tableType.indexOf("MA") >= 0) { in testConfData()
/external/fonttools/Lib/fontTools/ttLib/tables/
DotTables.py1479 if overflowRecord.tableType == 'GSUB':
1481 elif overflowRecord.tableType == 'GPOS':
1484 lookups = ttf[overflowRecord.tableType].table.LookupList.Lookup
1496 extSubTableClass = lookupTypes[overflowRecord.tableType][extType]
1743 table = ttf[overflowRecord.tableType].table
1760 newExtSubTableClass = lookupTypes[overflowRecord.tableType][extSubTable.__class__.LookupType]
1765 newSubTableClass = lookupTypes[overflowRecord.tableType][subTableType]
1770 newSubTableClass = lookupTypes[overflowRecord.tableType][subTableType]
1778 splitFunc = splitTable[overflowRecord.tableType][subTableType]
1782 overflowRecord.tableType,
DotConverters.py605 def getConverter(self, tableType, lookupType): argument
606 tableClass = self.lookupTypes[tableType][lookupType]
613 def getConverter(self, tableType, lookupType): argument
614 tableClass = self.lookupTypes[tableType][lookupType]
DotBase.py12 self.tableType = overflowTuple[0]
19 …return str((self.tableType, "LookupIndex:", self.LookupListIndex, "SubTableIndex:", self.SubTableI…
/external/zstd/tests/
Dparamgrill.c279 memoTableType_t tableType; member
1418 switch(mt.tableType) { in memoTableGet()
1431 switch(mt.tableType) { in memoTableSet()
1475 mtAll[i].tableType = noMemo; in createMemoTableArray()
1491 mtAll[i].tableType = directMap; in createMemoTableArray()
1494 mtAll[i].tableType = xxhashMap; in createMemoTableArray()
/external/zstd/lib/legacy/
Dzstd_v07.c1764 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member
1799 dtd.tableType = 0; in HUFv07_readDTableX2()
1901 if (dtd.tableType != 0) return ERROR(GENERIC); in HUFv07_decompress1X2_usingDTable()
2023 if (dtd.tableType != 0) return ERROR(GENERIC); in HUFv07_decompress4X2_usingDTable()
2213 dtd.tableType = 1; in HUFv07_readDTableX4()
2313 if (dtd.tableType != 1) return ERROR(GENERIC); in HUFv07_decompress1X4_usingDTable()
2434 if (dtd.tableType != 1) return ERROR(GENERIC); in HUFv07_decompress4X4_usingDTable()
2467 …return dtd.tableType ? HUFv07_decompress1X4_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, … in HUFv07_decompress1X_usingDTable()
2476 …return dtd.tableType ? HUFv07_decompress4X4_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, … in HUFv07_decompress4X_usingDTable()
/external/fonttools/Lib/fontTools/cffLib/
D__init__.py901 def __init__(self, tableType, cachingStats): argument
902 self.tableType = tableType
904 globalState = GlobalState(tableType="VarStore", cachingStats={})
/external/guice/extensions/persist/lib/
Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/ ...