HomeSort by relevance Sort by last modified time
    Searched refs:hashsize (Results 1 - 13 of 13) sorted by null

  /external/curl/lib/
multiif.h 35 struct Curl_multi *Curl_multi_handle(int hashsize, int chashsize);
multi.c 252 static int sh_init(struct curl_hash *hash, int hashsize)
254 return Curl_hash_init(hash, hashsize, hash_fd, fd_key_compare,
284 struct Curl_multi *Curl_multi_handle(int hashsize, /* socket hash */
297 if(sh_init(&multi->sockhash, hashsize))
    [all...]
  /external/opencv/cxcore/src/
cxcopy.cpp 315 if( src1->heap->active_count >= dst1->hashsize*CV_SPARSE_HASH_RATIO )
318 dst1->hashsize = src1->hashsize;
320 (void**)cvAlloc( dst1->hashsize*sizeof(dst1->hashtable[0])));
323 memset( dst1->hashtable, 0, dst1->hashsize*sizeof(dst1->hashtable[0]));
329 int tabidx = node->hashval & (dst1->hashsize - 1);
715 memset( mat1->hashtable, 0, mat1->hashsize*sizeof(mat1->hashtable[0]));
    [all...]
cxarray.cpp 683 arr->hashsize = CV_SPARSE_HASH_SIZE0;
684 size = arr->hashsize*sizeof(arr->hashtable[0]);
772 for( idx = 0; idx < mat->hashsize; idx++ )
818 tabidx = hashval & (mat->hashsize - 1);
840 if( mat->heap->active_count >= mat->hashsize*CV_SPARSE_HASH_RATIO )
843 int newsize = MAX( mat->hashsize*2, CV_SPARSE_HASH_SIZE0);
865 mat->hashsize = newsize;
915 tabidx = hashval & (mat->hashsize - 1);
    [all...]
  /external/opencv3/modules/core/src/
copy.cpp     [all...]
array.cpp 574 arr->hashsize = CV_SPARSE_HASH_SIZE0;
575 size = arr->hashsize*sizeof(arr->hashtable[0]);
636 for( idx = 0; idx < mat->hashsize; idx++ )
674 tabidx = hashval & (mat->hashsize - 1);
699 if( mat->heap->active_count >= mat->hashsize*CV_SPARSE_HASH_RATIO )
702 int newsize = MAX( mat->hashsize*2, CV_SPARSE_HASH_SIZE0);
724 mat->hashsize = newsize;
768 tabidx = hashval & (mat->hashsize - 1);
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
m88k-dis.c 533 unsigned int hashvalue, hashsize; local
    [all...]
  /system/extras/ksmutils/
lookup3.c 67 #define hashsize(n) ((uint32_t)1<<(n)) macro
68 #define hashmask(n) (hashsize(n)-1)
270 In which case, the hash table should have hashsize(10) elements.
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
ecoff.c 3015 unsigned int hashsize, hashlog; local
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 755 int hashsize; member in struct:CvSparseMat
    [all...]
cxcore.h 276 for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ )
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 686 int hashsize; member in struct:CvSparseMat
    [all...]
core_c.h 549 for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ )
    [all...]

Completed in 328 milliseconds