Searched refs:hashsize (Results 1 – 9 of 9) sorted by relevance
45 size_t hashsize) /* I - Size of hash buffer */ in cupsHashData() argument47 if (!algorithm || !data || datalen == 0 || !hash || hashsize == 0) in cupsHashData()62 if (hashsize < CC_MD5_DIGEST_LENGTH) in cupsHashData()79 if (hashsize < CC_SHA1_DIGEST_LENGTH) in cupsHashData()92 if (hashsize < CC_SHA224_DIGEST_LENGTH) in cupsHashData()105 if (hashsize < CC_SHA256_DIGEST_LENGTH) in cupsHashData()118 if (hashsize < CC_SHA384_DIGEST_LENGTH) in cupsHashData()131 if (hashsize < CC_SHA512_DIGEST_LENGTH) in cupsHashData()150 if (hashsize < CC_SHA224_DIGEST_LENGTH) in cupsHashData()171 if (hashsize < CC_SHA256_DIGEST_LENGTH) in cupsHashData()[all …]
1321 size_t hashsize; /* Size of hash */ in _httpSetDigestAuthString() local1396 … hashsize = (size_t)cupsHashData(hashalg, (unsigned char *)temp, strlen(temp), hash, sizeof(hash)); in _httpSetDigestAuthString()1397 cupsHashString(hash, hashsize, ha1, sizeof(ha1)); in _httpSetDigestAuthString()1401 … hashsize = (size_t)cupsHashData(hashalg, (unsigned char *)temp, strlen(temp), hash, sizeof(hash)); in _httpSetDigestAuthString()1402 cupsHashString(hash, hashsize, ha2, sizeof(ha2)); in _httpSetDigestAuthString()1406 … hashsize = (size_t)cupsHashData(hashalg, (unsigned char *)temp, strlen(temp), hash, sizeof(hash)); in _httpSetDigestAuthString()1407 cupsHashString(hash, hashsize, kd, sizeof(kd)); in _httpSetDigestAuthString()1426 hashsize = (size_t)cupsHashData("md5", (unsigned char *)temp, strlen(temp), hash, sizeof(hash)); in _httpSetDigestAuthString()1427 cupsHashString(hash, hashsize, ha1, sizeof(ha1)); in _httpSetDigestAuthString()1431 hashsize = (size_t)cupsHashData("md5", (unsigned char *)temp, strlen(temp), hash, sizeof(hash)); in _httpSetDigestAuthString()[all …]
52 int hashsize, /* Size of hash */ member337 if (a->hashsize) in cupsArrayDelete()466 if (hash < 0 || hash >= a->hashsize) in cupsArrayFind()756 a->hashsize = hsize; in cupsArrayNew3()
594 … *algorithm, const void *data, size_t datalen, unsigned char *hash, size_t hashsize) _CUPS_API_2_2;601 extern const char *cupsHashString(const unsigned char *hash, size_t hashsize, char *buffer, size_t …
44 struct Curl_multi *Curl_multi_handle(int hashsize, int chashsize);
328 static int sh_init(struct Curl_hash *hash, int hashsize) in sh_init() argument330 return Curl_hash_init(hash, hashsize, hash_fd, fd_key_compare, in sh_init()348 struct Curl_multi *Curl_multi_handle(int hashsize, /* socket hash */ in Curl_multi_handle() argument361 if(sh_init(&multi->sockhash, hashsize)) in Curl_multi_handle()
54 #define hashsize(n) ((uint32_t)1<<(n)) macro55 #define hashmask(n) (hashsize(n)-1)
7362 long hashsize; local7375 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)7377 hashsize >>= 1;7379 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);7381 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_NOWAIT);7394 for (i = 0; i < hashsize; i++)7396 *hashmask = hashsize - 1;7413 long hashsize; local7425 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)7427 hashsize >>= 1;[all …]
1Index: linux/arch/i386/Kconfig.debug 2====== ...