Home
last modified time | relevance | path

Searched refs:hashsize (Results 1 – 11 of 11) sorted by relevance

/external/opencv/cxcore/src/
Dcxcopy.cpp315 if( src1->heap->active_count >= dst1->hashsize*CV_SPARSE_HASH_RATIO ) in cvCopy()
318 dst1->hashsize = src1->hashsize; in cvCopy()
320 (void**)cvAlloc( dst1->hashsize*sizeof(dst1->hashtable[0]))); in cvCopy()
323 memset( dst1->hashtable, 0, dst1->hashsize*sizeof(dst1->hashtable[0])); in cvCopy()
329 int tabidx = node->hashval & (dst1->hashsize - 1); in cvCopy()
715 memset( mat1->hashtable, 0, mat1->hashsize*sizeof(mat1->hashtable[0])); in cvSetZero()
Dcxarray.cpp683 arr->hashsize = CV_SPARSE_HASH_SIZE0; in cvCreateSparseMat()
684 size = arr->hashsize*sizeof(arr->hashtable[0]); in cvCreateSparseMat()
772 for( idx = 0; idx < mat->hashsize; idx++ ) in cvInitSparseMatIterator()
818 tabidx = hashval & (mat->hashsize - 1); in icvGetNodePtr()
840 if( mat->heap->active_count >= mat->hashsize*CV_SPARSE_HASH_RATIO ) in icvGetNodePtr()
843 int newsize = MAX( mat->hashsize*2, CV_SPARSE_HASH_SIZE0); in icvGetNodePtr()
865 mat->hashsize = newsize; in icvGetNodePtr()
915 tabidx = hashval & (mat->hashsize - 1); in icvDeleteNode()
/external/curl/lib/
Dmultiif.h35 struct Curl_multi *Curl_multi_handle(int hashsize, int chashsize);
Dmulti.c252 static int sh_init(struct curl_hash *hash, int hashsize) in sh_init() argument
254 return Curl_hash_init(hash, hashsize, hash_fd, fd_key_compare, in sh_init()
284 struct Curl_multi *Curl_multi_handle(int hashsize, /* socket hash */ in Curl_multi_handle() argument
297 if(sh_init(&multi->sockhash, hashsize)) in Curl_multi_handle()
/external/opencv3/modules/core/src/
Dcopy.cpp1339 if( src1->heap->active_count >= dst1->hashsize*CV_SPARSE_HASH_RATIO ) in cvCopy()
1342 dst1->hashsize = src1->hashsize; in cvCopy()
1344 (void**)cvAlloc( dst1->hashsize*sizeof(dst1->hashtable[0])); in cvCopy()
1347 memset( dst1->hashtable, 0, dst1->hashsize*sizeof(dst1->hashtable[0])); in cvCopy()
1353 int tabidx = node->hashval & (dst1->hashsize - 1); in cvCopy()
1405 memset( mat1->hashtable, 0, mat1->hashsize*sizeof(mat1->hashtable[0])); in cvSetZero()
Darray.cpp574 arr->hashsize = CV_SPARSE_HASH_SIZE0; in cvCreateSparseMat()
575 size = arr->hashsize*sizeof(arr->hashtable[0]); in cvCreateSparseMat()
636 for( idx = 0; idx < mat->hashsize; idx++ ) in cvInitSparseMatIterator()
674 tabidx = hashval & (mat->hashsize - 1); in icvGetNodePtr()
699 if( mat->heap->active_count >= mat->hashsize*CV_SPARSE_HASH_RATIO ) in icvGetNodePtr()
702 int newsize = MAX( mat->hashsize*2, CV_SPARSE_HASH_SIZE0); in icvGetNodePtr()
724 mat->hashsize = newsize; in icvGetNodePtr()
768 tabidx = hashval & (mat->hashsize - 1); in icvDeleteNode()
/external/autotest/client/profilers/lockmeter/
Dpatch.2.6.14-lockmeter-1.gz1Index: linux/arch/i386/Kconfig.debug 2====== ...
/external/opencv/cxcore/include/
Dcxtypes.h755 int hashsize; member
Dcxcore.h276 for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ ) in cvGetNextSparseNode()
/external/opencv3/modules/core/include/opencv2/core/
Dtypes_c.h686 int hashsize; member
Dcore_c.h549 for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ ) in cvGetNextSparseNode()