Home
last modified time | relevance | path

Searched refs:bestIndex (Results 1 – 18 of 18) sorted by relevance

/external/icu/icu4c/source/common/
Dlocdistance.cpp121 int32_t bestIndex = -1; in getBestIndexAndDistance() local
223 bestIndex = slIndex; in getBestIndexAndDistance()
233 bestIndex = slIndex; in getBestIndexAndDistance()
237 } else if (shiftedDistance == shiftedThreshold && bestIndex >= 0) { in getBestIndexAndDistance()
242 supported, *supportedLSRs[bestIndex], bestLikelyInfo); in getBestIndexAndDistance()
247 bestIndex = slIndex; in getBestIndexAndDistance()
253 return bestIndex >= 0 ? in getBestIndexAndDistance()
254 (bestIndex << INDEX_SHIFT) | shiftedThreshold : in getBestIndexAndDistance()
/external/skqp/src/gpu/
DGrRectanizer_skyline.cpp21 int bestIndex = -1; in addRect() local
27 bestIndex = i; in addRect()
36 if (-1 != bestIndex) { in addRect()
37 this->addSkylineLevel(bestIndex, bestX, bestY, width, height); in addRect()
/external/skia/src/gpu/
DGrRectanizerSkyline.cpp23 int bestIndex = -1; in addRect() local
29 bestIndex = i; in addRect()
38 if (-1 != bestIndex) { in addRect()
39 this->addSkylineLevel(bestIndex, bestX, bestY, width, height); in addRect()
/external/libopus/silk/
DNLSF_encode.c48 opus_int i, s, ind1, bestIndex, prob_Q8, bits_q7; in silk_NLSF_encode() local
113 silk_insertion_sort_increasing( RD_Q25, &bestIndex, nSurvivors, 1 ); in silk_NLSF_encode()
115 NLSFIndices[ 0 ] = (opus_int8)tempIndices1[ bestIndex ]; in silk_NLSF_encode()
116 …silk_memcpy( &NLSFIndices[ 1 ], &tempIndices2[ bestIndex * MAX_LPC_ORDER ], psNLSF_CB->order * siz… in silk_NLSF_encode()
/external/webrtc/modules/audio_coding/codecs/ilbc/
Dcb_search.c61 size_t bestIndex=0; in WebRtcIlbcfix_CbSearch() local
194 bestIndex=0; in WebRtcIlbcfix_CbSearch()
231 &CritMax, &shTotMax, &bestIndex, &bestGain); in WebRtcIlbcfix_CbSearch()
233 sInd = ((CB_RESRANGE >> 1) > bestIndex) ? in WebRtcIlbcfix_CbSearch()
234 0 : (bestIndex - (CB_RESRANGE >> 1)); in WebRtcIlbcfix_CbSearch()
284 &CritMax, &shTotMax, &bestIndex, &bestGain); in WebRtcIlbcfix_CbSearch()
286 index[stage] = (int16_t)bestIndex; in WebRtcIlbcfix_CbSearch()
Dcb_search_core.c30 size_t *bestIndex, /* (o) Index that corresponds to in WebRtcIlbcfix_CbSearchCore() argument
106 *bestIndex = WebRtcSpl_MaxIndexW32(Crit, range); in WebRtcIlbcfix_CbSearchCore()
107 *bestCrit = Crit[*bestIndex]; in WebRtcIlbcfix_CbSearchCore()
Dcb_update_best_index.c32 size_t *bestIndex, /* (i/o) Index that corresponds to in WebRtcIlbcfix_CbUpdateBestIndex() argument
84 *bestIndex = IndexNew; in WebRtcIlbcfix_CbUpdateBestIndex()
Dcb_search_core.h32 size_t* bestIndex, /* (o) Index that corresponds to
Dcb_update_best_index.h33 size_t* bestIndex, /* (i/o) Index that corresponds to
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DLocaleDistance.java259 int bestIndex = -1; in getBestIndexAndDistance() local
361 bestIndex = slIndex; in getBestIndexAndDistance()
371 bestIndex = slIndex; in getBestIndexAndDistance()
375 } else if (shiftedDistance == shiftedThreshold && bestIndex >= 0) { in getBestIndexAndDistance()
380 supported, supportedLSRs[bestIndex], bestLikelyInfo); in getBestIndexAndDistance()
385 bestIndex = slIndex; in getBestIndexAndDistance()
391 return bestIndex >= 0 ? in getBestIndexAndDistance()
392 (bestIndex << INDEX_SHIFT) | shiftedThreshold : in getBestIndexAndDistance()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DLocaleDistance.java254 int bestIndex = -1; in getBestIndexAndDistance() local
356 bestIndex = slIndex; in getBestIndexAndDistance()
366 bestIndex = slIndex; in getBestIndexAndDistance()
370 } else if (shiftedDistance == shiftedThreshold && bestIndex >= 0) { in getBestIndexAndDistance()
375 supported, supportedLSRs[bestIndex], bestLikelyInfo); in getBestIndexAndDistance()
380 bestIndex = slIndex; in getBestIndexAndDistance()
386 return bestIndex >= 0 ? in getBestIndexAndDistance()
387 (bestIndex << INDEX_SHIFT) | shiftedThreshold : in getBestIndexAndDistance()
/external/skqp/third_party/etc1/
Detc1.cpp310 int bestIndex = 0; in chooseModifier() local
333 bestIndex = i; in chooseModifier()
336 etc1_uint32 lowMask = (((bestIndex >> 1) << 16) | (bestIndex & 1)) in chooseModifier()
/external/skia/third_party/etc1/
Detc1.cpp310 int bestIndex = 0; in chooseModifier() local
333 bestIndex = i; in chooseModifier()
336 etc1_uint32 lowMask = (((bestIndex >> 1) << 16) | (bestIndex & 1)) in chooseModifier()
/external/dng_sdk/source/
Ddng_negative.cpp1349 int32 bestIndex = -1; in ProfileByID() local
1367 if (bestIndex == -1 || testVersion > bestVersion) in ProfileByID()
1370 bestIndex = index; in ProfileByID()
1379 if (bestIndex != -1) in ProfileByID()
1382 return &ProfileByIndex (bestIndex); in ProfileByID()
/external/vulkan-validation-layers/layers/
Dvk_mem_alloc.h6218 size_t bestIndex = SIZE_MAX; in Register() local
6224 bestIndex = i; in Register()
6228 (bestIndex == SIZE_MAX || m_FreeSpaces[bestIndex].size > m_FreeSpaces[i].size)) in Register()
6230 bestIndex = i; in Register()
6234 if(bestIndex != SIZE_MAX) in Register()
6236 m_FreeSpaces[bestIndex].blockInfoIndex = blockInfoIndex; in Register()
6237 m_FreeSpaces[bestIndex].offset = offset; in Register()
6238 m_FreeSpaces[bestIndex].size = size; in Register()
6245 size_t bestIndex = SIZE_MAX; in Fetch() local
6258 if(bestIndex == SIZE_MAX || freeSpaceAfter > bestFreeSpaceAfter) in Fetch()
[all …]
/external/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h7253 size_t bestIndex = SIZE_MAX; in Register() local
7259 bestIndex = i; in Register()
7263 (bestIndex == SIZE_MAX || m_FreeSpaces[bestIndex].size > m_FreeSpaces[i].size)) in Register()
7265 bestIndex = i; in Register()
7269 if(bestIndex != SIZE_MAX) in Register()
7271 m_FreeSpaces[bestIndex].blockInfoIndex = blockInfoIndex; in Register()
7272 m_FreeSpaces[bestIndex].offset = offset; in Register()
7273 m_FreeSpaces[bestIndex].size = size; in Register()
7280 size_t bestIndex = SIZE_MAX; in Fetch() local
7293 if(bestIndex == SIZE_MAX || freeSpaceAfter > bestFreeSpaceAfter) in Fetch()
[all …]
/external/guice/extensions/persist/lib/
Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/ ...
/external/cldr/tools/java/libs/
Dicu4j.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ ...