Searched refs:IsInt (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
H A D | ResourceScriptStmt.h | 137 bool IsInt; variable 141 IntOrString(uint32_t Value) : Data(Value), IsInt(1) {} in IntOrString() 142 IntOrString(RCInt Value) : Data(Value), IsInt(1) {} in IntOrString() 143 IntOrString(StringRef Value) : Data(Value), IsInt(0) {} in IntOrString() 145 : Data(Token), IsInt(Token.kind() == RCToken::Kind::Int) {} in IntOrString() 148 return !IsInt && Data.String.equals_lower(Str); in equalsLower() 151 bool isInt() const { return IsInt; } in isInt() 154 assert(IsInt); in getInt() 159 assert(!IsInt); in getString()
|
H A D | ResourceScriptStmt.cpp | 20 if (Item.IsInt) in operator <<()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstructions.td | 480 multiclass ret_noret_binary_atomic_op<SDNode atomic_op, bit IsInt = 1> { 483 defm "_"#as : binary_atomic_op<atomic_op, IsInt>; 486 defm "_"#as#"_noret" : binary_atomic_op<atomic_op, IsInt>; 490 defm "_"#as#"_ret" : binary_atomic_op<atomic_op, IsInt>;
|
H A D | SIInstrInfo.td | 656 bit IsInt = 1> { 664 defm _local_m0 : binary_atomic_op <!cast<SDNode>(NAME#"_glue"), IsInt>; 668 defm _region_m0 : binary_atomic_op <!cast<SDNode>(NAME#"_glue"), IsInt>;
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | DeclCXX.cpp | 3286 auto IsInt = [&Ctx](unsigned N) { in isValidStructGUID() local 3324 return IsStruct({IsInt(32), IsInt(16), IsInt(16), IsArray(IsInt(8), 8)})(T); in isValidStructGUID()
|
H A D | ExprConstant.cpp | 1511 bool IsInt; member 1519 void makeComplexFloat() { IsInt = false; } in makeComplexFloat() 1520 bool isComplexFloat() const { return !IsInt; } in isComplexFloat() 1524 void makeComplexInt() { IsInt = true; } in makeComplexInt() 1525 bool isComplexInt() const { return IsInt; } in isComplexInt()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/ |
H A D | TargetSelectionDAG.td | 1530 multiclass binary_atomic_op<SDNode atomic_op, bit IsInt = 1> { 1534 let MemoryVT = !if(IsInt, i8, ?); 1539 let MemoryVT = !if(IsInt, i16, f16); 1544 let MemoryVT = !if(IsInt, i32, f32); 1549 let MemoryVT = !if(IsInt, i64, f64);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
H A D | CombinerHelper.cpp | 3136 bool IsInt = false; in matchNotCmp() local 3151 IsInt = true; in matchNotCmp() 3155 if (IsInt) in matchNotCmp()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | TargetInfo.cpp | 10553 bool IsInt = Ty->isIntegralOrEnumerationType(); in detectFPCCEligibleStructHelper() local 10556 if (IsInt || IsFloat) { in detectFPCCEligibleStructHelper() 10558 if (IsInt && Size > XLen) in detectFPCCEligibleStructHelper() 10567 if (IsInt && Field1Ty && Field1Ty->isIntegerTy()) in detectFPCCEligibleStructHelper()
|