Home
last modified time | relevance | path

Searched refs:kValue (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dms-inline-asm.cpp10 enum { kValue = 42 }; enumerator
39 __asm mov eax, A::B::kValue in test_field_lookup()
43 __asm mov eax, asdf::a_global.a3.kValue in test_field_lookup()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Dinterfaces-global-init.cpp72 static constexpr const char kValue[] = "value"; variable
74 static int kFingerprint = Fingerprint(kValue);
/llvm-project-15.0.7/llvm/unittests/Support/
H A DMathExtrasTest.cpp279 static const float kValue = 5632.34f; in TEST() local
280 EXPECT_FLOAT_EQ(kValue, BitsToFloat(FloatToBits(kValue))); in TEST()
284 static const double kValue = 87987234.983498; in TEST() local
285 EXPECT_DOUBLE_EQ(kValue, BitsToDouble(DoubleToBits(kValue))); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DAlignment.h96 template <size_t kValue> constexpr static LogValue Constant() { in Constant()
97 return LogValue{static_cast<uint8_t>(CTLog2<kValue>())}; in Constant()
H A DMathExtras.h603 template <size_t kValue> constexpr inline size_t CTLog2() {
604 static_assert(kValue > 0 && llvm::isPowerOf2_64(kValue),
606 return 1 + CTLog2<kValue / 2>();