Searched refs:kValue (Results 1 – 5 of 5) sorted by relevance
10 enum { kValue = 42 }; enumerator39 __asm mov eax, A::B::kValue in test_field_lookup()43 __asm mov eax, asdf::a_global.a3.kValue in test_field_lookup()
72 static constexpr const char kValue[] = "value"; variable74 static int kFingerprint = Fingerprint(kValue);
279 static const float kValue = 5632.34f; in TEST() local280 EXPECT_FLOAT_EQ(kValue, BitsToFloat(FloatToBits(kValue))); in TEST()284 static const double kValue = 87987234.983498; in TEST() local285 EXPECT_DOUBLE_EQ(kValue, BitsToDouble(DoubleToBits(kValue))); in TEST()
96 template <size_t kValue> constexpr static LogValue Constant() { in Constant()97 return LogValue{static_cast<uint8_t>(CTLog2<kValue>())}; in Constant()
603 template <size_t kValue> constexpr inline size_t CTLog2() {604 static_assert(kValue > 0 && llvm::isPowerOf2_64(kValue),606 return 1 + CTLog2<kValue / 2>();