Searched refs:numKeys (Results 1 - 5 of 5) sorted by relevance

/xsrc/external/mit/xorg-server/dist/test/
H A Dhashtabletest.c33 const int numKeys = 420; local in function:test1
38 for (c = 0; c < numKeys; ++c) {
51 for (c = 0; c < numKeys; ++c) {
71 for (c = 0; c < numKeys; ++c) {
91 const int numKeys = 420; local in function:test2
96 for (c = 0; c < numKeys; ++c) {
101 for (c = 0; c < numKeys; ++c) {
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dhash.c408 * \param numKeys number of keys needed.
418 _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys) argument
421 if (table->id_alloc && numKeys == 1) {
423 } else if (maxKey - numKeys > table->MaxKey) {
441 if (freeCount == numKeys) {
446 /* cannot allocate a block of numKeys consecutive keys */
453 _mesa_HashFindFreeKeys(struct _mesa_HashTable *table, GLuint* keys, GLuint numKeys) argument
456 GLuint first = _mesa_HashFindFreeKeyBlock(table, numKeys);
457 for (int i = 0; i < numKeys; i++) {
463 for (int i = 0; i < numKeys;
[all...]
H A Dhash.h182 extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys);
185 _mesa_HashFindFreeKeys(struct _mesa_HashTable *table, GLuint* keys, GLuint numKeys);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dhash.h171 extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys);
H A Dhash.c370 * \param numKeys number of keys needed.
380 _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys) argument
383 if (maxKey - numKeys > table->MaxKey) {
401 if (freeCount == numKeys) {
406 /* cannot allocate a block of numKeys consecutive keys */

Completed in 4 milliseconds