HomeSort by relevance Sort by last modified time
    Searched refs:is64 (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 186 bool is64 = getPointerSize() == 8; variable
189 /*Is64Bit=*/is64,
190 (is64 ? MachO::CPU_TYPE_POWERPC64 : MachO::CPU_TYPE_POWERPC),
203 bool is64 = getPointerSize() == 8; variable
204 return createPPCELFObjectWriter(OS, is64, isLittleEndian(), OSABI);
  /external/valgrind/main/VEX/priv/
guest_arm64_toIR.c 854 static const HChar* nameIRegOrSP ( Bool is64, UInt iregNo )
856 vassert(is64 == True || is64 == False);
857 return is64 ? nameIReg64orSP(iregNo) : nameIReg32orSP(iregNo);
860 static const HChar* nameIRegOrZR ( Bool is64, UInt iregNo )
862 vassert(is64 == True || is64 == False);
863 return is64 ? nameIReg64orZR(iregNo) : nameIReg32orZR(iregNo);
866 static IRExpr* getIRegOrZR ( Bool is64, UInt iregNo )
868 vassert(is64 == True || is64 == False)
1903 Bool is64 = INSN(31,31) == 1; local
1985 Bool is64 = INSN(31,31) == 1; local
2049 Bool is64 = INSN(31,31) == 1; local
2189 Bool is64 = INSN(31,31) == 1; local
2315 Bool is64 = bX == 1; local
2358 Bool is64 = bX == 1; local
2424 Bool is64 = bX == 1; local
2489 Bool is64 = INSN(31,31) == 1; local
2524 Bool is64 = INSN(31,31) == 1; local
2596 Bool is64 = INSN(31,31) == 1; local
2693 Bool is64 = INSN(31,31) == 1; local
2732 Bool is64 = INSN(31,31) == 1; local
2790 Bool is64 = ix == 1 || ix == 3 || ix == 5 || ix == 7; local
2837 Bool is64 = INSN(31,31) == 1; local
2872 Bool is64 = INSN(31,31) == 1; local
2910 Bool is64 = INSN(31,31) == 1; local
3608 Bool is64 = INSN(22,22) == 0; local
3684 Bool is64 = INSN(22,22) == 0; local
4647 Bool is64 = INSN(31,31) == 1; local
5628 Bool is64 = INSN(22,22); local
    [all...]
host_arm64_defs.h 642 Bool is64; member in struct:__anon36367::__anon36368::__anon36370
1030 extern ARM64Instr* ARM64Instr_Cmp ( HReg, ARM64RIA*, Bool is64 );
    [all...]
host_arm64_defs.c 4061 Bool is64 = i->ARM64in.Cmp.is64; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 199 def _findLib_crle(name, is64):
203 if is64:
223 def find_library(name, is64 = False):
224 return _get_soname(_findLib_crle(name, is64) or _findLib_gcc(name))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 199 def _findLib_crle(name, is64):
203 if is64:
223 def find_library(name, is64 = False):
224 return _get_soname(_findLib_crle(name, is64) or _findLib_gcc(name))
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 32 bool is64; member in class:llvm::MachOObjectImage
54 MachOObjectImage(ObjectBuffer *Input, bool is64)
57 is64(is64), Registered(false) {
61 MachOObjectImage(std::unique_ptr<object::ObjectFile> Input, bool is64)
64 is64(is64), Registered(false) {
82 if (is64) {
107 if (is64)
125 bool is64 = (magic == MachO::MH_MAGIC_64) local
140 bool is64 = (magic == MachO::MH_MAGIC_64); local
    [all...]
  /external/chromium_org/components/nacl/browser/
nacl_browser.cc 46 bool is64 = true; local
48 bool is64 = (base::win::OSInfo::GetInstance()->wow64_status() == local
51 bool is64 = false; local
53 if (is64)
  /external/valgrind/main/coregrind/
m_translate.c 950 Bool is64 = True; local
964 Bool is64 = False; local
1044 Bool is64 = True; local
    [all...]
  /external/qemu/target-arm/
cpu.h 472 #define ENCODE_CP_REG(cp, is64, crn, crm, opc1, opc2) \
473 (((cp) << 16) | ((is64) << 15) | ((crn) << 11) | \
510 * same (cp, is64, crn, crm, opc1, opc2) tuple: either the new or the
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c 260 ULong step_initial_length_field ( DiCursor* p_img, /*OUT*/Bool* is64 )
264 *is64 = True;
267 *is64 = False;
273 ULong read_initial_length_field ( DiCursor p_img, /*OUT*/Bool* is64 )
277 return step_initial_length_field( &p_img, is64 );
427 Bool is64; local
478 info.li_length = step_initial_length_field( &external, &is64 );
504 info.li_header_length = is64 ? ML_(cur_step_ULong)(&external)
581 = ML_(cur_plus)(data, info.li_length + (is64 ? 12 : 4));
    [all...]
readdwarf3.c 352 static ULong get_Initial_Length ( /*OUT*/Bool* is64,
358 *is64 = False;
364 *is64 = True;
367 *is64 = False;
    [all...]
  /external/qemu/tcg/i386/
tcg-target.c     [all...]
  /external/qemu/tcg/
tcg.c 812 static inline TCGMemOp tcg_canonicalize_memop(TCGMemOp op, bool is64, bool st)
821 if (!is64) {
826 if (!is64) {
    [all...]

Completed in 782 milliseconds