Home | History | Annotate | Download | only in aapt

Lines Matching full:hash

36 static inline uint32_t hashround(uint32_t hash, int c) {
37 return ((hash << 5) + hash) + c; /* hash * 33 + c */
40 static uint32_t hash(const android::String16& hashableString) {
41 uint32_t hash = 5381;
43 while (int c = *str++) hash = hashround(hash, c);
44 return hash;
65 const uint32_t hashcode = hash(hashedName);
93 const uint32_t hashcode = hash(hashedName);