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

1 2 3 45 6 7 8 91011>>

  /external/llvm/test/MC/AsmParser/
directive_values.s 1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
ifb.s 1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
ifc.s 1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
  /external/llvm/test/MC/ELF/
fde.s 1 # RUN: llvm-mc -filetype=obj %s -o %t.o -triple x86_64-pc-linux-gnu && llvm-objdump -s %t.o
  /external/llvm/test/MC/MachO/ARM/
no-subsections-reloc.s 1 @ RUN: llvm-mc -n -triple thumbv7-apple-darwin10 %s -filetype=obj -o %t.obj
static-movt-relocs.s 1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumbv7-apple-darwin10 -filetype=obj -o - < %s | macho-dump | FileCheck %s
thumb-bl-jbits.s 1 @ RUN: llvm-mc -triple=thumbv7-apple-darwin -filetype=obj -o - < %s | macho-dump --dump-section-data | FileCheck %s
  /external/llvm/test/MC/Mips/
mips-control-instructions.s 1 # RUN: llvm-mc %s -triple=mips-unknown-unknown -show-encoding -mcpu=mips32r2 | \
3 # RUN: llvm-mc %s -triple=mips-unknown-unknown -show-encoding -mcpu=mips64r2 | \
micromips-loadstore-instructions.s 1 # RUN: llvm-mc %s -triple=mipsel -show-encoding -mattr=micromips | FileCheck %s
micromips-shift-instructions.s 1 # RUN: llvm-mc %s -triple=mipsel -show-encoding -mcpu=mips32r2 -mattr=micromips | FileCheck %s
  /external/llvm/test/MC/PowerPC/
ppc64-tls-relocs-01.s 1 # RUN: llvm-mc -triple=powerpc64-unknown-linux-gnu -filetype=obj %s | \
  /external/llvm/test/MC/X86/AlignedBundling/
pad-bundle-groups.s 1 # RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - \
relax-in-bundle-group.s 1 # RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - \
different-sections.s 1 # RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - \
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 82 switch (pConfig.targets().triple().getOS()) {
83 case llvm::Triple::NetBSD:
86 case llvm::Triple::MinGW32:
  /external/llvm/test/MC/ARM/
arm-thumb-cpus.s 2 @ RUN: llvm-mc -show-encoding -triple=armv4t < %s 2>&1| FileCheck %s --check-prefix=CHECK-ARM-THUMB
5 @ RUN: not llvm-mc -show-encoding -triple=armv7m < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
6 @ RUN: not llvm-mc -show-encoding -triple=armv6m < %s 2>&1 | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
elf-movt.s 1 @ RUN: llvm-mc %s -triple=armv7-linux-gnueabi | FileCheck -check-prefix=ASM %s
2 @ RUN: llvm-mc %s -triple=armv7-linux-gnueabi -filetype=obj -o - | \
mapping-within-section.s 1 @ RUN: llvm-mc -triple=armv7-linux-gnueabi -filetype=obj < %s | llvm-objdump -t - | FileCheck %s
eh-directive-cantunwind-diagnostics.s 1 @ RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s 2> %t
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
invocation.cpp 72 c.getTargetOpts().Triple = target;
96 const std::string &triple) {
122 c.getTargetOpts().Triple = triple;
148 link(llvm::Module *mod, const std::string &triple,
157 linker.LinkInFile(llvm::sys::Path(LIBCLC_LIBEXECDIR + triple + ".bc"), isNative);
255 const compat::string &triple) {
259 llvm::Module *mod = compile(source, "cl_input", triple);
263 link(mod, triple, kernels);
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 72 c.getTargetOpts().Triple = target;
96 const std::string &triple) {
122 c.getTargetOpts().Triple = triple;
148 link(llvm::Module *mod, const std::string &triple,
157 linker.LinkInFile(llvm::sys::Path(LIBCLC_LIBEXECDIR + triple + ".bc"), isNative);
255 const compat::string &triple) {
259 llvm::Module *mod = compile(source, "cl_input", triple);
263 link(mod, triple, kernels);
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.cpp 98 const uint8_t* triple = src; local
101 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR),
102 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
103 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB));
104 triple += 3;
108 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR),
109 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
110 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB));
111 triple += 3;
  /external/llvm/tools/lto/
LTOModule.h 71 /// is LLVM bitcode for the specified triple.
91 /// getTargetTriple - Return the Module's target triple.
96 /// setTargetTriple - Set the Module's target triple.
97 void setTargetTriple(const char *triple) {
98 _module->setTargetTriple(triple);
177 /// target triple.
lto.cpp 102 /// lto_module_set_target_triple - Sets triple string with which the object will
104 void lto_module_set_target_triple(lto_module_t mod, const char *triple) {
105 return mod->setTargetTriple(triple);
  /external/clang/include/clang/Frontend/
Utils.h 24 class Triple;
56 const llvm::Triple &triple);

Completed in 725 milliseconds

1 2 3 45 6 7 8 91011>>