HomeSort by relevance Sort by last modified time
    Searched refs:JenkinsHashMix (Results 1 - 8 of 8) sorted by null

  /frameworks/native/libs/utils/
JenkinsHash.cpp 34 hash = JenkinsHashMix(hash, (uint32_t)size);
38 hash = JenkinsHashMix(hash, data);
44 hash = JenkinsHashMix(hash, data);
50 hash = JenkinsHashMix(hash, (uint32_t)size);
54 hash = JenkinsHashMix(hash, data);
58 hash = JenkinsHashMix(hash, data);
  /frameworks/native/include/utils/
JenkinsHash.h 32 inline uint32_t JenkinsHashMix(uint32_t hash, uint32_t data) {
  /frameworks/base/libs/hwui/
TextDropShadowCache.cpp 34 uint32_t hash = JenkinsHashMix(0, len);
35 hash = JenkinsHashMix(hash, android::hash_type(radius));
36 hash = JenkinsHashMix(hash, android::hash_type(textSize));
37 hash = JenkinsHashMix(hash, android::hash_type(typeface));
38 hash = JenkinsHashMix(hash, flags);
39 hash = JenkinsHashMix(hash, android::hash_type(italicStyle));
40 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
46 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
PathCache.cpp 66 uint32_t hash = JenkinsHashMix(0, type);
67 hash = JenkinsHashMix(hash, join);
68 hash = JenkinsHashMix(hash, cap);
69 hash = JenkinsHashMix(hash, style);
70 hash = JenkinsHashMix(hash, android::hash_type(miter));
71 hash = JenkinsHashMix(hash, android::hash_type(strokeWidth));
72 hash = JenkinsHashMix(hash, android::hash_type(pathEffect));
GradientCache.cpp 43 uint32_t hash = JenkinsHashMix(0, count);
45 hash = JenkinsHashMix(hash, android::hash_type(colors[i]));
46 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
  /frameworks/base/libs/hwui/font/
Font.cpp 75 uint32_t hash = JenkinsHashMix(0, mFontId);
76 hash = JenkinsHashMix(hash, android::hash_type(mFontSize));
77 hash = JenkinsHashMix(hash, android::hash_type(mFlags));
78 hash = JenkinsHashMix(hash, android::hash_type(mItalicStyle));
79 hash = JenkinsHashMix(hash, android::hash_type(mScaleX));
80 hash = JenkinsHashMix(hash, android::hash_type(mStyle));
81 hash = JenkinsHashMix(hash, android::hash_type(mStrokeWidth));
82 hash = JenkinsHashMix(hash, int(mAntiAliasing));
83 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleX]));
84 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleY]))
    [all...]
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 301 uint32_t hash = JenkinsHashMix(0, start);
302 hash = JenkinsHashMix(hash, count);
304 hash = JenkinsHashMix(hash, hash_type(typeface));
305 hash = JenkinsHashMix(hash, hash_type(textSize));
306 hash = JenkinsHashMix(hash, hash_type(textSkewX));
307 hash = JenkinsHashMix(hash, hash_type(textScaleX));
308 hash = JenkinsHashMix(hash, flags);
309 hash = JenkinsHashMix(hash, hinting);
310 hash = JenkinsHashMix(hash, variant);
    [all...]
  /frameworks/native/libs/utils/tests/
LruCache_test.cpp 175 return JenkinsHashWhiten(JenkinsHashMix(0, x));

Completed in 100 milliseconds