Home
last modified time | relevance | path

Searched refs:numKeys (Results 1 – 14 of 14) sorted by relevance

/external/fastrpc/src/
Dfastrpc_perf.c77 int numKeys; member
113 VERIFY(pdsp->numKeys < PERF_MAX_NUM_KEYS); in get_perf_adsp()
115 for(ii = 0; ii < pdsp->numKeys; ii++) { in get_perf_adsp()
153 int numKeys = 0, maxLen = 0; in perf_dsp_enable() local
161 VERIFY(0 == adsp_perf_get_keys(keys, PERF_KEY_STR_MAX, &maxLen, &numKeys)); in perf_dsp_enable()
164 gperf.dsp.numKeys = numKeys; in perf_dsp_enable()
165 for(ii = 0; ii < numKeys; ii++) { in perf_dsp_enable()
171 FARF(HIGH, "keys enable done maxLen %d numKeys %d", maxLen, numKeys); in perf_dsp_enable()
Dadsp_perf_stub.c616 …QAIC_STUB(adsp_perf_get_keys)(char* keys, int keysLen, int* maxLen, int* numKeys) __QAIC_STUB_ATTR… in __QAIC_STUB()
618 …sp_perf_handle(), _mid, (char**)&keys, (uint32_t*)&keysLen, (uint32_t*)maxLen, (uint32_t*)numKeys); in __QAIC_STUB()
/external/mesa3d/src/mesa/main/
Dhash.c413 _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys) in _mesa_HashFindFreeKeyBlock() argument
416 if (table->id_alloc && numKeys == 1) { in _mesa_HashFindFreeKeyBlock()
418 } else if (maxKey - numKeys > table->MaxKey) { in _mesa_HashFindFreeKeyBlock()
436 if (freeCount == numKeys) { in _mesa_HashFindFreeKeyBlock()
448 _mesa_HashFindFreeKeys(struct _mesa_HashTable *table, GLuint* keys, GLuint numKeys) in _mesa_HashFindFreeKeys() argument
451 GLuint first = _mesa_HashFindFreeKeyBlock(table, numKeys); in _mesa_HashFindFreeKeys()
452 for (int i = 0; i < numKeys; i++) { in _mesa_HashFindFreeKeys()
458 for (int i = 0; i < numKeys; i++) { in _mesa_HashFindFreeKeys()
Dhash.h179 extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys);
182 _mesa_HashFindFreeKeys(struct _mesa_HashTable *table, GLuint* keys, GLuint numKeys);
/external/python/cpython2/PC/
Dgetpathp.c228 DWORD numKeys = 0; in getpythonregpath() local
262 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL, in getpythonregpath()
269 ppPaths = malloc( sizeof(TCHAR *) * numKeys ); in getpythonregpath()
271 memset(ppPaths, 0, sizeof(TCHAR *) * numKeys); in getpythonregpath()
273 for(index=0;index<numKeys;index++) { in getpythonregpath()
311 for (index=0;index<numKeys;index++) { in getpythonregpath()
328 if (numKeys) { in getpythonregpath()
357 for(index=0;index<numKeys;index++) in getpythonregpath()
/external/icu/icu4c/source/i18n/
Duspoof_conf.cpp417 int32_t numKeys = fKeyVec->size(); in outputData() local
419 … static_cast<int32_t *>(fSpoofImpl->fSpoofData->reserveSpace(numKeys*sizeof(int32_t), status)); in outputData()
425 for (i=0; i<numKeys; i++) { in outputData()
436 rawData->fCFUKeysSize = numKeys; in outputData()
442 U_ASSERT(numKeys == numValues); in outputData()
444 … static_cast<uint16_t *>(fSpoofImpl->fSpoofData->reserveSpace(numKeys*sizeof(uint16_t), status)); in outputData()
/external/python/cpython3/PC/
Dgetpathp.c367 DWORD numKeys = 0; in getpythonregpath() local
406 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL, in getpythonregpath()
417 ppPaths = PyMem_RawMalloc( sizeof(WCHAR *) * numKeys ); in getpythonregpath()
421 memset(ppPaths, 0, sizeof(WCHAR *) * numKeys); in getpythonregpath()
423 for(index=0;index<numKeys;index++) { in getpythonregpath()
466 for (index=0;index<numKeys;index++) { in getpythonregpath()
484 if (numKeys) { in getpythonregpath()
504 for(index=0; index<numKeys; index++) in getpythonregpath()
/external/guava/guava/src/com/google/common/util/concurrent/
DCycleDetectingLockFactory.java306 final int numKeys = keys.length; in createNodes() local
307 ArrayList<LockGraphNode> nodes = Lists.newArrayListWithCapacity(numKeys); in createNodes()
315 for (int i = 1; i < numKeys; i++) { in createNodes()
319 for (int i = 0; i < numKeys - 1; i++) { in createNodes()
320 nodes.get(i).checkAcquiredLocks(Policies.DISABLED, nodes.subList(i + 1, numKeys)); in createNodes()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DCycleDetectingLockFactory.java306 final int numKeys = keys.length; in createNodes() local
307 ArrayList<LockGraphNode> nodes = Lists.newArrayListWithCapacity(numKeys); in createNodes()
315 for (int i = 1; i < numKeys; i++) { in createNodes()
319 for (int i = 0; i < numKeys - 1; i++) { in createNodes()
320 nodes.get(i).checkAcquiredLocks(Policies.DISABLED, nodes.subList(i + 1, numKeys)); in createNodes()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUResourceBundle.java1555 int numKeys;
1557 numKeys = countPathKeys(keyPath);
1558 if (numKeys > 0) {
1559 keys = new String[numKeys];
1560 getResPathKeys(keyPath, numKeys, keys, 0);
1563 numKeys = depth;
1566 numKeys = depth + 1;
1567 keys = new String[numKeys];
1571 if (numKeys > 0) {
1573 for (int i = 0; sub != null && i < numKeys; ++i) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceBundle.java1543 int numKeys;
1545 numKeys = countPathKeys(keyPath);
1546 if (numKeys > 0) {
1547 keys = new String[numKeys];
1548 getResPathKeys(keyPath, numKeys, keys, 0);
1551 numKeys = depth;
1554 numKeys = depth + 1;
1555 keys = new String[numKeys];
1559 if (numKeys > 0) {
1561 for (int i = 0; sub != null && i < numKeys; ++i) {
/external/fastrpc/inc/
Dadsp_perf.h105 …IC_HEADER(adsp_perf_get_keys)(char* keys, int keysLen, int* maxLen, int* numKeys) __QAIC_HEADER_AT…
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java966 int numKeys = fKeyVec.size(); in build() local
967 dest.fCFUKeys = new int[numKeys]; in build()
969 for (i = 0; i < numKeys; i++) { in build()
980 assert (numKeys == numValues); in build()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java1012 int numKeys = fKeyVec.size(); in build() local
1013 dest.fCFUKeys = new int[numKeys]; in build()
1015 for (i = 0; i < numKeys; i++) { in build()
1026 assert (numKeys == numValues); in build()