HomeSort by relevance Sort by last modified time
    Searched refs:hashval (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_security_test.py 33 hashval = security.generate_password_hash(password, 'sha1')
34 self.assertTrue(security.check_password_hash(password, hashval))
36 hashval = security.generate_password_hash(password, 'sha1', pepper='bar')
37 self.assertTrue(security.check_password_hash(password, hashval,
40 hashval = security.generate_password_hash(password, 'md5')
41 self.assertTrue(security.check_password_hash(password, hashval))
43 hashval = security.generate_password_hash(password, 'plain')
44 self.assertTrue(security.check_password_hash(password, hashval))
46 hashval = security.generate_password_hash(password, 'plain')
  /external/elfutils/lib/
dynamicsizehash.c 53 if (htab->table[idx].hashval != 0)
57 if (htab->table[idx].hashval == hval
72 if (htab->table[idx].hashval == hval
76 while (htab->table[idx].hashval);
86 if (htab->table[idx].hashval == 0)
104 htab->table[idx].hashval = hval;
145 insert_entry_2 (htab, first->hashval,
146 lookup (htab, first->hashval, first->data),
155 insert_entry_2 (htab, runp->hashval,
156 lookup (htab, runp->hashval, runp->data), runp->data)
    [all...]
dynamicsizehash.h 65 HASHTYPE hashval; \
  /external/zopfli/src/zopfli/
hash.h 32 int* hashval; /* Index to hash value at this index. */ member in struct:ZopfliHash
hash.c 35 h->hashval = (int*)malloc(sizeof(*h->hashval) * window_size);
41 h->hashval[i] = -1;
69 free(h->hashval);
100 h->hashval[hpos] = h->val;
101 if (h->head[h->val] != -1 && h->hashval[h->head[h->val]] == h->val) {
lz77.c 248 int* hhashval = h->hashval;
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
security.py 124 hashval = hash_password(password, method, salt, pepper)
125 if hashval is None:
128 return '%s$%s$%s' % (hashval, method, salt)
151 hashval, method, salt = pwhash.split('$', 2)
152 return hash_password(password, method, salt, pepper) == hashval
  /toolchain/binutils/binutils-2.25/gold/
gdb-index.h 203 unsigned int hashval; member in struct:gold::Gdb_index::Gdb_symbol
209 { return this->hashval; }
dynobj.cc 1254 uint32_t hashval = dynsym_hashvals[i]; local
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
mat.hpp 2423 size_t hashval; member in struct:cv::SparseMat::Node
    [all...]
mat.inl.hpp     [all...]
types_c.h 712 unsigned hashval; member in struct:CvSparseNode
1745 unsigned hashval; member in struct:CvStringHashNode
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
tran.c 240 unsigned hashval; local
242 for (hashval = 0; *s != '\0'; s++)
243 hashval = (*s + 31 * hashval);
244 return hashval % n;
  /external/opencv/cxcore/src/
cxpersistence.cpp 429 unsigned hashval = 0; local
439 hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
443 hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
445 hashval &= INT_MAX;
448 i = (int)(hashval & (tab_size - 1));
450 i = (int)(hashval % tab_size);
454 if( node->hashval == hashval &
566 unsigned hashval = 0; local
    [all...]
cxarray.cpp 799 unsigned hashval = 0; local
810 hashval = hashval*ICV_SPARSE_MAT_HASH_MULTIPLIER + t;
815 hashval = *precalc_hashval;
818 tabidx = hashval & (mat->hashsize - 1);
819 hashval &= INT_MAX;
824 if( node->hashval == hashval )
857 int newidx = node->hashval & (newsize - 1);
866 tabidx = hashval & (newsize - 1)
896 unsigned hashval = 0; local
    [all...]
  /external/opencv3/modules/core/src/
persistence.cpp 578 unsigned hashval = 0; local
589 hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
593 hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
595 hashval &= INT_MAX;
598 i = (int)(hashval & (tab_size - 1));
600 i = (int)(hashval % tab_size);
604 if( node->hashval == hashval &
703 unsigned hashval = 0; local
    [all...]
matrix.cpp     [all...]
array.cpp 655 unsigned hashval = 0; local
666 hashval = hashval*ICV_SPARSE_MAT_HASH_MULTIPLIER + t;
671 hashval = *precalc_hashval;
674 tabidx = hashval & (mat->hashsize - 1);
675 hashval &= INT_MAX;
682 if( node->hashval == hashval )
716 int newidx = node->hashval & (newsize - 1);
725 tabidx = hashval & (newsize - 1)
749 unsigned hashval = 0; local
    [all...]
  /external/opencv3/modules/ml/src/
data.cpp 353 int hashval = ((unsigned)a*127 + (unsigned)b)*127 + m; local
354 CatMapHash::iterator it = ofshash.find(hashval);
375 ofshash[hashval] = i;
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 1447 unsigned hashval; local
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 531 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval );
548 if( !cvPtrND( mat1, CV_NODE_IDX(mat2,node2), 0, 0, &node2->hashval ))
564 0, 0, &node1->hashval );
594 0, 0, &node1->hashval );
615 0, 0, &node1->hashval );
    [all...]
  /external/opencv3/modules/imgproc/src/
histogram.cpp     [all...]
  /external/opencv3/modules/core/test/
test_io.cpp 52 uchar* v2 = cvPtrND( m2, CV_NODE_IDX(m1,node1), 0, 0, &node1->hashval );
  /external/opencv/cxcore/include/
cxtypes.h 773 unsigned hashval; member in struct:CvSparseNode
1703 unsigned hashval; member in struct:CvStringHashNode
    [all...]
  /external/elfutils/src/
elflint.c 3133 GElf_Word hashval = elf_hash (verstr); local
3284 GElf_Word hashval = elf_hash (name); local
    [all...]

Completed in 506 milliseconds

1 2