HomeSort by relevance Sort by last modified time
    Searched refs:dl (Results 1 - 25 of 641) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/devlink/
devlink.c 203 struct dl { struct
222 static int dl_argc(struct dl *dl)
224 return dl->argc;
227 static char *dl_argv(struct dl *dl)
229 if (dl_argc(dl) == 0)
231 return *dl->argv;
234 static void dl_arg_inc(struct dl *dl)
360 struct dl *dl = data; local
1483 struct dl *dl = data; local
1554 struct dl *dl = data; local
1656 struct dl *dl = data; local
1799 struct dl *dl = data; local
1874 struct dl *dl = data; local
1959 struct dl *dl = data; local
2061 struct dl *dl = data; local
2166 struct dl *dl; member in struct:occ_show
2311 struct dl *dl = occ_show->dl; local
2587 struct dl *dl = data; local
2679 struct dl *dl; member in struct:dpipe_ctx
3881 struct dl *dl; local
3947 struct dl *dl; local
    [all...]
  /external/elfutils/libelf/
elf_hash.c 37 #include <dl-hash.h>
elf_strptr.c 213 struct Elf_Data_List *dl = &strscn->data_list; local
214 while (dl != NULL)
216 if (offset >= (size_t) dl->data.d.d_off
217 && offset < dl->data.d.d_off + dl->data.d.d_size)
221 if (likely (validate_str ((char *) dl->data.d.d_buf,
222 offset - dl->data.d.d_off,
223 dl->data.d.d_size)))
224 result = ((char *) dl->data.d.d_buf
225 + (offset - dl->data.d.d_off))
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-byval.cpp 26 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
29 if (dl == n)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dl.py 7 dl = import_module('dl', deprecated=True) variable
21 l = dl.open(s)
22 except dl.error, err:
  /external/python/cpython2/Lib/test/
test_dl.py 6 dl = import_module('dl', deprecated=True) variable
20 l = dl.open(s)
21 except dl.error, err:
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
BPFSelectionDAGInfo.cpp 22 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src,
38 Dst = DAG.getNode(BPFISD::MEMCPY, dl, VTs, Chain, Dst, Src,
39 DAG.getConstant(CopyLen, dl, MVT::i64),
40 DAG.getConstant(Align, dl, MVT::i64));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonISelLoweringHVX.cpp 201 const SDLoc &dl, SelectionDAG &DAG) const {
203 IntOps.push_back(DAG.getConstant(IntId, dl, MVT::i32));
206 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, ResTy, IntOps);
251 HexagonTargetLowering::opJoin(const VectorPair &Ops, const SDLoc &dl,
253 return DAG.getNode(ISD::CONCAT_VECTORS, dl, typeJoin(ty(Ops)),
258 HexagonTargetLowering::opSplit(SDValue Vec, const SDLoc &dl,
263 return DAG.SplitVector(Vec, dl, Tys.first, Tys.second);
289 const SDLoc &dl(ElemIdx);
290 return DAG.getNode(ISD::SHL, dl, MVT::i32,
291 {ElemIdx, DAG.getConstant(L, dl, MVT::i32)})
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXSelectionDAGInfo.cpp 29 PTXSelectionDAGInfo::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
69 Loads[i] = DAG.getLoad(VT, dl, Chain,
70 DAG.getNode(ISD::ADD, dl, PointerType, Src,
77 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
81 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
82 DAG.getNode(ISD::ADD, dl, PointerType, Dst,
88 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
108 Loads[i] = DAG.getLoad(VT, dl, Chain,
109 DAG.getNode(ISD::ADD, dl, PointerType, Src,
117 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i)
    [all...]
PTXSelectionDAGInfo.h 33 SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
42 SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 124 const SDLoc &dl);
126 const SDLoc &dl);
132 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, const SDLoc &dl,
137 bool &NeedInvert, const SDLoc &dl);
141 unsigned NumOps, bool isSigned, const SDLoc &dl);
159 const SDLoc &dl);
164 void getSignAsIntValue(FloatSignAsInt &State, const SDLoc &DL,
166 SDValue modifySignAsInt(const FloatSignAsInt &State, const SDLoc &DL,
171 const SDLoc &dl);
173 const SDLoc &dl);
    [all...]
TargetLowering.cpp 121 const SDLoc &dl, bool doesNotReturn,
143 CLI.setDebugLoc(dl)
158 const SDLoc &dl) const {
261 dl).first;
262 NewRHS = DAG.getConstant(0, dl, RetVT);
270 ISD::SETCC, dl,
274 dl).first;
276 ISD::SETCC, dl,
279 NewLHS = DAG.getNode(ISD::OR, dl, Tmp.getValueType(), Tmp, NewLHS);
348 SDLoc DL(Op)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcFrameLowering.cpp 35 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); local
55 BuildMI(MBB, MBBI, dl, TII.get(SP::SAVEri), SP::O6)
61 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1).addImm(OffHi);
63 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1)
65 BuildMI(MBB, MBBI, dl, TII.get(SP::SAVErr), SP::O6)
75 DebugLoc dl = MBBI->getDebugLoc(); local
78 BuildMI(MBB, MBBI, dl, TII.get(SP::RESTORErr), SP::G0).addReg(SP::G0)
SparcISelLowering.cpp 85 DebugLoc dl, SelectionDAG &DAG) const {
114 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
128 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
129 Chain = DAG.getCopyToReg(Chain, dl, SP::I0, Val, Flag);
139 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain,
141 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain,
153 DebugLoc dl, SelectionDAG &DAG,
176 SDValue Arg = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
188 SDValue HiVal = DAG.getCopyFromReg(Chain, dl, VRegHi, MVT::i32);
198 LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr
886 DebugLoc dl = Op.getDebugLoc(); local
907 DebugLoc dl = Op.getDebugLoc(); local
925 DebugLoc dl = Op.getDebugLoc(); local
933 DebugLoc dl = Op.getDebugLoc(); local
946 DebugLoc dl = Op.getDebugLoc(); local
978 DebugLoc dl = Op.getDebugLoc(); local
1010 DebugLoc dl = Op.getDebugLoc(); local
1027 DebugLoc dl = Node->getDebugLoc(); local
1058 DebugLoc dl = Op.getDebugLoc(); local
1075 DebugLoc dl = Op.getDebugLoc(); local
1086 DebugLoc dl = Op.getDebugLoc(); local
1117 DebugLoc dl = Op.getDebugLoc(); local
1170 DebugLoc dl = MI->getDebugLoc(); local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 166 inline SDValue getI16Imm(unsigned Imm, const SDLoc &dl) {
167 return CurDAG->getTargetConstant(Imm, dl, MVT::i16);
172 inline SDValue getI32Imm(unsigned Imm, const SDLoc &dl) {
173 return CurDAG->getTargetConstant(Imm, dl, MVT::i32);
178 inline SDValue getI64Imm(uint64_t Imm, const SDLoc &dl) {
179 return CurDAG->getTargetConstant(Imm, dl, MVT::i64);
183 inline SDValue getSmallIPtrImm(unsigned Imm, const SDLoc &dl) {
185 Imm, dl, PPCLowering->getPointerTy(CurDAG->getDataLayout()));
218 const SDLoc &dl);
293 SDLoc dl(Op)
371 DebugLoc dl; local
409 DebugLoc dl; local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 255 SDLoc dl(N);
263 return DAG.getNode(ISD::BITCAST, dl, NOutVT, GetPromotedInteger(InOp));
267 return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT, GetSoftenedFloat(InOp));
271 return DAG.getNode(ISD::FP_TO_FP16, dl, NOutVT, PromotedOp);
280 return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
294 InOp = DAG.getNode(ISD::ANY_EXTEND, dl,
298 return DAG.getNode(ISD::BITCAST, dl, NOutVT, InOp);
305 return DAG.getNode(ISD::BITCAST, dl, NOutVT, GetWidenedVector(InOp));
308 return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
316 SDLoc dl(N)
2995 SDLoc dl = SDLoc(N); local
    [all...]
LegalizeDAG.cpp 97 const SDLoc &dl);
99 const SDLoc &dl);
105 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, const SDLoc &dl,
110 bool &NeedInvert, const SDLoc &dl);
114 unsigned NumOps, bool isSigned, const SDLoc &dl);
132 const SDLoc &dl);
137 void getSignAsIntValue(FloatSignAsInt &State, const SDLoc &DL,
139 SDValue modifySignAsInt(const FloatSignAsInt &State, const SDLoc &DL,
144 const SDLoc &dl);
146 const SDLoc &dl);
    [all...]
  /external/libchrome/base/
native_library_posix.cc 41 void* dl = dlopen(library_path.value().c_str(), flags); local
42 if (!dl && error)
45 return dl;
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetSelectionDAGInfo.h 57 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
74 EmitTargetCodeForMemmove(SelectionDAG &DAG, DebugLoc dl,
90 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 49 DebugLoc DL;
54 SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl,
55 unsigned O) : mdPtr(mdP), Offset(off), DL(dl), Order(O),
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
65 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
71 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) :
72 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false)
    [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 48 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src,
88 CLI.setDebugLoc(dl).setChain(Chain)
133 Count = DAG.getIntPtrConstant(SizeVal, dl);
139 Count = DAG.getIntPtrConstant(SizeVal / UBytes, dl);
143 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, dl, AVT),
148 Count = DAG.getIntPtrConstant(SizeVal, dl);
149 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
153 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX,
156 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86SelectionDAGInfo.h 37 SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
45 SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinFrameLowering.cpp 52 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); local
63 RegInfo->adjustRegister(MBB, MBBI, dl, BF::SP, BF::P1, -FrameSize);
69 BuildMI(MBB, MBBI, dl, TII.get(BF::LINK)).addImm(FrameSize);
79 BuildMI(MBB, MBBI, dl, TII.get(BF::PUSH))
81 BuildMI(MBB, MBBI, dl, TII.get(BF::PUSH))
83 BuildMI(MBB, MBBI, dl, TII.get(BF::MOVE), BF::FP)
85 RegInfo->loadConstant(MBB, MBBI, dl, BF::P1, -FrameSize);
86 BuildMI(MBB, MBBI, dl, TII.get(BF::ADDpp), BF::SP)
100 DebugLoc dl = MBBI->getDebugLoc(); local
108 RegInfo->adjustRegister(MBB, MBBI, dl, BF::SP, BF::P1, FrameSize)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 255 SDLoc dl(GA);
258 return DAG.getNode(XCoreISD::PCRelativeWrapper, dl, MVT::i32, GA);
263 return DAG.getNode(XCoreISD::CPRelativeWrapper, dl, MVT::i32, GA);
265 return DAG.getNode(XCoreISD::DPRelativeWrapper, dl, MVT::i32, GA);
276 auto &DL = GV->getParent()->getDataLayout();
277 unsigned ObjSize = DL.getTypeAllocSize(ObjType);
286 SDLoc DL(GN);
291 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i32, FoldedOffset);
295 SDValue Remaining = DAG.getConstant(Offset - FoldedOffset, DL, MVT::i32);
296 GA = DAG.getNode(ISD::ADD, DL, MVT::i32, GA, Remaining)
1043 SDLoc &dl = CLI.DL; local
1539 DebugLoc dl = MI.getDebugLoc(); local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 29 ARMSelectionDAGInfo::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
66 Loads[i] = DAG.getLoad(VT, dl, Chain,
67 DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
74 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
78 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
79 DAG.getNode(ISD::ADD, dl, MVT::i32, Dst,
85 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
105 Loads[i] = DAG.getLoad(VT, dl, Chain,
106 DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
114 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i)
    [all...]

Completed in 1901 milliseconds

1 2 3 4 5 6 7 8 91011>>