Searched refs:tableBase (Results 1 – 2 of 2) sorted by relevance
/external/lz4/lib/ |
D | lz4.c | 427 static void LZ4_putPositionOnHash(const BYTE* p, U32 h, void* tableBase, tableType_t const tableTyp… in LZ4_putPositionOnHash() argument 431 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() 432 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() 433 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() 437 FORCE_INLINE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType, const BYTE… in LZ4_putPosition() argument 440 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition() 443 static const BYTE* LZ4_getPositionOnHash(U32 h, void* tableBase, tableType_t tableType, const BYTE*… in LZ4_getPositionOnHash() argument 445 …if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash() 446 …if (tableType == byU32) { const U32* const hashTable = (U32*) tableBase; return hashTable[h] + src… in LZ4_getPositionOnHash() 447 …{ const U16* const hashTable = (U16*) tableBase; return hashTable[h] + srcBase; } /* default, to… in LZ4_getPositionOnHash() [all …]
|
/external/dng_sdk/source/ |
D | dng_reference.cpp | 1434 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()
|