Searched defs:dl (Results 1 - 25 of 114) sorted by relevance

12345

/external/elfutils/src/libelf/
H A Delf_strptr.c142 struct Elf_Data_List *dl = &strscn->data_list; local
143 while (dl != NULL)
145 if (offset >= (size_t) dl->data.d.d_off
146 && offset < dl->data.d.d_off + dl->data.d.d_size)
148 result = (char *) dl->data.d.d_buf + (offset - dl->data.d.d_off);
152 dl = dl->next;
H A Delf32_updatenull.c261 Elf_Data_List *dl = &scn->data_list; local
263 while (dl != NULL)
265 Elf_Data *data = &dl->data.d;
266 if (dl == &scn->data_list && data->d_buf == NULL
310 dl = dl->next;
/external/clang/test/Sema/
H A Doutof-range-constant-compare.c134 float dl = 0; local
135 if (dl == 0x0000000000000000L) // no warning
/external/jmonkeyengine/engine/src/test/jme3test/batching/
H A DTestBatchNode.java74 dl=new DirectionalLight();
75 dl.setColor(ColorRGBA.White.mult(2));
76 dl.setDirection(new Vector3f(1, -1, -1));
77 rootNode.addLight(dl);
84 DirectionalLight dl; field in class:TestBatchNode
88 dl.setDirection(cam.getDirection());
/external/llvm/lib/Target/NVPTX/
H A DNVPTXFrameLowering.cpp41 DebugLoc dl = DebugLoc(); local
50 BuildMI(MBB, MBBI, dl, MF.getSubtarget().getInstrInfo()->get(
53 BuildMI(MBB, MI, dl,
59 BuildMI(MBB, MBBI, dl,
62 BuildMI(MBB, MI, dl,
/external/clang/test/CodeGenCXX/
H A Ddebug-info-byval.cpp26 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) { argument
29 if (dl == n)
/external/jmonkeyengine/engine/src/test/jme3test/material/
H A DTestParallax.java65 DirectionalLight dl; field in class:TestParallax
69 dl = new DirectionalLight();
70 dl.setDirection(lightDir);
71 dl.setColor(new ColorRGBA(.9f, .9f, .9f, 1));
72 rootNode.addLight(dl);
170 // dl.setDirection(lightDir);
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, argument
/external/llvm/test/Bindings/OCaml/
H A Dtarget.ml45 let dl = DL.of_string layout in var
48 assert_equal (DL.as_string dl) layout;
49 assert_equal (DL.byte_order dl) Endian.Little;
50 assert_equal (DL.pointer_size dl) 4;
51 assert_equal (DL.intptr_type context dl) i32_type;
52 assert_equal (DL.qualified_pointer_size 0 dl) 4;
53 assert_equal (DL.qualified_intptr_type context 0 dl) i32_type;
54 assert_equal (DL.size_in_bits sty dl) (Int64.of_int 96);
55 assert_equal (DL.store_size sty dl) (Int64.of_int 12);
56 assert_equal (DL.abi_size sty dl) (Int6
[all...]
/external/boringssl/src/crypto/bn/
H A Dcmp.c153 int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl) { argument
157 if (dl < 0) {
158 for (i = dl; i < 0; i++) {
164 if (dl > 0) {
165 for (i = dl; i > 0; i--) {
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_msvc.h181 mov dl, xchgv local
182 lock cmpxchg [ecx], dl
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp25 SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src,
50 CLI.setDebugLoc(dl).setChain(Chain)
24 EmitTargetCodeForMemset( SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp144 DebugLoc dl = OldBranch->getDebugLoc(); local
157 BuildMI(MBB, I, dl, TII->get(MSP430::JCC))
163 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
H A DMSP430RegisterInfo.cpp113 DebugLoc dl = MI.getDebugLoc(); local
145 BuildMI(MBB, std::next(II), dl, TII.get(MSP430::SUB16ri), DstReg)
148 BuildMI(MBB, std::next(II), dl, TII.get(MSP430::ADD16ri), DstReg)
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp186 DebugLoc dl = OldBranch->getDebugLoc(); local
197 BuildMI(MBB, I, dl, TII->get(PPC::BCC))
201 BuildMI(MBB, I, dl, TII->get(PPC::BCn)).addReg(CRBit).addImm(2);
204 BuildMI(MBB, I, dl, TII->get(PPC::BC)).addReg(CRBit).addImm(2);
206 BuildMI(MBB, I, dl, TII->get(PPC::BDZ)).addImm(2);
208 BuildMI(MBB, I, dl, TII->get(PPC::BDZ8)).addImm(2);
210 BuildMI(MBB, I, dl, TII->get(PPC::BDNZ)).addImm(2);
212 BuildMI(MBB, I, dl, TII->get(PPC::BDNZ8)).addImm(2);
218 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
/external/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.cpp26 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, argument
45 CLI.setDebugLoc(dl).setChain(Chain)
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h56 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, argument
73 EmitTargetCodeForMemmove(SelectionDAG &DAG, SDLoc dl, argument
89 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, argument
103 EmitTargetCodeForMemcmp(SelectionDAG &DAG, SDLoc dl, argument
117 EmitTargetCodeForMemchr(SelectionDAG &DAG, SDLoc dl, SDValue Chain, argument
144 EmitTargetCodeForStrcmp(SelectionDAG &DAG, SDLoc dl, argument
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp28 ARMSelectionDAGInfo::EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, argument
68 Loads[i] = DAG.getLoad(VT, dl, Chain,
69 DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
76 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
81 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
82 DAG.getNode(ISD::ADD, dl, MVT::i32, Dst,
88 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
109 Loads[i] = DAG.getLoad(VT, dl, Chain,
110 DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
119 Chain = DAG.getNode(ISD::TokenFactor, dl, MV
149 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
[all...]
H A DThumbRegisterInfo.cpp64 DebugLoc dl, unsigned DestReg,
76 BuildMI(MBB, MBBI, dl, TII.get(ARM::tLDRpci))
84 DebugLoc dl, unsigned DestReg,
95 BuildMI(MBB, MBBI, dl, TII.get(ARM::t2LDRpci))
104 MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl,
112 return emitThumb1LoadConstPool(MBB, MBBI, dl, DestReg, SubIdx, Val, Pred,
115 return emitThumb2LoadConstPool(MBB, MBBI, dl, DestReg, SubIdx, Val, Pred,
126 DebugLoc dl,
151 AddDefaultT1CC(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVi8), LdReg))
154 AddDefaultT1CC(BuildMI(MBB, MBBI, dl, TI
62 emitThumb1LoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) argument
82 emitThumb2LoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) argument
103 emitLoadConstPool( MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) const argument
124 emitThumbRegPlusImmInReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned BaseReg, int NumBytes, bool CanChangeCC, const TargetInstrInfo &TII, const ARMBaseRegisterInfo& MRI, unsigned MIFlags = MachineInstr::NoFlags) argument
180 emitThumbRegPlusImmediate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned BaseReg, int NumBytes, const TargetInstrInfo &TII, const ARMBaseRegisterInfo& MRI, unsigned MIFlags) argument
[all...]
/external/llvm/lib/Target/Mips/
H A DMips16FrameLowering.cpp41 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); local
57 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
72 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
77 BuildMI(MBB, MBBI, dl, TII.get(Mips::MoveR3216), Mips::S0)
88 DebugLoc dl = MBBI->getDebugLoc(); local
95 BuildMI(MBB, MBBI, dl, TII.get(Mips::Move32R16), Mips::SP)
/external/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp47 DebugLoc dl = (MBBI != MBB.end()) ? MBBI->getDebugLoc() : DebugLoc(); local
52 BuildMI(MBB, MBBI, dl, TII.get(ADDri), SP::O6)
64 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1)
66 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1)
68 BuildMI(MBB, MBBI, dl, TII.get(ADDrr), SP::O6)
77 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1)
79 BuildMI(MBB, MBBI, dl, TII.get(SP::XORri), SP::G1)
81 BuildMI(MBB, MBBI, dl, TII.get(ADDrr), SP::O6)
93 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); local
116 BuildMI(MBB, MBBI, dl, TI
155 DebugLoc dl = MBBI->getDebugLoc(); local
[all...]
H A DSparcRegisterInfo.cpp99 DebugLoc dl,
121 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1)
126 BuildMI(*MI.getParent(), II, dl, TII.get(SP::ADDrr), SP::G1).addReg(SP::G1)
139 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1)
141 BuildMI(*MI.getParent(), II, dl, TII.get(SP::XORri), SP::G1)
144 BuildMI(*MI.getParent(), II, dl, TII.get(SP::ADDrr), SP::G1).addReg(SP::G1)
159 DebugLoc dl = MI.getDebugLoc(); local
184 BuildMI(*MI.getParent(), II, dl, TII.get(SP::STDFri))
186 replaceFI(MF, II, *StMI, dl, 0, Offset, FramePtr);
196 BuildMI(*MI.getParent(), II, dl, TI
96 replaceFI(MachineFunction &MF, MachineBasicBlock::iterator II, MachineInstr &MI, DebugLoc dl, unsigned FIOperandNum, int Offset, unsigned FramePtr) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbrowser.c115 WebKitDownload *dl,
119 uri = webkit_download_get_uri(dl);
114 view_cb_download_requested(WebKitWebView *view, WebKitDownload *dl, struct browser_context *ctx) argument
/external/wpa_supplicant_8/src/utils/
H A Dbrowser.c115 WebKitDownload *dl,
119 uri = webkit_download_get_uri(dl);
114 view_cb_download_requested(WebKitWebView *view, WebKitDownload *dl, struct browser_context *ctx) argument
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbrowser.c115 WebKitDownload *dl,
119 uri = webkit_download_get_uri(dl);
114 view_cb_download_requested(WebKitWebView *view, WebKitDownload *dl, struct browser_context *ctx) argument

Completed in 485 milliseconds

12345