/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);
|
/external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/ |
ptrace-gpr.h | 43 int validate_fpr(unsigned long *fpr, unsigned long val) 48 if (fpr[i] != val) { 49 printf("FPR[%d]: %lx Expected: %lx\n", i, fpr[i], val); 60 int validate_fpr_float(float *fpr, float val) 65 if (fpr[i] != val) { 66 printf("FPR[%d]: %f Expected: %f\n", i, fpr[i], val);
|
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-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.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/gas/testsuite/gas/mips/ |
fpr-names-32.d | 1 #objdump: -dr --prefix-addresses --show-raw-insn -M gpr-names=numeric,fpr-names=32 2 #name: MIPS FPR disassembly (32) 3 #source: fpr-names.s 5 # Check objdump's handling of -M fpr-names=foo options.
|
fpr-names-64.d | 1 #objdump: -dr --prefix-addresses --show-raw-insn -M gpr-names=numeric,fpr-names=64 2 #name: MIPS FPR disassembly (64) 3 #source: fpr-names.s 5 # Check objdump's handling of -M fpr-names=foo options.
|
fpr-names-n32.d | 1 #objdump: -dr --prefix-addresses --show-raw-insn -M gpr-names=numeric,fpr-names=n32 2 #name: MIPS FPR disassembly (n32) 3 #source: fpr-names.s 5 # Check objdump's handling of -M fpr-names=foo options.
|
fpr-names-numeric.d | 1 #objdump: -dr --prefix-addresses --show-raw-insn -M gpr-names=numeric,fpr-names=numeric 2 #name: MIPS FPR disassembly (numeric) 3 #source: fpr-names.s 5 # Check objdump's handling of -M fpr-names=foo options.
|
delay.d | 7 # insn's if the target fpr is used in the
|
nodelay.d | 8 # insn's if the target fpr is used in the immediatly
|
/external/elfutils/backends/ |
s390_initreg.c | 77 } fpr = { .d = user_regs.regs.fp_regs.fprs[u] }; 78 dwarf_regs[u] = fpr.w;
|
/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...] |
/external/guava/guava-tests/test/com/google/common/hash/ |
BloomFilterTest.java | 184 for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) { 186 checkSanity(BloomFilter.create(HashTestUtils.BAD_FUNNEL, expectedInsertions, fpr));
|
/external/libffi/src/mips/ |
ffi.c | 751 * as well). FPR is a pointer to the area where floating point 767 double *fpr) 801 avaluep[i] = ((char *) &fpr[i]) + sizeof (float); 804 avaluep[i] = (char *) &fpr[i]; 868 ffi_arg *fpr, int soft_float) 886 fpp = (char *)(argn >= 8 ? ar + argn : fpr + argn); 906 * arguments. FPR is a pointer to the area where floating point 921 ffi_arg *fpr) 959 argp = (argn >= 8 || soft_float) ? ar + argn : fpr + argn; 1028 argn, 0, ar, fpr, soft_float) [all...] |
/external/python/cpython2/Modules/_ctypes/libffi/src/mips/ |
ffi.c | 751 * as well). FPR is a pointer to the area where floating point 767 double *fpr) 801 avaluep[i] = ((char *) &fpr[i]) + sizeof (float); 804 avaluep[i] = (char *) &fpr[i]; 868 ffi_arg *fpr, int soft_float) 886 fpp = (char *)(argn >= 8 ? ar + argn : fpr + argn); 906 * arguments. FPR is a pointer to the area where floating point 921 ffi_arg *fpr) 959 argp = (argn >= 8 || soft_float) ? ar + argn : fpr + argn; 1028 argn, 0, ar, fpr, soft_float) [all...] |
/external/python/cpython3/Modules/_ctypes/libffi/src/mips/ |
ffi.c | 751 * as well). FPR is a pointer to the area where floating point 767 double *fpr) 801 avaluep[i] = ((char *) &fpr[i]) + sizeof (float); 804 avaluep[i] = (char *) &fpr[i]; 868 ffi_arg *fpr, int soft_float) 886 fpp = (char *)(argn >= 8 ? ar + argn : fpr + argn); 906 * arguments. FPR is a pointer to the area where floating point 921 ffi_arg *fpr) 959 argp = (argn >= 8 || soft_float) ? ar + argn : fpr + argn; 1028 argn, 0, ar, fpr, soft_float) [all...] |
/external/libffi/src/powerpc/ |
linux64_closure.S | 64 # + 64 byte retval area + 13*8 fpr save area + round to 16 70 # + 16 bytes retval area + 13*8 bytes fpr save area + round to 16 125 # next save fpr 1 to fpr 13 140 # load up the pointer to the saved fpr registers */
|
linux64_closure.S.orig | 64 # + 64 byte retval area + 13*8 fpr save area + round to 16 70 # + 16 bytes retval area + 13*8 bytes fpr save area + round to 16 125 # next save fpr 1 to fpr 13 140 # load up the pointer to the saved fpr registers */
|
ppc_closure.S | 58 # next save fpr 1 to fpr 8 (aligned to 8) 79 # now load up the pointer to the saved fpr registers */
|
/external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/ |
linux64_closure.S | 64 # + 64 byte retval area + 13*8 fpr save area + round to 16 70 # + 16 bytes retval area + 13*8 bytes fpr save area + round to 16 125 # next save fpr 1 to fpr 13 140 # load up the pointer to the saved fpr registers */
|
/external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/ |
linux64_closure.S | 64 # + 64 byte retval area + 13*8 fpr save area + round to 16 70 # + 16 bytes retval area + 13*8 bytes fpr save area + round to 16 125 # next save fpr 1 to fpr 13 140 # load up the pointer to the saved fpr registers */
|