Searched refs:hashsize (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/smhasher/src/
H A DSpeedTest.h6 void TinySpeedTest ( pfHash hash, int hashsize, int keysize, uint32_t seed, bool verbose, double & outCycles );
H A DSpeedTest.cpp231 void TinySpeedTest ( pfHash hash, int hashsize, int keysize, uint32_t seed, bool verbose, double & /*outCycles*/ ) argument
/external/srec/srec/crec/
H A Dastar_pphash.c37 hash->hashsize = FSH_HASHSIZE;
38 for (i = 0; i < hash->hashsize; i++)
99 hkey_index = hkey_index % hash->hashsize;
121 hkey_index = hkey_index % hash->hashsize;
156 hkey_index = hkey_index % hash->hashsize;
H A Dastar_pphash.h41 int hashsize; member in struct:__anon31089
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dphash.c15 #define hashsize(n) ((ub4)1<<(n)) macro
16 #define hashmask(n) (hashsize(n)-1)
80 In which case, the hash table should have hashsize(10) elements.
/external/opencv/cxcore/src/
H A Dcxcopy.cpp315 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]));
H A Dcxarray.cpp683 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);
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctputil.c6973 long hashsize;
6986 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)
6988 hashsize >>= 1;
6990 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);
6992 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_NOWAIT);
7005 for (i = 0; i < hashsize; i++)
7007 *hashmask = hashsize - 1;
7024 long hashsize;
[all...]
/external/opencv/cxcore/include/
H A Dcxtypes.h755 int hashsize; member in struct:CvSparseMat
H A Dcxcore.h276 for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ )

Completed in 1247 milliseconds