Home
last modified time | relevance | path

Searched refs:newIdx (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/recovery/minzip/
H A DHash.c154 int newIdx; in resizeHash() local
157 newIdx = hashValue & (newSize - 1); in resizeHash()
158 while (pNewEntries[newIdx].data != NULL) in resizeHash()
159 newIdx = (newIdx + 1) & (newSize - 1); in resizeHash()
161 pNewEntries[newIdx].hashValue = hashValue; in resizeHash()
162 pNewEntries[newIdx].data = data; in resizeHash()
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minzip/
H A DHash.c153 int newIdx; in resizeHash() local
156 newIdx = hashValue & (newSize-1); in resizeHash()
157 while (pNewEntries[newIdx].data != NULL) in resizeHash()
158 newIdx = (newIdx + 1) & (newSize-1); in resizeHash()
160 pNewEntries[newIdx].hashValue = hashValue; in resizeHash()
161 pNewEntries[newIdx].data = data; in resizeHash()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/a3dlut/
H A Drk_aiq_a3dlut_algo.cpp87 static void StableIdxEstimation(struct list_head *l, int listSize, int Num, int *newIdx) in StableIdxEstimation() argument
109 *newIdx = i; in StableIdxEstimation()