Searched refs:Val (Results 51 - 75 of 319) sorted by relevance

1234567891011>>

/external/llvm/include/llvm-c/
H A DCore.h535 LLVMValueRef Val);
1088 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
1095 const char *LLVMGetValueName(LLVMValueRef Val);
1102 void LLVMSetValueName(LLVMValueRef Val, const char *Name);
1109 void LLVMDumpValue(LLVMValueRef Val);
1121 LLVMBool LLVMIsConstant(LLVMValueRef Val);
1126 LLVMBool LLVMIsUndef(LLVMValueRef Val);
1140 LLVMValueRef LLVMIsA##name(LLVMValueRef Val);
1170 LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val);
1215 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigne
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-self.cpp31 enum { Val = 1 }; enumerator in enum:test3::A::B::__anon4812
32 char c[1 + Val]; // ok
/external/llvm/include/llvm/ADT/
H A DValueMap.h113 bool count(const KeyT &Val) const {
114 return Map.find_as(Val) != Map.end();
117 iterator find(const KeyT &Val) { argument
118 return iterator(Map.find_as(Val));
120 const_iterator find(const KeyT &Val) const {
121 return const_iterator(Map.find_as(Val));
126 ValueT lookup(const KeyT &Val) const {
127 typename MapT::const_iterator I = Map.find_as(Val);
148 bool erase(const KeyT &Val) { argument
149 typename MapT::iterator I = Map.find_as(Val);
262 getHashValue(const VH &Val) argument
265 getHashValue(const KeyT &Val) argument
[all...]
H A DDenseMap.h101 bool count(const KeyT &Val) const {
103 return LookupBucketFor(Val, TheBucket);
106 iterator find(const KeyT &Val) { argument
108 if (LookupBucketFor(Val, TheBucket))
112 const_iterator find(const KeyT &Val) const {
114 if (LookupBucketFor(Val, TheBucket))
125 iterator find_as(const LookupKeyT &Val) { argument
127 if (LookupBucketFor(Val, TheBucket))
132 const_iterator find_as(const LookupKeyT &Val) const {
134 if (LookupBucketFor(Val, TheBucke
170 erase(const KeyT &Val) argument
313 getHashValue(const KeyT &Val) argument
317 getHashValue(const LookupKeyT &Val) argument
443 LookupBucketFor(const LookupKeyT &Val, const BucketT *&FoundBucket) const argument
494 LookupBucketFor(const LookupKeyT &Val, BucketT *&FoundBucket) argument
[all...]
H A DIntrusiveRefCntPtr.h229 static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) { argument
230 return Val.getPtr();
236 static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) { argument
237 return Val.getPtr();
H A DOptional.h55 static SimpleType getSimplifiedValue(const Optional<T> &Val) { argument
56 return Val.getPointer();
H A DStatistic.h54 const Statistic &operator=(unsigned Val) { argument
55 Value = Val;
H A DSmallPtrSet.h213 enum { Val = N }; enumerator in enum:llvm::RoundUpToPowerOfTwoH::__anon8426
220 Val = RoundUpToPowerOfTwo<(N|(N-1)) + 1>::Val enumerator in enum:llvm::RoundUpToPowerOfTwoH::__anon8427
226 enum { Val = RoundUpToPowerOfTwoH<N, (N&(N-1)) == 0>::Val }; enumerator in enum:llvm::RoundUpToPowerOfTwo::__anon8428
237 enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp199 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val);
200 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val,
205 Constant *Val, bool isEqual);
207 void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val,
216 bool IsTrivialUnswitchCondition(Value *Cond, Constant **Val = 0,
547 /// returning true, this sets Cond and Val to the condition that controls the
548 /// trivial condition: when Cond dynamically equals Val, the loop is known to
550 /// Cond == Val.
552 bool LoopUnswitch::IsTrivialUnswitchCondition(Value *Cond, Constant **Val, argument
571 if (Val) *Va
626 UnswitchIfProfitable(Value *LoopCond, Constant *Val) argument
671 EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val, BasicBlock *TrueDest, BasicBlock *FalseDest, Instruction *InsertPt) argument
699 UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val, BasicBlock *ExitBlock) argument
765 UnswitchNontrivialCondition(Value *LIC, Constant *Val, Loop *L) argument
1066 RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC, Constant *Val, bool IsEqual) argument
[all...]
/external/clang/include/clang/Basic/
H A DIdentifierTable.h132 void setHasMacroDefinition(bool Val) { argument
133 if (HasMacro == Val) return;
135 HasMacro = Val;
136 if (Val)
200 void setIsExtensionToken(bool Val) { argument
201 IsExtension = Val;
202 if (Val)
213 void setIsCXX11CompatKeyword(bool Val) { argument
214 IsCXX11CompatKeyword = Val;
215 if (Val)
[all...]
H A DDiagnostic.h319 ArgumentKind Kind, intptr_t Val,
427 void setIgnoreAllWarnings(bool Val) { IgnoreAllWarnings = Val; } argument
434 void setEnableAllWarnings(bool Val) { EnableAllWarnings = Val; } argument
438 void setWarningsAsErrors(bool Val) { WarningsAsErrors = Val; } argument
442 void setErrorsAsFatal(bool Val) { ErrorsAsFatal = Val; } argument
446 void setSuppressSystemWarnings(bool Val) { SuppressSystemWarning argument
476 setShowOverloads(OverloadsShown Val) argument
582 ConvertArgToString(ArgumentKind Kind, intptr_t Val, const char *Modifier, unsigned ModLen, const char *Argument, unsigned ArgLen, const ArgumentValue *PrevArgs, unsigned NumPrevArgs, SmallVectorImpl<char> &Output, SmallVectorImpl<intptr_t> &QualTypeVals) const argument
[all...]
/external/llvm/include/llvm/
H A DConstants.h55 APInt Val; member in class:llvm::ConstantInt
105 return Val;
109 unsigned getBitWidth() const { return Val.getBitWidth(); }
117 return Val.getZExtValue();
126 return Val.getSExtValue();
134 return Val == V;
156 bool isNegative() const { return Val.isNegative(); }
162 return Val == 0;
170 return Val == 1;
178 return Val
235 APFloat Val; member in class:llvm::ConstantFP
[all...]
/external/llvm/lib/Target/ARM/
H A DARMMCInstLower.cpp101 APFloat Val = MO.getFPImm()->getValueAPF(); local
103 Val.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &ignored);
104 MCOp = MCOperand::CreateFPImm(Val.convertToDouble());
/external/clang/lib/Lex/
H A DLiteralSupport.cpp757 /// matches Val's input width. If there is an overflow, set Val to the low bits
759 bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) { argument
774 // This will truncate the value to Val's input width. Simply check
776 Val = N;
777 return Val.getZExtValue() != N;
780 Val = 0;
783 llvm::APInt RadixVal(Val.getBitWidth(), radix);
784 llvm::APInt CharVal(Val.getBitWidth(), 0);
785 llvm::APInt OldVal = Val;
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c404 CAMLprim LLVMTypeRef llvm_type_of(LLVMValueRef Val) { argument
405 return LLVMTypeOf(Val);
433 #define DEFINE_CASE(Val, Kind) \
434 do {if (LLVMIsA##Kind(Val)) CAMLreturn(Val_int(Kind));} while(0)
436 CAMLprim value llvm_classify_value(LLVMValueRef Val) { argument
438 if (!Val)
440 if (LLVMIsAConstant(Val)) {
441 DEFINE_CASE(Val, BlockAddress);
442 DEFINE_CASE(Val, ConstantAggregateZero);
443 DEFINE_CASE(Val, ConstantArra
472 llvm_value_name(LLVMValueRef Val) argument
477 llvm_set_value_name(value Name, LLVMValueRef Val) argument
483 llvm_dump_value(LLVMValueRef Val) argument
509 llvm_is_constant(LLVMValueRef Val) argument
514 llvm_is_null(LLVMValueRef Val) argument
519 llvm_is_undef(LLVMValueRef Val) argument
524 llvm_constexpr_get_opcode(LLVMValueRef Val) argument
532 llvm_has_metadata(LLVMValueRef Val) argument
537 llvm_metadata(LLVMValueRef Val, value MDKindID) argument
549 llvm_set_metadata(LLVMValueRef Val, value MDKindID, LLVMValueRef MD) argument
556 llvm_clear_metadata(LLVMValueRef Val, value MDKindID) argument
740 llvm_const_insertvalue(LLVMValueRef Aggregate, LLVMValueRef Val, value Indices) argument
819 llvm_use_begin(LLVMValueRef Val) argument
1151 llvm_value_is_block(LLVMValueRef Val) argument
1171 llvm_instr_icmp_predicate(LLVMValueRef Val) argument
1363 llvm_build_ret(LLVMValueRef Val, value B) argument
1402 llvm_build_array_malloc(LLVMTypeRef Ty, LLVMValueRef Val, value Name, value B) argument
1938 llvm_build_insertvalue(LLVMValueRef Aggregate, LLVMValueRef Val, value Idx, value Name, value B) argument
1946 llvm_build_is_null(LLVMValueRef Val, value Name, value B) argument
1952 llvm_build_is_not_null(LLVMValueRef Val, value Name, value B) argument
[all...]
/external/clang/include/clang/AST/
H A DDeclBase.h1562 static const ToTy *doit(const DeclContext *Val) { argument
1563 return static_cast<const ToTy*>(Decl::castFromDeclContext(Val));
1566 static ToTy *doit(DeclContext *Val) { argument
1567 return static_cast<ToTy*>(Decl::castFromDeclContext(Val));
1574 static const ToTy *doit(const DeclContext *Val) { argument
1575 return static_cast<const ToTy*>(Val);
1578 static ToTy *doit(DeclContext *Val) { argument
1579 return static_cast<ToTy*>(Val);
1591 static bool doit(const ::clang::DeclContext &Val) { argument
1592 return To::classofKind(Val
1600 doit(const ::clang::DeclContext &Val) argument
1606 doit(::clang::DeclContext &Val) argument
1613 doit(const ::clang::DeclContext *Val) argument
1619 doit(::clang::DeclContext *Val) argument
1627 doit(const FromTy &Val) argument
1634 doit(const FromTy *Val) argument
1641 doit(const FromTy &Val) argument
1648 doit(const FromTy *Val) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h247 bool Val; member in struct:clang::ento::DefaultBool
248 DefaultBool() : Val(false) {}
249 operator bool() const { return Val; }
250 DefaultBool &operator=(bool b) { Val = b; return *this; }
/external/llvm/include/llvm/Support/
H A DRegistry.h86 const entry& Val; member in class:llvm::Registry::node
89 node(const entry& V) : Next(0), Val(V) {
112 const entry &operator*() const { return Cur->Val; }
113 const entry *operator->() const { return &Cur->Val; }
/external/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp59 APFloat Val = MO.getFPImm()->getValueAPF(); local
62 MCO = MCOperand::CreateImm(*Val.bitcastToAPInt().getRawData());
/external/stlport/test/eh/
H A Dtest_construct.h81 Value_type Val = 0; local
82 T t( n, Val );
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp313 ARMCC::CondCodes Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8854
317 unsigned Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8855
321 unsigned Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8856
329 ARM_MB::MemBOpt Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8858
333 ARM_PROC::IFlags Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8859
337 unsigned Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8860
358 unsigned Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8864
362 const MCExpr *Val; member in struct:__anon8852::ARMOperand::__anon8853::__anon8865
495 return CC.Val;
500 return Cop.Val;
556 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue())); local
1528 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue())); local
1594 int Val = CE->getValue(); local
1668 int Val = CE->getValue(); local
1680 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; local
1898 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 2) : 0; local
1905 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue()) : 0; local
1912 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0; local
2101 CreateCoprocOption(unsigned Val, SMLoc S, SMLoc E) argument
2257 CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) argument
2795 int Val = CE->getValue(); local
3012 int64_t Val = CE->getValue(); local
3327 int Val = CE->getValue(); local
3539 int Val = CE->getValue(); local
3558 int Val = StringSwitch<int>(Tok.getString()) local
3619 int64_t Val = CE->getValue(); local
3680 int64_t Val = CE->getValue(); local
3843 int32_t Val = CE->getValue(); local
4505 int64_t Val = Tok.getIntVal(); local
4595 int32_t Val = CE->getValue(); local
[all...]
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp100 const MCExpr *Val; member in struct:__anon8910::MBlazeOperand::__anon8911::__anon8914
110 const MCExpr *Val; member in struct:__anon8910::MBlazeOperand::__anon8911::__anon8916
152 return Imm.Val;
157 return FslImm.Val;
242 static MBlazeOperand *CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) { argument
244 Op->Imm.Val = Val;
250 static MBlazeOperand *CreateFslImm(const MCExpr *Val, SMLoc S, SMLoc E) { argument
252 Op->Imm.Val = Val;
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp288 std::string Val(StrStart, StrEnd);
289 PrintSpecial(MI, OS, Val.c_str());
298 unsigned Val; local
299 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
325 if (Val >= NumOperands-1)
337 for (; Val; --Val) {
/external/llvm/lib/VMCore/
H A DCore.cpp424 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) { argument
425 return wrap(unwrap(Val)->getType());
428 const char *LLVMGetValueName(LLVMValueRef Val) { argument
429 return unwrap(Val)->getName().data();
432 void LLVMSetValueName(LLVMValueRef Val, const char *Name) { argument
433 unwrap(Val)->setName(Name);
436 void LLVMDumpValue(LLVMValueRef Val) { argument
437 unwrap(Val)->dump();
459 LLVMValueRef LLVMIsA##name(LLVMValueRef Val) { \
460 return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
466 LLVMGetFirstUse(LLVMValueRef Val) argument
490 LLVMGetOperand(LLVMValueRef Val, unsigned Index) argument
497 LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) argument
501 LLVMGetNumOperands(LLVMValueRef Val) argument
526 LLVMIsNull(LLVMValueRef Val) argument
532 LLVMIsUndef(LLVMValueRef Val) argument
588 LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name, LLVMValueRef Val) argument
910 Constant* Val = unwrap<Constant>(ConstantVal); local
1474 LLVMValueIsBasicBlock(LLVMValueRef Val) argument
1478 LLVMValueAsBasicBlock(LLVMValueRef Val) argument
1849 LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val) argument
2022 LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef Val, const char *Name) argument
2038 LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef Val, const char *Name) argument
2054 LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val, LLVMValueRef PointerVal) argument
2104 LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2109 LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2114 LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2119 LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2124 LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2129 LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2134 LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2139 LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2144 LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2149 LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2154 LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2159 LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2164 LLVMBuildZExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2170 LLVMBuildSExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2176 LLVMBuildTruncOrBitCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2182 LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2188 LLVMBuildPointerCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2193 LLVMBuildIntCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2199 LLVMBuildFPCast(LLVMBuilderRef B, LLVMValueRef Val, LLVMTypeRef DestTy, const char *Name) argument
2278 LLVMBuildIsNull(LLVMBuilderRef B, LLVMValueRef Val, const char *Name) argument
2283 LLVMBuildIsNotNull(LLVMBuilderRef B, LLVMValueRef Val, const char *Name) argument
[all...]
/external/llvm/include/llvm/MC/
H A DMCRegisterInfo.h179 uint16_t Val; member in class:llvm::MCRegisterInfo::DiffListIterator
184 DiffListIterator() : Val(0), List(0) {}
190 Val = InitVal;
200 Val += D;
210 unsigned operator*() const { return Val; }

Completed in 1188 milliseconds

1234567891011>>