HomeSort by relevance Sort by last modified time
    Searched defs:triple (Results 1 - 15 of 15) sorted by null

  /external/clang/test/Modules/Inputs/
irgen.h 1 static inline int triple(int x) { return x * 3; } function
  /external/boringssl/src/crypto/obj/
obj_xref.c 73 const nid_triple *triple; local
77 triple = bsearch(&key, sigoid_srt, sizeof(sigoid_srt) / sizeof(nid_triple),
80 if (triple == NULL) {
84 *out_digest_nid = triple->hash_id;
87 *out_pkey_nid = triple->pkey_id;
107 const nid_triple **triple; local
113 triple = bsearch(&pkey, sigoid_srt_xref,
117 if (triple == NULL) {
121 *out_sign_nid = (*triple)->sign_id;
  /external/llvm/tools/llvm-c-test/
disassemble.c 11 |* --disassemble reads lines from stdin, parses them as a triple and hex *|
37 static void do_disassemble(const char *triple, const char *features,
39 LLVMDisasmContextRef D = LLVMCreateDisasmCPUFeatures(triple, "", features,
45 printf("ERROR: Couldn't create disassembler for triple %s\n", triple);
68 const char *triple = tokens[0]; local
72 printf("triple: %s, features: %s\n", triple, features);
83 do_disassemble(triple, features, disbuf, disbuflen);
  /device/google/contexthub/firmware/inc/
hostIntf.h 62 struct TripleAxisDataPoint triple[HOSTINTF_SENSOR_DATA_MAX / sizeof(struct TripleAxisDataPoint)]; member in union:HostIntfDataBuffer::__anon2882::__anon2883::__anon2884
  /frameworks/compile/mclinker/include/mcld/
TargetOptions.h 12 #include <llvm/ADT/Triple.h>
33 const llvm::Triple& triple() const { return m_Triple; } function in class:mcld::TargetOptions
37 void setTriple(const llvm::Triple& pTriple);
83 llvm::Triple m_Triple;
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 98 const std::string &triple = pConfig.getTriple(); local
103 triple.c_str(), pConfig.getFeatureString().c_str());
203 if (llvm::Triple(getTargetMachine().getTargetTriple()).getArch() == llvm::Triple::x86_64)
243 const std::string &triple = module.getTargetTriple(); local
246 if (triple == "armv7-none-linux-gnueabi") {
250 } else if (triple == "aarch64-none-linux-gnueabi") {
258 if (getTargetMachine().getTargetTriple().getArch() == llvm::Triple::x86) {
403 llvm::Triple triple(getTargetMachine().getTargetTriple())
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 118 const uint8_t* triple = src; local
121 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR),
122 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
123 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB));
124 triple += 3;
128 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR),
129 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
130 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB));
131 triple += 3;
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 144 /// This function simplifies cross-compiling by reading triple from the program
146 /// get the triple is arm-linux-eabi by the program name.
177 inline void ParseEmulation(llvm::Triple& triple, const char* emulation) {
178 llvm::Triple emu_triple =
179 llvm::StringSwitch<llvm::Triple>(emulation)
180 .Case("aarch64linux", llvm::Triple("aarch64", "", "linux", "gnu"))
181 .Case("armelf_linux_eabi", llvm::Triple("arm", "", "linux", "gnu"))
182 .Case("elf_i386", llvm::Triple("i386", "", "", "gnu"))
183 .Case("elf_x86_64", llvm::Triple("x86_64", "", "", "gnu")
322 llvm::Triple triple; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btVector3.java 128 public float triple(Vector3 v1, Vector3 v2) { method in class:btVector3
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btVector3.h 416 SIMD_FORCE_INLINE btScalar triple(const btVector3& v1, const btVector3& v2) const function
927 return v1.triple(v2, v3);
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 134 static std::string triple; member in namespace:options
160 triple = opt.substr(strlen("mtriple="));
741 PMB.LibraryInfo = new TargetLibraryInfoImpl(Triple(TM.getTargetTriple()));
764 Triple TheTriple(TripleStr);
905 if (!options::triple.empty())
906 M->setTargetTriple(options::triple.c_str());
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 35 #include <llvm/ADT/Triple.h>
432 bool isTarget64Bit = config().targets().triple().isArch64Bit();
478 if (config().targets().triple().isArch32Bit()) {
1338 const llvm::Triple& triple = pConfig.targets().triple(); local
    [all...]
MipsRelocator.cpp 163 const ApplyFunctionTriple& triple = ApplyFunctions[info.type()]; local
165 Result res = triple.func(info, *this);
170 uint64_t mask = 0xFFFFFFFFFFFFFFFFULL >> (64 - triple.size);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
FormatterTest.java 1133 final Object[][] triple = { local
1197 final Object[][] triple = { local
1431 final Object[][] triple = { local
1483 final Object[][] triple = { local
1581 final Object[][] triple = { local
1651 final Object[][] triple = { local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
CompletableFutureTest.java 3882 Function<Long, CompletableFuture<Long>> triple local
    [all...]

Completed in 5424 milliseconds