HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 101 - 125 of 580) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 111 uint64_t Val = ValC->getZExtValue() & 255;
118 Val = (Val << 8) | Val;
123 Val = (Val << 8) | Val;
124 Val = (Val << 16) | Val;
    [all...]
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.h 162 DoNothingAndReturn(ReturnT Val) : Val(Val) {}
165 ReturnT operator()(Args...) const { return Val; }
167 ReturnT Val;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits2_0.h 107 HRESULT (WINAPI *SetDisplayName)(IBackgroundCopyJob3 *This,LPCWSTR Val);
109 HRESULT (WINAPI *SetDescription)(IBackgroundCopyJob3 *This,LPCWSTR Val);
111 HRESULT (WINAPI *SetPriority)(IBackgroundCopyJob3 *This,BG_JOB_PRIORITY Val);
113 HRESULT (WINAPI *SetNotifyFlags)(IBackgroundCopyJob3 *This,ULONG Val);
115 HRESULT (WINAPI *SetNotifyInterface)(IBackgroundCopyJob3 *This,IUnknown *Val);
160 #define IBackgroundCopyJob3_SetDisplayName(This,Val) (This)->lpVtbl -> SetDisplayName(This,Val)
162 #define IBackgroundCopyJob3_SetDescription(This,Val) (This)->lpVtbl -> SetDescription(This,Val)
164 #define IBackgroundCopyJob3_SetPriority(This,Val) (This)->lpVtbl -> SetPriority(This,Val
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 230 CAMLprim value llvm_dump_type(LLVMTypeRef Val) {
231 LLVMDumpType(Val);
469 CAMLprim LLVMTypeRef llvm_type_of(LLVMValueRef Val) {
470 return LLVMTypeOf(Val);
500 #define DEFINE_CASE(Val, Kind) \
501 do {if (LLVMIsA##Kind(Val)) CAMLreturn(Val_int(Kind));} while(0)
503 CAMLprim value llvm_classify_value(LLVMValueRef Val) {
505 if (!Val)
507 if (LLVMIsAConstant(Val)) {
508 DEFINE_CASE(Val, BlockAddress)
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 175 static DecodeStatus DecodePredicateOperand(MCInst &Inst, unsigned Val,
177 static DecodeStatus DecodeCCOutOperand(MCInst &Inst, unsigned Val,
179 static DecodeStatus DecodeRegListOperand(MCInst &Inst, unsigned Val,
181 static DecodeStatus DecodeSPRRegListOperand(MCInst &Inst, unsigned Val,
183 static DecodeStatus DecodeDPRRegListOperand(MCInst &Inst, unsigned Val,
221 static DecodeStatus DecodeAddrModeImm12Operand(MCInst &Inst, unsigned Val,
223 static DecodeStatus DecodeAddrMode5Operand(MCInst &Inst, unsigned Val,
225 static DecodeStatus DecodeAddrMode7Operand(MCInst &Inst, unsigned Val,
231 static DecodeStatus DecodeAddrMode6Operand(MCInst &Inst, unsigned Val,
233 static DecodeStatus DecodeVLDST1Instruction(MCInst &Inst, unsigned Val,
    [all...]
  /external/clang/include/clang/Basic/
IdentifierTable.h 132 void setHasMacroDefinition(bool Val) {
133 if (HasMacro == Val) return;
135 HasMacro = Val;
136 if (Val) {
226 void setIsExtensionToken(bool Val) {
227 IsExtension = Val;
228 if (Val)
240 void setIsFutureCompatKeyword(bool Val) {
241 IsFutureCompatKeyword = Val;
242 if (Val)
    [all...]
Diagnostic.h 318 ArgumentKind Kind, intptr_t Val,
440 void setIgnoreAllWarnings(bool Val) { IgnoreAllWarnings = Val; }
447 void setEnableAllWarnings(bool Val) { EnableAllWarnings = Val; }
451 void setWarningsAsErrors(bool Val) { WarningsAsErrors = Val; }
455 void setErrorsAsFatal(bool Val) { ErrorsAsFatal = Val; }
459 void setSuppressSystemWarnings(bool Val) { SuppressSystemWarnings = Val;
    [all...]
  /external/llvm/include/llvm-c/
Core.h 579 LLVMValueRef Val);
689 void LLVMDumpType(LLVMTypeRef Val);
697 char *LLVMPrintTypeToString(LLVMTypeRef Val);
    [all...]
  /external/llvm/include/llvm/IR/
Constants.h 52 APInt Val;
107 return Val;
111 unsigned getBitWidth() const { return Val.getBitWidth(); }
118 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.isAllOnesValue()
    [all...]
GlobalValue.h 132 void setUnnamedAddr(bool Val) { UnnamedAddr = Val; }
154 void setThreadLocal(bool Val) {
155 setThreadLocalMode(Val ? GeneralDynamicTLSModel : NotThreadLocal);
157 void setThreadLocalMode(ThreadLocalMode Val) {
158 assert(Val == NotThreadLocal || getValueID() != Value::FunctionVal);
159 ThreadLocal = Val;
  /external/libedit/src/
terminal.c 90 #define Val(a) el->el_terminal.t_val[a]
228 EL_FLAGS |= (Val(T_pt) && !Val(T_xt)) ? TERM_CAN_TAB : 0;
230 EL_FLAGS |= (Val(T_km) || Val(T_MT)) ? TERM_HAS_META : 0;
236 EL_FLAGS |= Val(T_am) ? TERM_HAS_AUTO_MARGINS : 0;
237 EL_FLAGS |= Val(T_xn) ? TERM_HAS_MAGIC_MARGINS : 0;
400 c->h = Val(T_co);
401 c->v = Val(T_li);
821 terminal_tputs(el, Str(T_cl), Val(T_li))
    [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 65 unsigned Val;
68 AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len = 0, unsigned val = 0)
69 : Kind(kind), Loc(loc), Len(len), Val(val) {}
71 : Kind(kind), Loc(loc), Len(len), Val(0), Label(label) {}
MCAsmLayout.h 94 bool getSymbolOffset(const MCSymbol &S, uint64_t &Val) const;
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 200 unsigned Val;
201 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
206 if (Val >= NumOperands-1)
217 for (; Val; --Val) {
334 std::string Val(StrStart, StrEnd);
335 AP->PrintSpecial(MI, OS, Val.c_str());
344 unsigned Val;
345 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
371 if (Val >= NumOperands-1
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 84 Value *Val, BasicBlock *Predecessor,
87 BasicBlock *newLeafBlock(CaseRange &Leaf, Value *Val, BasicBlock *OrigBlock,
202 /// used to keep track of the bounds for Val that have already been checked by
207 ConstantInt *UpperBound, Value *Val,
226 return newLeafBlock(*Begin, Val, OrigBlock, Default);
278 BasicBlock* NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock");
281 Val, Pivot.Low, "Pivot");
284 NewUpperBound, Val, NewNode, OrigBlock,
287 UpperBound, Val, NewNode, OrigBlock,
301 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val,
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 428 ARMCC::CondCodes Val;
432 unsigned Val;
436 unsigned Val;
444 ARM_MB::MemBOpt Val;
448 ARM_ISB::InstSyncBOpt Val;
452 ARM_PROC::IFlags Val;
456 unsigned Val;
460 unsigned Val;
481 unsigned Val;
485 const MCExpr *Val;
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h     [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 144 static unsigned getHashValue(const clang::CodeGen::TBAAPathTag &Val) {
145 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^
146 DenseMapInfo<const MDNode *>::getHashValue(Val.AccessN) ^
147 DenseMapInfo<uint64_t>::getHashValue(Val.Offset);
  /external/llvm/include/llvm/ADT/
DenseMap.h 119 size_type count(const KeyT &Val) const {
121 return LookupBucketFor(Val, TheBucket) ? 1 : 0;
124 iterator find(const KeyT &Val) {
126 if (LookupBucketFor(Val, TheBucket))
130 const_iterator find(const KeyT &Val) const {
132 if (LookupBucketFor(Val, TheBucket))
143 iterator find_as(const LookupKeyT &Val) {
145 if (LookupBucketFor(Val, TheBucket))
150 const_iterator find_as(const LookupKeyT &Val) const {
152 if (LookupBucketFor(Val, TheBucket)
    [all...]
DenseSet.h 139 iterator find_as(const LookupKeyT &Val) {
140 return Iterator(TheMap.find_as(Val));
143 const_iterator find_as(const LookupKeyT &Val) const {
144 return ConstIterator(TheMap.find_as(Val));
IntrusiveRefCntPtr.h 274 static SimpleType getSimplifiedValue(IntrusiveRefCntPtr<T>& Val) {
275 return Val.get();
281 static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) {
282 return Val.get();
  /external/llvm/include/llvm/Support/
Registry.h 89 const entry& Val;
92 node(const entry& V) : Next(nullptr), Val(V) {
114 const entry &operator*() const { return Cur->Val; }
115 const entry *operator->() const { return &Cur->Val; }
  /external/llvm/lib/IR/
Core.cpp 536 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
537 return wrap(unwrap(Val)->getType());
540 const char *LLVMGetValueName(LLVMValueRef Val) {
541 return unwrap(Val)->getName().data();
544 void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
545 unwrap(Val)->setName(Name);
548 void LLVMDumpValue(LLVMValueRef Val) {
549 unwrap(Val)->dump();
552 char* LLVMPrintValueToString(LLVMValueRef Val) {
556 if (unwrap(Val))
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SILowerI1Copies.cpp 120 int64_t Val = DefInst->getOperand(1).getImm();
121 assert(Val == 0 || Val == -1);
125 .addImm(Val);

Completed in 895 milliseconds

1 2 3 45 6 7 8 91011>>