Lines Matching full:hash
33 hash_t ShadowText::hash() const {
35 uint32_t hash = JenkinsHashMix(0, len);
36 hash = JenkinsHashMix(hash, android::hash_type(radius));
37 hash = JenkinsHashMix(hash, android::hash_type(textSize));
38 hash = JenkinsHashMix(hash, android::hash_type(typeface));
39 hash = JenkinsHashMix(hash, flags);
40 hash = JenkinsHashMix(hash, android::hash_type(italicStyle));
41 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
43 hash = JenkinsHashMixShorts(hash, text, charCount);
47 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
50 return JenkinsHashWhiten(hash);