Lines Matching refs:hash
34 hash_t ShadowText::hash() const {
36 uint32_t hash = JenkinsHashMix(0, len);
37 hash = JenkinsHashMix(hash, android::hash_type(radius));
38 hash = JenkinsHashMix(hash, android::hash_type(textSize));
39 hash = JenkinsHashMix(hash, android::hash_type(typeface));
40 hash = JenkinsHashMix(hash, flags);
41 hash = JenkinsHashMix(hash, android::hash_type(italicStyle));
42 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
44 hash = JenkinsHashMixShorts(
45 hash, reinterpret_cast<const uint16_t*>(text), charCount);
49 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
52 return JenkinsHashWhiten(hash);