HomeSort by relevance Sort by last modified time
    Searched refs:targets (Results 26 - 50 of 1131) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-dwp/
Makefile 12 LINK_COMPONENTS := all-targets AsmPrinter DebugInfoDWARF MC Object Support
  /external/llvm/tools/llvm-mc/
Makefile 12 LINK_COMPONENTS := all-targets MCDisassembler MCParser MC support
  /external/llvm/tools/llvm-objdump/
Makefile 12 LINK_COMPONENTS := all-targets DebugInfoDWARF MC MCParser MCDisassembler Object
  /external/llvm/tools/llvm-rtdyld/
Makefile 12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld MCJIT DebugInfoDWARF
  /external/llvm/tools/sancov/
Makefile 12 LINK_COMPONENTS := all-targets DebugInfoDWARF DebugInfoPDB MC MCParser \
  /external/llvm/unittests/MC/
Makefile 12 LINK_COMPONENTS := all-targets MCDisassembler Object
  /external/llvm/unittests/Support/
Makefile 12 LINK_COMPONENTS := all-targets core support
  /external/mesa3d/src/mesa/state_tracker/
st_cb_xformfb.c 57 struct pipe_stream_output_target *targets[PIPE_MAX_SO_BUFFERS]; member in struct:st_transform_feedback_object
96 /* Unreference targets. */
98 pipe_so_target_reference(&sobj->targets[i], NULL);
121 Elements(sobj->targets));
129 if (!sobj->targets[i] ||
130 sobj->targets[i] == sobj->draw_count ||
131 sobj->targets[i]->buffer != bo->buffer ||
132 sobj->targets[i]->buffer_offset != sobj->base.Offset[i] ||
133 sobj->targets[i]->buffer_size != sobj->base.Size[i]) {
140 pipe_so_target_reference(&sobj->targets[i], NULL)
    [all...]
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Emulation.cpp 23 pConfig.targets().setEndian(TargetOptions::Little);
24 pConfig.targets().setBitClass(64);
48 if (pConfig.targets().triple().isOSDarwin()) {
52 if (pConfig.targets().triple().isOSWindows()) {
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonEmulation.cpp 23 pConfig.targets().setEndian(TargetOptions::Little);
24 pConfig.targets().setBitClass(32);
42 if (pConfig.targets().triple().isOSDarwin()) {
46 if (pConfig.targets().triple().isOSWindows()) {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/targets/
Target05.java 12 package org.jacoco.core.test.validation.targets;
14 import static org.jacoco.core.test.validation.targets.Stubs.i1;
Target12.java 12 package org.jacoco.core.test.validation.targets;
14 import static org.jacoco.core.test.validation.targets.Stubs.nop;
Target03.java 12 package org.jacoco.core.test.validation.targets;
14 import static org.jacoco.core.test.validation.targets.Stubs.ex;
15 import static org.jacoco.core.test.validation.targets.Stubs.f;
16 import static org.jacoco.core.test.validation.targets.Stubs.nop;
18 import org.jacoco.core.test.validation.targets.Stubs.StubException;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips16-f.s 6 # align section end to 16-byte boundary for easier testing on multiple targets
12 # align section end to 16-byte boundary for easier testing on multiple targets
mips16-jalx.s 4 # align section end to 16-byte boundary for easier testing on multiple targets
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
pr14926.d 4 # the above targets use memory regions that don't allow 0x60 for .text
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips16-hilo.s 6 # align section end to 16-byte boundary for easier testing on multiple targets
13 # align section end to 16-byte boundary for easier testing on multiple targets
  /frameworks/base/core/java/android/os/
Broadcaster.java 39 r.targets = new Handler[1];
41 r.targets[0] = target;
62 reg.targets = new Handler[1];
76 n = r.targets.length;
77 Handler[] oldTargets = r.targets;
85 r.targets = new Handler[n+1];
86 System.arraycopy(oldTargets, 0, r.targets, 0, n);
90 r.targets[n] = target;
117 Handler[] targets = r.targets; local
188 Handler[] targets = r.targets; local
208 Handler[] targets; field in class:Broadcaster.Registration
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86Emulation.cpp 22 pConfig.targets().setEndian(TargetOptions::Little);
24 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
27 pConfig.targets().triple().getEnvironment() == llvm::Triple::GNUX32) {
32 pConfig.targets().setBitClass(bitclass);
50 if (pConfig.targets().triple().isOSDarwin()) {
54 if (pConfig.targets().triple().isOSWindows()) {
  /external/skia/
make.py 22 # special targets
86 def MakeWindows(targets):
90 targets: build targets as a list of strings
101 while TARGET_GYP in targets:
102 targets.remove(TARGET_GYP)
105 if targets:
107 os.path.join(OUT_SUBDIR, BUILDTYPE), ' '.join(targets)))
116 # handle any variable-setting parameters or special targets
119 # if no targets were specified at all, make default target
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 44 private final CodeAddress[] targets; field in class:SwitchData
57 * @param targets {@code non-null;} corresponding list of code addresses; the
61 IntList cases, CodeAddress[] targets) {
72 if (targets == null) {
73 throw new NullPointerException("targets == null");
78 if (sz != targets.length) {
79 throw new IllegalArgumentException("cases / targets mismatch");
88 this.targets = targets;
104 int sz = targets.length
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 45 private final CodeAddress[] targets; field in class:SwitchData
58 * @param targets {@code non-null;} corresponding list of code addresses; the
62 IntList cases, CodeAddress[] targets) {
73 if (targets == null) {
74 throw new NullPointerException("targets == null");
79 if (sz != targets.length) {
80 throw new IllegalArgumentException("cases / targets mismatch");
89 this.targets = targets;
105 int sz = targets.length
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 45 private final CodeAddress[] targets; field in class:SwitchData
58 * @param targets {@code non-null;} corresponding list of code addresses; the
62 IntList cases, CodeAddress[] targets) {
73 if (targets == null) {
74 throw new NullPointerException("targets == null");
79 if (sz != targets.length) {
80 throw new IllegalArgumentException("cases / targets mismatch");
89 this.targets = targets;
105 int sz = targets.length
    [all...]
  /external/skia/src/animator/
SkHitTest.cpp 17 SK_MEMBER_ARRAY(targets, Displayable),
32 int targetCount = targets.count();
41 SkDisplayable* target = targets[tIndex];
59 for (int tIndex = 0; tIndex < targets.count(); tIndex++) {
60 SkDisplayable* target = targets[tIndex];
73 return getMember("targets"); // !!! cwap! need to refer to member through enum like kScope instead
  /frameworks/compile/mclinker/lib/LD/
RelocationFactory.cpp 47 if (llvm::sys::IsLittleEndianHost != m_pConfig->targets().isLittleEndian()) {
50 switch (m_pConfig->targets().bitclass()) {
63 fatal(diag::unsupported_bitclass) << m_pConfig->targets().triple().str()
64 << m_pConfig->targets().bitclass();
69 pFragRef.memcpy(&target_data, (m_pConfig->targets().bitclass() / 8));

Completed in 4116 milliseconds

12 3 4 5 6 7 8 91011>>