Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c657 static void LZ4_clearHash(U32 h, void* tableBase, tableType_t const tableType) in LZ4_clearHash() argument
663 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash()
664 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash()
665 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash()
669 static void LZ4_putIndexOnHash(U32 idx, U32 h, void* tableBase, tableType_t const tableType) in LZ4_putIndexOnHash() argument
676 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash()
677 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash()
682 void* tableBase, tableType_t const tableType, in LZ4_putPositionOnHash() argument
688 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash()
689 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash()
[all …]
/external/llvm-project/lld/wasm/
DSyntheticSections.cpp148 uint32_t tableSize = config->tableBase + out.elemSec->numEntries(); in writeBody()
217 uint32_t tableSize = config->tableBase + out.elemSec->numEntries(); in writeBody()
310 writeUleb128(os, WasmSym::tableBase->getGlobalIndex(), "__table_base"); in generateRelocationCode()
389 sym->setTableIndex(config->tableBase + indirectFunctions.size()); in addEntry()
401 initExpr.Value.Global = WasmSym::tableBase->getGlobalIndex(); in writeBody()
404 initExpr.Value.Int32 = config->tableBase; in writeBody()
409 uint32_t tableIndex = config->tableBase; in writeBody()
DConfig.h90 uint32_t tableBase = 0; member
DSymbols.cpp82 UndefinedGlobal *WasmSym::tableBase; member in lld::wasm::WasmSym
DInputChunks.cpp409 baseSymbol = WasmSym::tableBase; in generateRelocationCode()
DDriver.cpp639 WasmSym::tableBase = createUndefinedGlobal("__table_base", &globalTypeI32); in createSyntheticSymbols()
641 WasmSym::tableBase->markLive(); in createSyntheticSymbols()
DSymbols.h501 static UndefinedGlobal *tableBase; member
DWriter.cpp1225 config->tableBase = 1; in run()
1227 WasmSym::definedTableBase->setVirtualAddress(config->tableBase); in run()
DInputFiles.cpp224 index -= config->tableBase; in calcNewValue()
/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()