HomeSort by relevance Sort by last modified time
    Searched full:hashsize (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /dalvik/libdex/
sha1.h 13 #define HASHSIZE 20
18 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);
sha1.cpp 241 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX*
259 for (i = 0; i < HASHSIZE; i++) {
265 memset(context->state, 0, HASHSIZE);
295 memset(digest, 0, HASHSIZE);
333 unsigned char digest[HASHSIZE];
334 unsigned char expected_digest[HASHSIZE];
359 for (k=0, j=5; k < HASHSIZE; k++)
372 for (k=0; k<HASHSIZE; k++)
379 for (k=0; k<HASHSIZE; k++)
383 for (k=0; k<HASHSIZE; k++
    [all...]
  /frameworks/compile/libbcc/lib/Support/
sha1.h 13 #define HASHSIZE 20
22 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);
sha1.c 240 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX*
258 for (i = 0; i < HASHSIZE; i++) {
264 memset(context->state, 0, HASHSIZE);
294 memset(digest, 0, HASHSIZE);
332 unsigned char digest[HASHSIZE];
333 unsigned char expected_digest[HASHSIZE];
358 for (k=0, j=5; k < HASHSIZE; k++)
371 for (k=0; k<HASHSIZE; k++)
378 for (k=0; k<HASHSIZE; k++)
382 for (k=0; k<HASHSIZE; k++
    [all...]
  /external/dropbear/libtomcrypt/src/mac/hmac/
hmac_done.c 32 unsigned long hashsize, i; local
45 hashsize = hash_descriptor[hash].hashsize;
49 isha = XMALLOC(hashsize);
77 if ((err = hash_descriptor[hash].process(&hmac->md, isha, hashsize)) != CRYPT_OK) {
85 for (i = 0; i < hashsize && i < *outlen; i++) {
94 zeromem(isha, hashsize);
95 zeromem(buf, hashsize);
hmac_init.c 33 unsigned long hashsize; local
45 hashsize = hash_descriptor[hash].hashsize;
71 if(hashsize < HMAC_BLOCKSIZE) {
72 zeromem((hmac->key) + hashsize, (size_t)(HMAC_BLOCKSIZE - hashsize));
74 keylen = hashsize;
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_find_hash_any.c 38 if ((int)hash_descriptor[x].hashsize >= digestlen && (int)hash_descriptor[x].hashsize < y) {
40 y = hash_descriptor[x].hashsize;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUniqueIDMap.m 58 if ((self = [super initWithLen:HASHSIZE]) != nil) {
60 for( idx = 0; idx < HASHSIZE; idx++ ) {
83 for( idx = 0; idx < HASHSIZE; idx++ ) {
101 for( idx = 0; idx < HASHSIZE; idx++ ) {
117 for( idx = 0; idx < HASHSIZE; idx++ ) {
175 idx %= HASHSIZE;
ANTLRPtrStack.h 15 #define HASHSIZE 101
ANTLRPtrStack.m 31 self = [super initWithLen:HASHSIZE];
91 LastHash = hashval % HashSize;
171 aTType = ttype % HashSize;
ANTLRMap.m 59 self = [super initWithLen:HASHSIZE];
62 for( idx = 0; idx < HASHSIZE; idx++ ) {
181 self->lastHash = hashval % HASHSIZE;
297 aTType = ttype % HASHSIZE;
312 idx %= HASHSIZE;
357 ttype = aTType % HASHSIZE;
  /external/dropbear/libtomcrypt/src/hashes/helper/
hash_filehandle.c 44 if (*outlen < hash_descriptor[hash].hashsize) {
45 *outlen = hash_descriptor[hash].hashsize;
52 *outlen = hash_descriptor[hash].hashsize;
hash_memory.c 40 if (*outlen < hash_descriptor[hash].hashsize) {
41 *outlen = hash_descriptor[hash].hashsize;
57 *outlen = hash_descriptor[hash].hashsize;
hash_memory_multi.c 45 if (*outlen < hash_descriptor[hash].hashsize) {
46 *outlen = hash_descriptor[hash].hashsize;
75 *outlen = hash_descriptor[hash].hashsize;
  /external/srec/srec/crec/
astar_pphash.c 37 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;
  /external/dropbear/libtomcrypt/demos/
hashsum.c 47 for (x = 0; x < (int)hash_descriptor[idx].hashsize; x++) {
57 for (x = 0; x < (int)hash_descriptor[idx].hashsize; x++) {
  /external/dropbear/libtomcrypt/src/misc/pkcs5/
pkcs_5_1.c 79 if ((err = hash_memory(hash_idx, buf, hash_descriptor[hash_idx].hashsize, buf, &x)) != CRYPT_OK) {
85 for (x = 0; x < hash_descriptor[hash_idx].hashsize && x < *outlen; x++) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashMap.h 36 #define HASHSIZE 101
45 ANTLRMapElement *ptrBuffer[HASHSIZE];
ANTLRBaseStack.h 37 #define HASHSIZE 101
ANTLRHashRule.h 36 #define HASHSIZE 101
ANTLRMap.h 38 #define HASHSIZE 101
ANTLRRuleStack.h 38 #define HASHSIZE 101
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashMap.h 36 #define HASHSIZE 101
45 ANTLRMapElement *ptrBuffer[HASHSIZE];
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRHashMap.h 36 #define HASHSIZE 101
45 ANTLRMapElement *ptrBuffer[HASHSIZE];
  /external/dropbear/
algo.h 62 unsigned char hashsize; member in struct:dropbear_hash

Completed in 889 milliseconds

1 2 3 4