Home
last modified time | relevance | path

Searched refs:tableBase (Results 1 – 2 of 2) sorted by relevance

/external/lz4/lib/
Dlz4.c540 static void LZ4_putIndexOnHash(U32 idx, U32 h, void* tableBase, tableType_t const tableType) in LZ4_putIndexOnHash() argument
547 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash()
548 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash()
553 void* tableBase, tableType_t const tableType, in LZ4_putPositionOnHash() argument
559 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash()
560 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash()
561 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash()
565 LZ4_FORCE_INLINE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType, const … in LZ4_putPosition() argument
568 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition()
577 static U32 LZ4_getIndexOnHash(U32 h, const void* tableBase, tableType_t tableType) in LZ4_getIndexOnHash() argument
[all …]
/external/dng_sdk/source/
Ddng_reference.cpp1434 const dng_hue_sat_map::HSBModify *tableBase = lut.GetConstDeltas (); in RefBaselineHueSatMap() local
1491 const dng_hue_sat_map::HSBModify *entry00 = tableBase + hIndex0 * hueStep + in RefBaselineHueSatMap()
1558 const dng_hue_sat_map::HSBModify *entry00 = tableBase + vIndex0 * valStep + in RefBaselineHueSatMap()