OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tableBase
(Results
1 - 4
of
4
) sorted by null
/external/lz4/lib/
lz4.c
469
static void LZ4_putPositionOnHash(const BYTE* p, U32 h, void*
tableBase
, tableType_t tableType, const BYTE* srcBase)
473
case byPtr: { const BYTE** hashTable = (const BYTE**)
tableBase
; hashTable[h] = p; return; }
474
case byU32: { U32* hashTable = (U32*)
tableBase
; hashTable[h] = (U32)(p-srcBase); return; }
475
case byU16: { U16* hashTable = (U16*)
tableBase
; hashTable[h] = (U16)(p-srcBase); return; }
479
static void LZ4_putPosition(const BYTE* p, void*
tableBase
, tableType_t tableType, const BYTE* srcBase)
482
LZ4_putPositionOnHash(p, h,
tableBase
, tableType, srcBase);
485
static const BYTE* LZ4_getPositionOnHash(U32 h, void*
tableBase
, tableType_t tableType, const BYTE* srcBase)
487
if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**)
tableBase
; return hashTable[h]; }
488
if (tableType == byU32) { U32* hashTable = (U32*)
tableBase
; return hashTable[h] + srcBase; }
489
{ U16* hashTable = (U16*)
tableBase
; return hashTable[h] + srcBase; } /* default, to ensure a return *
[
all
...]
/external/dng_sdk/source/
dng_reference.cpp
1434
const dng_hue_sat_map::HSBModify *
tableBase
= lut.GetConstDeltas ();
1491
const dng_hue_sat_map::HSBModify *entry00 =
tableBase
+ hIndex0 * hueStep +
1558
const dng_hue_sat_map::HSBModify *entry00 =
tableBase
+ vIndex0 * valStep +
[
all
...]
/prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar
/prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar
Completed in 478 milliseconds