Home
last modified time | relevance | path

Searched refs:UResult (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dhicpp-signed-bitwise-standard-types.cpp82 unsigned int UResult = 0u; in still_forbidden() local
108 UResult = std::locale::category::collate << 1u; in still_forbidden()
109 UResult = std::locale::category::ctype << 1; in still_forbidden()
111 UResult = std::locale::category::monetary >> 1u; in still_forbidden()
112 UResult = std::locale::category::numeric >> 1; in still_forbidden()
115 UResult = ~std::locale::category::messages; in still_forbidden()
121 UResult = std::ctype_base::mask::space | 8; in still_forbidden()
123 UResult = std::ctype_base::mask::print & 8u; in still_forbidden()
125 UResult = std::ctype_base::mask::cntrl ^ -8; in still_forbidden()
128 UResult = std::ctype_base::mask::upper << 1; in still_forbidden()
[all …]
Dhicpp-signed-bitwise.cpp31 unsigned int UResult; in binary_bitwise() local
40 UResult = SValue & 1; in binary_bitwise()
42 UResult = SValue & -1; in binary_bitwise()
44 UResult&= 1; in binary_bitwise()
47 UResult = UValue & 1u; // Ok in binary_bitwise()
48 UResult = UValue & UValue; // Ok in binary_bitwise()
49 UResult&= 2u; // Ok in binary_bitwise()
65 UResult = UValue & (SByte1 + (SByte1 | SByte2)); in binary_bitwise()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DMathExtras.h883 const U UResult = UX + UY;
886 Result = static_cast<T>(UResult);
910 const U UResult = UX - UY;
913 Result = static_cast<T>(UResult);
935 const U UResult = UX * UY;
939 Result = IsNegative ? (0 - UResult) : UResult;
/external/llvm-project/llvm/include/llvm/Support/
DMathExtras.h893 const U UResult = UX + UY;
896 Result = static_cast<T>(UResult);
919 const U UResult = UX - UY;
922 Result = static_cast<T>(UResult);
942 const U UResult = UX * UY;
946 Result = IsNegative ? (0 - UResult) : UResult;
/external/llvm-project/polly/lib/Transform/
DSimplify.cpp113 isl::union_map UResult = in underapproximatedAddMap() local
115 UResult.add_map(Result); in underapproximatedAddMap()
117 return UResult; in underapproximatedAddMap()
DZoneAlgo.cpp625 auto UResult = getScatterFor(std::move(UDomain)); in getScatterFor() local
626 auto Result = singleton(std::move(UResult), std::move(ResultSpace)); in getScatterFor()