| /expo/packages/expo-modules-core/android/src/main/cpp/ |
| H A D | JavaReferencesCache.h | 15 inline void hash_combine(std::size_t& seed, const T& v) in hash_combine() argument 19 seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2); in hash_combine() 25 std::size_t seed = 0; in operator() local 26 hash_combine(seed, v.first); in operator() 27 hash_combine(seed, v.second); in operator() 28 return seed; in operator()
|
| /expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/utils/ |
| H A D | SkRandom.h | 26 SkRandom(uint32_t seed) { init(seed); } in SkRandom() argument 124 void setSeed(uint32_t seed) { init(seed); } in setSeed() argument 130 void init(uint32_t seed) { in init() argument 131 fK = NextLCG(seed); in init() 141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG() argument
|
| /expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/utils/ |
| H A D | SkRandom.h | 26 SkRandom(uint32_t seed) { init(seed); } in SkRandom() argument 124 void setSeed(uint32_t seed) { init(seed); } in setSeed() argument 130 void init(uint32_t seed) { in init() argument 131 fK = NextLCG(seed); in init() 141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG() argument
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/attributedstring/ |
| H A D | ABI47_0_0AttributedString.h | 129 auto seed = size_t{0}; 132 seed = folly::hash::hash_combine(seed, fragment); 135 return seed;
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/attributedstring/ |
| H A D | ABI48_0_0AttributedString.h | 141 auto seed = size_t{0}; 144 seed = folly::hash::hash_combine(seed, fragment); 147 return seed;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/attributedstring/ |
| H A D | ABI49_0_0AttributedString.h | 141 auto seed = size_t{0}; 144 seed = folly::hash::hash_combine(seed, fragment); 147 return seed;
|
| /expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/effects/ |
| H A D | SkPerlinNoiseShader.h | 42 int numOctaves, SkScalar seed, 45 int numOctaves, SkScalar seed,
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/textlayoutmanager/ |
| H A D | ABI48_0_0TextMeasureCache.h | 179 auto seed = size_t{0}; in textAttributedStringHashLayoutWise() 182 seed = in textAttributedStringHashLayoutWise() 183 folly::hash::hash_combine(seed, textAttributesHashLayoutWise(fragment)); in textAttributedStringHashLayoutWise() 186 return seed; in textAttributedStringHashLayoutWise()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/textlayoutmanager/ |
| H A D | ABI49_0_0TextMeasureCache.h | 180 auto seed = size_t{0}; in textAttributedStringHashLayoutWise() 183 seed = in textAttributedStringHashLayoutWise() 184 folly::hash::hash_combine(seed, textAttributesHashLayoutWise(fragment)); in textAttributedStringHashLayoutWise() 187 return seed; in textAttributedStringHashLayoutWise()
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/textlayoutmanager/ |
| H A D | ABI47_0_0TextMeasureCache.h | 176 auto seed = size_t{0}; in textAttributedStringHashLayoutWise() 179 seed = in textAttributedStringHashLayoutWise() 180 folly::hash::hash_combine(seed, textAttributesHashLayoutWise(fragment)); in textAttributedStringHashLayoutWise() 183 return seed; in textAttributedStringHashLayoutWise()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/mounting/tests/ |
| H A D | ABI49_0_0ShadowTreeLifeCycleTest.cpp | 30 uint_fast32_t seed, in testShadowNodeTreeLifeCycle() argument 34 auto entropy = seed == 0 ? Entropy() : Entropy(seed); in testShadowNodeTreeLifeCycle() 180 uint_fast32_t seed, in testShadowNodeTreeLifeCycleExtensiveFlatteningUnflattening() argument 184 auto entropy = seed == 0 ? Entropy() : Entropy(seed); in testShadowNodeTreeLifeCycleExtensiveFlatteningUnflattening()
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/mounting/tests/ |
| H A D | ABI48_0_0ShadowTreeLifeCycleTest.cpp | 30 uint_fast32_t seed, in testShadowNodeTreeLifeCycle() argument 34 auto entropy = seed == 0 ? Entropy() : Entropy(seed); in testShadowNodeTreeLifeCycle() 180 uint_fast32_t seed, in testShadowNodeTreeLifeCycleExtensiveFlatteningUnflattening() argument 184 auto entropy = seed == 0 ? Entropy() : Entropy(seed); in testShadowNodeTreeLifeCycleExtensiveFlatteningUnflattening()
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/mounting/tests/ |
| H A D | ABI47_0_0ShadowTreeLifeCycleTest.cpp | 31 uint_fast32_t seed, in testShadowNodeTreeLifeCycle() argument 35 auto entropy = seed == 0 ? Entropy() : Entropy(seed); in testShadowNodeTreeLifeCycle() 181 uint_fast32_t seed, in testShadowNodeTreeLifeCycleExtensiveFlatteningUnflattening() argument 185 auto entropy = seed == 0 ? Entropy() : Entropy(seed); in testShadowNodeTreeLifeCycleExtensiveFlatteningUnflattening()
|
| /expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/private/ |
| H A D | SkOpts_spi.h | 18 extern uint32_t SK_SPI (*hash_fn)(const void* data, size_t bytes, uint32_t seed);
|
| /expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/private/ |
| H A D | SkOpts_spi.h | 20 extern uint32_t SK_SPI (*hash_fn)(const void* data, size_t bytes, uint32_t seed);
|
| /expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/private/ |
| H A D | SkOpts_spi.h | 20 extern uint32_t SK_SPI (*hash_fn)(const void* data, size_t bytes, uint32_t seed);
|
| /expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/private/ |
| H A D | SkOpts_spi.h | 20 extern uint32_t SK_SPI (*hash_fn)(const void* data, size_t bytes, uint32_t seed);
|
| /expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/private/ |
| H A D | SkOpts_spi.h | 20 extern uint32_t SK_SPI (*hash_fn)(const void* data, size_t bytes, uint32_t seed);
|