HomeSort by relevance Sort by last modified time
    Searched defs:FP (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/clang/test/Sema/
block-call.c 3 int (*FP)();
7 int (*FPL) (int) = FP; // C doesn't consider this an error.
  /external/clang/test/SemaCXX/
block-call.cpp 3 int (*FP)();
7 int (*FPL) (int) = FP; // expected-error {{cannot initialize a variable of type 'int (*)(int)' with an lvalue of type 'int (*)()'}}
  /external/boringssl/src/crypto/fipsmodule/des/
internal.h 148 /* IP and FP
179 Thanks for hints from Richard Outerbridge - he told me IP&FP
202 #define FP(l, r) \
des.c 440 FP(r, l);
516 FP(r, l);
535 FP(r, l);
780 #undef FP
  /external/compiler-rt/test/profile/Inputs/
instrprof-alloc.c 7 void (*FP)();
28 FP = foo;
30 FP = foo2;
38 FP();
  /external/compiler-rt/test/profile/Linux/
instrprof-merge-vp.c 29 typedef void (*FP)(void);
30 FP Fps[3] = {callee1, callee2, callee3};
  /external/libffi/src/sparc/
v9.S 135 #define FP %fp+STACK_BIAS
151 stx %i0, [FP+128+0]
152 stx %i1, [FP+128+8]
153 stx %i2, [FP+128+16]
154 stx %i3, [FP+128+24]
155 stx %i4, [FP+128+32]
156 stx %i5, [FP+128+40]
159 std %f0, [FP-128]
160 std %f2, [FP-120
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
v9.S 135 #define FP %fp+STACK_BIAS
151 stx %i0, [FP+128+0]
152 stx %i1, [FP+128+8]
153 stx %i2, [FP+128+16]
154 stx %i3, [FP+128+24]
155 stx %i4, [FP+128+32]
156 stx %i5, [FP+128+40]
159 std %f0, [FP-128]
160 std %f2, [FP-120
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/sparc/
v9.S 135 #define FP %fp+STACK_BIAS
151 stx %i0, [FP+128+0]
152 stx %i1, [FP+128+8]
153 stx %i2, [FP+128+16]
154 stx %i3, [FP+128+24]
155 stx %i4, [FP+128+32]
156 stx %i5, [FP+128+40]
159 std %f0, [FP-128]
160 std %f2, [FP-120
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaFrameLowering.cpp 53 bool FP = hasFP(MF);
67 if (FP)
68 NumBytes += 8; //reserve space for the old FP
93 // Now if we need to, save the old FP and set the new
94 if (FP) {
115 bool FP = hasFP(MF);
120 //now if we need to, restore the old FP
121 if (FP) {
122 //copy the FP into the SP (discards allocas)
125 //restore the FP
    [all...]
AlphaRegisterInfo.cpp 124 //<- FP
139 bool FP = TFI->hasFP(MF);
148 // Add the base register of R30 (SP) or R15 (FP).
149 MI.getOperand(i + 1).ChangeToRegister(FP ? Alpha::R15 : Alpha::R30, false);
165 //original inst off the SP/FP
172 .addImm(getUpper16(Offset)).addReg(FP ? Alpha::R15 : Alpha::R30);
  /art/disassembler/
disassembler_arm64.cc 40 FP = 29,
  /external/clang/test/CodeGen/
pointer-arithmetic.c 10 typedef void (*FP)(void);
18 FP f5(FP a, int b) { return a + b; }
19 FP f5_1(FP a, int b) { return (a += b); }
20 FP f6(int a, FP b) { return a + b; }
21 FP f6_1(int a, FP b) { return (a += b); }
22 FP f7(FP a, int b) { return a - b;
    [all...]
struct-init.c 37 void (*FP)(struct fp_struct_bar);
  /external/libcxx/src/
chrono.cpp 175 typedef steady_clock::rep (*FP)();
178 FP
191 static FP fp = init_steady_clock(); variable
192 return time_point(duration(fp()));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
chrono.cpp 175 typedef steady_clock::rep (*FP)();
178 FP
191 static FP fp = init_steady_clock(); variable
192 return time_point(duration(fp()));
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 197 // Reserve FP if this function should have a dedicated frame pointer register.
202 Reserved.set(Mips::FP);
304 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
320 unsigned FP = Subtarget.isGP32bit() ? Mips::FP : Mips::FP_64;
329 if (!MF.getRegInfo().canReserveReg(FP))
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreRegisterInfo.cpp 217 bool FP = TFI->hasFP(MF);
227 if (FP) {
XCoreFrameLowering.cpp 102 bool FP = hasFP(MF);
170 if (FP) {
183 // Set the FP from the SP.
188 // Show FP is now valid.
222 bool FP = hasFP(MF);
223 if (FP) {
247 if (FP) {
369 // A callee save register is used to hold the FP.
  /art/runtime/arch/arm/
registers_arm.h 45 FP = 11,
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 352 /// \brief This is a standard arm64 prologue where FP/LR are immediately
353 /// pushed on the stack, then SP is copied to FP. If there are any
355 /// in a contiguous ranger right below the saved FP/LR pair. Any subset of the
414 AArch64::FP &&
431 assert(LRReg == AArch64::LR && FPReg == AArch64::FP &&
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 271 Constant *FP = CS->getOperand(1);
272 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
274 FP = CE->getOperand(0);
275 if (Function *F = dyn_cast<Function>(FP)) {
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExtractFunction.cpp 216 Constant *FP = CS->getOperand(1);
217 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
219 FP = CE->getOperand(0);
220 if (Function *F = dyn_cast<Function>(FP)) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
arithmetic.s 16 FP = p1 + fp;
51 FP += -32;
84 fp -= p2;
95 P5 += Fp (BREV);
load.s 10 FP.L = 0xfedc;
20 fp = 0xff20 (Z); define
32 fp = 44 (X); define
46 Sp = [ fp];
47 FP = [ p0++ ];
50 p3 = [fp + 0];
51 P4 = [FP + 0x0001FFFC];
52 sp = [fp-0x0001fffc];
54 P5 = [FP-128];
63 R4 = [Fp + 40]
    [all...]

Completed in 473 milliseconds

1 2 3 4