Searched refs:Val (Results 26 - 50 of 319) sorted by relevance

1234567891011>>

/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h66 clang::ParsedSourceLocation &Val);
72 clang::ParsedSourceLocation &Val) {
75 Val = ParsedSourceLocation::FromString(ArgValue);
76 if (Val.FileName.empty()) {
71 parse(Option &O, StringRef ArgName, StringRef ArgValue, clang::ParsedSourceLocation &Val) argument
/external/clang/test/CodeCompletion/
H A Dfunction-templates.cpp6 X* dyn_cast(Y *Val);
18 // CHECK-CC1: dyn_cast<<#class X#>>(<#Y *Val#>)
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp53 void AsmPrinter::EmitCFAByte(unsigned Val) const {
55 if (Val >= dwarf::DW_CFA_offset && Val < dwarf::DW_CFA_offset+64)
57 Twine(Val-dwarf::DW_CFA_offset) + ")");
59 OutStreamer.AddComment(dwarf::CallFrameString(Val));
61 OutStreamer.EmitIntValue(Val, 1, 0/*addrspace*/);
95 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const { argument
99 Twine(DecodeDWARFEncoding(Val)));
102 DecodeDWARFEncoding(Val));
105 OutStreamer.EmitIntValue(Val,
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h86 uint64_t Val; // A literal value or data for an encoding. member in class:llvm::BitCodeAbbrevOp
91 Fixed = 1, // A fixed width field, Val specifies number of bits.
92 VBR = 2, // A VBR field where Val specifies the width of each chunk.
98 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
100 : Val(Data), IsLiteral(false), Enc(E) {}
106 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
112 return Val;
H A DBitstreamWriter.h121 void Emit(uint32_t Val, unsigned NumBits) { argument
123 assert((Val & ~(~0U >> (32-NumBits))) == 0 && "High bits set!");
124 CurValue |= Val << CurBit;
134 CurValue = Val >> (32-CurBit);
140 void Emit64(uint64_t Val, unsigned NumBits) { argument
142 Emit((uint32_t)Val, NumBits);
144 Emit((uint32_t)Val, 32);
145 Emit((uint32_t)(Val >> 32), NumBits-32);
157 void EmitVBR(uint32_t Val, unsigned NumBits) { argument
162 while (Val >
170 EmitVBR64(uint64_t Val, unsigned NumBits) argument
188 EmitCode(unsigned Val) argument
[all...]
/external/llvm/include/llvm/
H A DGlobalVariable.h146 void setConstant(bool Val) { isConstantGlobal = Val; } argument
150 void setThreadLocal(bool Val) { argument
151 threadLocalMode = Val ? GeneralDynamicTLSModel : NotThreadLocal;
153 void setThreadLocalMode(ThreadLocalMode Val) { threadLocalMode = Val; } argument
H A DUser.h92 void setOperand(unsigned i, Value *Val) {
97 OperandList[i] = Val;
149 static SimpleType getSimplifiedValue(const User::op_iterator &Val) {
150 return static_cast<SimpleType>(Val->get());
160 static SimpleType getSimplifiedValue(const User::const_op_iterator &Val) {
161 return static_cast<SimpleType>(Val->get());
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
65 BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
119 Value* Val, BasicBlock* OrigBlock,
125 return newLeafBlock(*Begin, Val, OrigBlock, Default);
138 BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
140 BasicBlock* RBranch = switchConvert(RHS.begin(), RHS.end(), Val,
146 BasicBlock* NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock");
151 Val, Pivot.Low, "Pivot");
163 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val, argument
168 BasicBlock* NewLeaf = BasicBlock::Create(Val
118 switchConvert(CaseItr Begin, CaseItr End, Value* Val, BasicBlock* OrigBlock, BasicBlock* Default) argument
262 Value *Val = SI->getCondition(); // The value we are switching on... local
[all...]
/external/llvm/include/llvm/ADT/
H A DPointerIntPair.h106 void setFromOpaqueValue(void *Val) { Value = reinterpret_cast<intptr_t>(Val);}
138 uintptr_t Val = static_cast<uintptr_t>(-1);
139 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
140 return Ty(reinterpret_cast<PointerTy>(Val), IntType((1 << IntBits)-1));
143 uintptr_t Val = static_cast<uintptr_t>(-2);
144 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
145 return Ty(reinterpret_cast<PointerTy>(Val), IntType(0));
H A DSparseSet.h54 static unsigned getValIndex(const ValueT &Val) { argument
55 return Val.getSparseSetIndex();
65 unsigned operator()(const ValueT &Val) const {
66 return SparseSetValTraits<ValueT>::getValIndex(Val);
238 /// If Val is successfully inserted, return (I, true), where I is an iterator
241 /// If the set already contains an element with the same key as Val, return
246 std::pair<iterator, bool> insert(const ValueT &Val) {
247 unsigned Idx = ValIndexOf(Val);
252 Dense.push_back(Val);
H A DScopedHashTable.h48 V Val; member in class:llvm::ScopedHashTableVal
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
53 const V &getValue() const { return Val; }
54 V &getValue() { return Val; }
107 void setLastValInScope(ScopedHashTableVal<K, V> *Val) { argument
108 LastValInScope = Val;
187 void insert(const K &Key, const V &Val) { argument
188 insertIntoScope(CurScope, Key, Val);
209 void insertIntoScope(ScopeTy *S, const K &Key, const V &Val) { argument
212 KeyEntry = ValTy::Create(S->getLastValInScope(), KeyEntry, Key, Val,
[all...]
/external/llvm/lib/Target/ARM/
H A DThumb2RegisterInfo.cpp39 int Val,
45 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
35 emitLoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) const argument
H A DThumb2RegisterInfo.h35 unsigned DestReg, unsigned SubIdx, int Val,
/external/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h59 token_iterator AddTokenBefore(token_iterator I, const char *Val);
60 token_iterator AddTokenAfter(token_iterator I, const char *Val) { argument
62 return AddTokenBefore(++I, Val);
/external/llvm/lib/Support/
H A DDebug.cpp58 void operator=(const std::string &Val) const {
59 DebugFlag |= !Val.empty();
60 CurrentDebugType = Val;
/external/llvm/lib/VMCore/
H A DConstantFold.h37 Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
38 Constant *ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt,
44 Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h86 static inline unsigned rotr32(unsigned Val, unsigned Amt) { argument
88 return (Val >> Amt) | (Val << ((32-Amt)&31));
93 static inline unsigned rotl32(unsigned Val, unsigned Amt) { argument
95 return (Val << Amt) | (Val >> ((32-Amt)&31));
528 static inline unsigned createNEONModImm(unsigned OpCmode, unsigned Val) {
529 return (OpCmode << 8) | Val;
544 uint64_t Val = 0;
548 Val
[all...]
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp90 uint64_t Val = ValC->getZExtValue() & 255; local
97 Val = (Val << 8) | Val;
102 Val = (Val << 8) | Val;
103 Val = (Val << 16) | Val;
[all...]
/external/clang/include/clang/Sema/
H A DOwnership.h131 /// stored in the low bit of the Val pointer.
135 PtrTy Val; member in class:clang::ActionResult
140 : Val(PtrTy()), Invalid(Invalid) {}
141 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
142 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
149 bool isUsable() const { return !Invalid && Val; }
151 PtrTy get() const { return Val; }
153 PtrTy release() const { return Val; }
154 PtrTy take() const { return Val; }
157 void set(PtrTy V) { Val
[all...]
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp190 static DecodeStatus DecodePredicateOperand(MCInst &Inst, unsigned Val,
192 static DecodeStatus DecodeCCOutOperand(MCInst &Inst, unsigned Val,
194 static DecodeStatus DecodeSOImmOperand(MCInst &Inst, unsigned Val,
196 static DecodeStatus DecodeRegListOperand(MCInst &Inst, unsigned Val,
198 static DecodeStatus DecodeSPRRegListOperand(MCInst &Inst, unsigned Val,
200 static DecodeStatus DecodeDPRRegListOperand(MCInst &Inst, unsigned Val,
234 static DecodeStatus DecodeAddrModeImm12Operand(MCInst &Inst, unsigned Val,
236 static DecodeStatus DecodeAddrMode5Operand(MCInst &Inst, unsigned Val,
238 static DecodeStatus DecodeAddrMode7Operand(MCInst &Inst, unsigned Val,
244 static DecodeStatus DecodeAddrMode6Operand(MCInst &Inst, unsigned Val,
1097 DecodePredicateOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1111 DecodeCCOutOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1120 DecodeSOImmOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1129 DecodeSORegImmOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1166 DecodeSORegRegOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1201 DecodeRegListOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1236 DecodeSPRRegListOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1253 DecodeDPRRegListOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1272 DecodeBitfieldMaskOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
1541 DecodeSORegMemOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2045 DecodeAddrModeImm12Operand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2065 DecodeAddrMode5Operand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2084 DecodeAddrMode7Operand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2131 DecodeAddrMode6Operand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2942 DecodeShiftRight8Imm(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2948 DecodeShiftRight16Imm(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2954 DecodeShiftRight32Imm(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
2960 DecodeShiftRight64Imm(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3026 DecodeThumbBROperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3034 DecodeT2BROperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3042 DecodeThumbCmpBROperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3050 DecodeThumbAddrModeRR(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3065 DecodeThumbAddrModeIS(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3079 DecodeThumbAddrModePC(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3089 DecodeThumbAddrModeSP(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3097 DecodeT2AddrModeSOReg(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3169 DecodeT2Imm8S4(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3183 DecodeT2AddrModeImm8s4(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3198 DecodeT2AddrModeImm0_1020s4(MCInst &Inst,unsigned Val, uint64_t Address, const void *Decoder) argument
3213 DecodeT2Imm8(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3226 DecodeT2AddrModeImm8(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3287 DecodeT2AddrModeImm12(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3362 DecodeThumbBLXOffset(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3386 DecodeCoprocessor(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3454 DecodeT2SOImm(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3486 DecodeThumbBCCTargetOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3494 DecodeThumbBLTargetOperand(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3517 DecodeMemBarrierOption(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
3526 DecodeMSRMask(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
4388 unsigned Val = fieldFromInstruction(Insn, 0, 8); local
4397 DecodeT2ShifterImmOperand(MCInst &Inst, uint32_t Val, uint64_t Address, const void *Decoder) argument
4491 DecodeLDR(MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
4518 DecodeMRRC2(llvm::MCInst &Inst, unsigned Val, uint64_t Address, const void *Decoder) argument
[all...]
/external/clang/include/clang/Lex/
H A DMacroInfo.h176 void setIsBuiltinMacro(bool Val = true) {
177 IsBuiltinMacro = Val;
182 void setIsUsed(bool Val) { argument
183 IsUsed = Val;
188 void setIsAllowRedefinitionsWithoutWarning(bool Val) { argument
189 IsAllowRedefinitionsWithoutWarning = Val;
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h81 } Val; member in class:llvm::MachineConstantPoolEntry
83 /// The required alignment for this entry. The top bit is set when Val is
89 Val.ConstVal = V;
93 Val.MachineCPVal = V;
/external/clang/lib/Rewrite/Core/
H A DTokenRewriter.cpp82 TokenRewriter::AddTokenBefore(token_iterator I, const char *Val) { argument
83 unsigned Len = strlen(Val);
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
/external/clang/include/clang/AST/
H A DASTDiagnostic.h38 intptr_t Val,
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp77 void EmitStoreThroughLValue(ComplexPairTy Val, LValue LV) { argument
79 return EmitStoreOfComplex(Val, LV.getAddress(), LV.isVolatileQualified());
84 void EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *ResPtr, bool isVol);
86 /// EmitComplexToComplexCast - Emit a cast from complex value Val to DestType.
87 ComplexPairTy EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType,
219 ComplexPairTy &Val);
262 ComplexPairTy &Val);
311 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *Ptr, argument
316 Builder.CreateStore(Val.first, RealPtr, isVolatile);
317 Builder.CreateStore(Val
354 EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType, QualType DestType) argument
596 EmitCompoundAssignLValue(const CompoundAssignOperator *E, ComplexPairTy (ComplexExprEmitter::*Func)(const BinOpInfo&), ComplexPairTy &Val) argument
640 ComplexPairTy Val; local
654 EmitBinAssignLValue(const BinaryOperator *E, ComplexPairTy &Val) argument
675 ComplexPairTy Val; local
802 ComplexPairTy Val = Emitter.Visit(const_cast<Expr*>(E)); local
821 ComplexPairTy Val; // ignored local
838 ComplexPairTy Val; // ignored local
[all...]

Completed in 352 milliseconds

1234567891011>>