HomeSort by relevance Sort by last modified time
    Searched defs:isUnsigned (Results 1 - 11 of 11) sorted by null

  /external/clang/test/CodeGen/
pascal-wchar-string.c 38 // CHECK: store volatile i32 1, i32* %isUnsigned
40 volatile int isUnsigned = (wchar_t)-1 > (wchar_t)0;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_var.h 56 inline bool isUnsigned() const { return mIsUnsigned; }
  /external/clang/include/clang/Basic/
TargetBuiltins.h 123 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
124 if (IsUnsigned)
135 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 298 bool VariantValue::isUnsigned() const {
303 assert(isUnsigned());
346 if (!isUnsigned())
  /external/clang/lib/Lex/
PPExpressions.cpp 43 bool isUnsigned() const { return Val.isUnsigned(); }
248 Result.Val.setIsUnsigned(Literal.isUnsigned);
254 if (!Literal.isUnsigned && Result.Val.isNegative()) {
371 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
547 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
550 if (ValueLive && Res.isUnsigned()) {
551 if (!LHS.isUnsigned() && LHS.Val.isNegative())
556 if (!RHS.isUnsigned() && RHS.Val.isNegative()
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 144 const bool isUnsigned = glu::isDataTypeUintOrUVec(dataType);
146 if (isUnsigned)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 142 const bool isUnsigned = glu::isDataTypeUintOrUVec(dataType);
144 if (isUnsigned)
    [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 138 static bool isUnsigned(Kind Cmp) {
    [all...]

Completed in 958 milliseconds