OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JenkinsHashMix
(Results
1 - 13
of
13
) sorted by null
/system/core/libutils/
JenkinsHash.cpp
41
hash =
JenkinsHashMix
(hash, (uint32_t)size);
45
hash =
JenkinsHashMix
(hash, data);
51
hash =
JenkinsHashMix
(hash, data);
60
hash =
JenkinsHashMix
(hash, (uint32_t)size);
64
hash =
JenkinsHashMix
(hash, data);
68
hash =
JenkinsHashMix
(hash, data);
/system/core/libutils/include/utils/
JenkinsHash.h
35
inline uint32_t
JenkinsHashMix
(uint32_t hash, uint32_t data) {
/frameworks/base/libs/hwui/
TextDropShadowCache.cpp
33
uint32_t hash =
JenkinsHashMix
(0, glyphCount);
34
hash =
JenkinsHashMix
(hash, android::hash_type(radius));
35
hash =
JenkinsHashMix
(hash, android::hash_type(textSize));
36
hash =
JenkinsHashMix
(hash, android::hash_type(typeface));
37
hash =
JenkinsHashMix
(hash, flags);
38
hash =
JenkinsHashMix
(hash, android::hash_type(italicStyle));
39
hash =
JenkinsHashMix
(hash, android::hash_type(scaleX));
46
hash =
JenkinsHashMix
(hash, android::hash_type(positions[i]));
PatchCache.cpp
50
uint32_t hash =
JenkinsHashMix
(0, android::hash_type(mPatch));
51
hash =
JenkinsHashMix
(hash, mBitmapWidth);
52
hash =
JenkinsHashMix
(hash, mBitmapHeight);
53
hash =
JenkinsHashMix
(hash, mPixelWidth);
54
hash =
JenkinsHashMix
(hash, mPixelHeight);
PathCache.cpp
87
uint32_t hash =
JenkinsHashMix
(0, static_cast<int>(type));
88
hash =
JenkinsHashMix
(hash, join);
89
hash =
JenkinsHashMix
(hash, cap);
90
hash =
JenkinsHashMix
(hash, style);
91
hash =
JenkinsHashMix
(hash, android::hash_type(miter));
92
hash =
JenkinsHashMix
(hash, android::hash_type(strokeWidth));
93
hash =
JenkinsHashMix
(hash, android::hash_type(pathEffect));
TessellationCache.cpp
78
uint32_t hash =
JenkinsHashMix
(0, static_cast<int>(type));
79
hash =
JenkinsHashMix
(hash, aa);
80
hash =
JenkinsHashMix
(hash, cap);
81
hash =
JenkinsHashMix
(hash, style);
82
hash =
JenkinsHashMix
(hash, android::hash_type(strokeWidth));
83
hash =
JenkinsHashMix
(hash, android::hash_type(scaleX));
84
hash =
JenkinsHashMix
(hash, android::hash_type(scaleY));
GradientCache.cpp
44
uint32_t hash =
JenkinsHashMix
(0, count);
46
hash =
JenkinsHashMix
(hash, android::hash_type(colors[i]));
47
hash =
JenkinsHashMix
(hash, android::hash_type(positions[i]));
/frameworks/base/tools/aapt2/process/
SymbolTable.h
39
hash = android::
JenkinsHashMix
(hash, (uint32_t)str_hash(name.package));
40
hash = android::
JenkinsHashMix
(hash, (uint32_t)name.type);
41
hash = android::
JenkinsHashMix
(hash, (uint32_t)str_hash(name.entry));
/frameworks/base/libs/hwui/font/
Font.cpp
70
uint32_t hash =
JenkinsHashMix
(0, mFontId);
71
hash =
JenkinsHashMix
(hash, android::hash_type(mFontSize));
72
hash =
JenkinsHashMix
(hash, android::hash_type(mFlags));
73
hash =
JenkinsHashMix
(hash, android::hash_type(mItalicStyle));
74
hash =
JenkinsHashMix
(hash, android::hash_type(mScaleX));
75
hash =
JenkinsHashMix
(hash, android::hash_type(mStyle));
76
hash =
JenkinsHashMix
(hash, android::hash_type(mStrokeWidth));
77
hash =
JenkinsHashMix
(hash, int(mAntiAliasing));
78
hash =
JenkinsHashMix
(hash, android::hash_type(mHinting));
79
hash =
JenkinsHashMix
(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleX]))
[
all
...]
/frameworks/minikin/libs/minikin/
Layout.cpp
200
uint32_t hash = android::
JenkinsHashMix
(0, mId);
201
hash = android::
JenkinsHashMix
(hash, mStart);
202
hash = android::
JenkinsHashMix
(hash, mCount);
203
hash = android::
JenkinsHashMix
(hash, hash_type(mStyle));
204
hash = android::
JenkinsHashMix
(hash, hash_type(mSize));
205
hash = android::
JenkinsHashMix
(hash, hash_type(mScaleX));
206
hash = android::
JenkinsHashMix
(hash, hash_type(mSkewX));
207
hash = android::
JenkinsHashMix
(hash, hash_type(mLetterSpacing));
208
hash = android::
JenkinsHashMix
(hash, hash_type(mPaintFlags));
209
hash = android::
JenkinsHashMix
(hash, hash_type(mHyphenEdit.getHyphen()))
[
all
...]
FontFamily.cpp
52
uint32_t hash = android::
JenkinsHashMix
(0, bits);
53
hash = android::
JenkinsHashMix
(hash, mLanguageListId);
/frameworks/base/tools/aapt2/
Resource.h
392
h = android::
JenkinsHashMix
(h, static_cast<uint32_t>(hash<string>()(name.package)));
393
h = android::
JenkinsHashMix
(h, static_cast<uint32_t>(name.type));
394
h = android::
JenkinsHashMix
(h, static_cast<uint32_t>(hash<string>()(name.entry)));
/system/core/libutils/tests/
LruCache_test.cpp
212
return JenkinsHashWhiten(
JenkinsHashMix
(0, x));
Completed in 678 milliseconds