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

  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
ptrace-gpr.c 2 * Ptrace test for GPR/FPR registers
62 unsigned long fpr[32]; local
67 FAIL_IF(show_fpr(child, fpr));
68 FAIL_IF(validate_fpr(fpr, FPR_1_REP));
ptrace-tm-gpr.c 2 * Ptrace test for GPR/FPR registers in TM context
94 unsigned long fpr[32]; local
99 FAIL_IF(show_fpr(child, fpr));
100 FAIL_IF(validate_fpr(fpr, FPR_2_REP));
101 FAIL_IF(show_ckpt_fpr(child, fpr));
102 FAIL_IF(validate_fpr(fpr, FPR_1_REP));
ptrace-tm-spd-gpr.c 2 * Ptrace test for GPR/FPR registers in TM Suspend context
100 unsigned long fpr[32]; local
105 FAIL_IF(show_fpr(child, fpr));
106 FAIL_IF(validate_fpr(fpr, FPR_4_REP));
107 FAIL_IF(show_ckpt_fpr(child, fpr));
108 FAIL_IF(validate_fpr(fpr, FPR_1_REP));
ptrace.h 37 unsigned long fpr[32]; member in struct:fpr_regs
286 /* FPR */
287 int show_fpr(pid_t child, unsigned long *fpr)
299 if (fpr) {
301 fpr[i] = regs->fpr[i];
319 regs->fpr[i] = val;
329 int show_ckpt_fpr(pid_t child, unsigned long *fpr)
345 if (fpr) {
347 fpr[i] = regs->fpr[i]
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
ft32-dis.c 32 static fprintf_ftype fpr; variable
44 fpr = info->fprintf_func;
60 fpr (stream, "%08x %s", iword, oo->name);
63 fpr (stream, ".%c ", "bsl"[(iword >> FT32_FLD_DW_BIT) & 3]);
67 fpr (stream, " ");
83 case 0x00: fpr(stream, "nz"); break;
84 case 0x01: fpr(stream, "z"); break;
85 case 0x10: fpr(stream, "ae"); break;
86 case 0x11: fpr(stream, "b"); break;
87 case 0x20: fpr(stream, "no"); break
    [all...]
moxie-dis.c 30 static fprintf_ftype fpr; variable
51 fpr = info->fprintf_func;
69 fpr (stream, "%s", opcode->name);
72 fpr (stream, "%s\t%s", opcode->name,
76 fpr (stream, "%s\t%s, %s", opcode->name,
89 fpr (stream, "%s\t%s, 0x%x", opcode->name,
103 fpr (stream, "%s\t0x%x", opcode->name, imm);
116 fpr (stream, "%s\t", opcode->name);
122 fpr (stream, "%s\t(%s), %s", opcode->name,
126 fpr (stream, "%s\t%s, (%s)", opcode->name
    [all...]
w65-dis.c 30 static fprintf_ftype fpr; variable
49 fpr (stream, "0x%x", val);
53 fpr (stream, "%c", c);
71 fpr = info->fprintf_func;
80 fpr (stream, "%s", op->name);
  /art/runtime/gc/allocator/
rosalloc.cc 135 FreePageRun* fpr = *it; local
136 DCHECK(fpr->IsFree());
137 size_t fpr_byte_size = fpr->ByteSize(this);
144 << std::hex << reinterpret_cast<intptr_t>(fpr)
150 reinterpret_cast<FreePageRun*>(reinterpret_cast<uint8_t*>(fpr) + req_byte_size);
163 fpr->SetByteSize(this, req_byte_size);
164 DCHECK_EQ(fpr->ByteSize(this) % kPageSize, static_cast<size_t>(0));
166 res = fpr;
233 FreePageRun* fpr = *it; local
236 DCHECK_EQ(last_free_page_run, fpr);
357 FreePageRun* fpr = reinterpret_cast<FreePageRun*>(ptr); local
1221 FreePageRun* fpr = reinterpret_cast<FreePageRun*>(base_ + i * kPageSize); local
1412 FreePageRun* fpr = reinterpret_cast<FreePageRun*>(base_ + i * kPageSize); local
1761 FreePageRun* fpr = reinterpret_cast<FreePageRun*>(base_ + i * kPageSize); local
2004 FreePageRun* fpr = reinterpret_cast<FreePageRun*>(base_ + i * kPageSize); local
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 148 __u8 fpr[8][16]; member in struct:kvm_fpu
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 162 __u8 fpr[8][16]; member in struct:kvm_fpu
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
kvm.h 136 __u8 fpr[8][16]; member in struct:kvm_fpu
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
kvm.h 136 __u8 fpr[8][16]; member in struct:kvm_fpu
  /art/compiler/optimizing/
intrinsics_arm64.cc 446 FPRegister fpr = (type == DataType::Type::kInt64) ? temps.AcquireD() : temps.AcquireS(); local
448 __ Fmov(fpr, src);
449 __ Cnt(fpr.V8B(), fpr.V8B());
450 __ Addv(fpr.B(), fpr.V8B());
451 __ Fmov(dst, fpr);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-i386.c 9620 int fpr = *s - '0'; local
    [all...]

Completed in 421 milliseconds