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

  /external/libcups/cups/
hash.c 34 * The "hash" argument points to a buffer of "hashsize" bytes and should be at
47 size_t hashsize) /* I - Size of hash buffer */
49 if (!algorithm || !data || datalen == 0 || !hash || hashsize == 0)
64 if (hashsize < CC_SHA1_DIGEST_LENGTH)
77 if (hashsize < CC_SHA224_DIGEST_LENGTH)
90 if (hashsize < CC_SHA256_DIGEST_LENGTH)
103 if (hashsize < CC_SHA384_DIGEST_LENGTH)
116 if (hashsize < CC_SHA512_DIGEST_LENGTH)
135 if (hashsize < CC_SHA224_DIGEST_LENGTH)
156 if (hashsize < CC_SHA256_DIGEST_LENGTH
    [all...]
array.c 58 int hashsize, /* Size of hash */ member in struct:_cups_array_s
343 if (a->hashsize)
472 if (hash < 0 || hash >= a->hashsize)
762 a->hashsize = hsize;
cups.h 603 extern ssize_t cupsHashData(const char *algorithm, const void *data, size_t datalen, unsigned char *hash, size_t hashsize) _CUPS_API_2_2;
  /external/curl/lib/
multiif.h 37 struct Curl_multi *Curl_multi_handle(int hashsize, int chashsize);
multi.c 276 static int sh_init(struct curl_hash *hash, int hashsize)
278 return Curl_hash_init(hash, hashsize, hash_fd, fd_key_compare,
307 struct Curl_multi *Curl_multi_handle(int hashsize, /* socket hash */
320 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/libnl/lib/
hash.c 53 #define hashsize(n) ((uint32_t)1<<(n)) macro
54 #define hashmask(n) (hashsize(n)-1)
162 In which case, the hash table should have hashsize(10) elements.
  /hardware/qcom/msm8998/json-c/
linkhash.c 110 #define hashsize(n) ((uint32_t)1<<(n)) macro
111 #define hashmask(n) (hashsize(n)-1)
219 In which case, the hash table should have hashsize(10) elements.
  /toolchain/binutils/binutils-2.27/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.27/bfd/
ecoff.c 3042 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...]

Completed in 580 milliseconds