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

1 2 3

  /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 36 void (*FP)(struct fp_struct_bar);
  /external/chromium/crypto/
scoped_capi_types.h 99 template<class CH, typename FP>
100 const FP ScopedCAPIHandle<CH, FP>::free_ = FP();
102 template<class CH, typename FP> inline
103 bool operator==(CH h, const ScopedCAPIHandle<CH, FP>& b) {
107 template<class CH, typename FP> inline
108 bool operator!=(CH h, const ScopedCAPIHandle<CH, FP>& b) {
  /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/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/srec/srec/include/
comp_stats.h 110 void print_cs_clock(CS_CLOCK *c, float num_seconds, PFile* fp, char *prompt, char *item_name);
111 void dump_comp_stats(COMP_STATS *c, PFile* fp);
128 #define print_cs_clock1( CLK, NS,FP,PR,IN) print_cs_clock( CLK, NS,FP,PR,IN)
129 #define dump_comp_stats1( CS,FP) dump_comp_stats( CS,FP)
139 #define print_cs_clock1( CLK, NS,FP,PR,IN)
140 #define dump_comp_stats1( CS,FP)
  /external/chromium/base/memory/
scoped_ptr.h 365 template<class C, class FP>
366 FP const scoped_ptr_malloc<C, FP>::free_ = FP();
368 template<class C, class FP> inline
369 void swap(scoped_ptr_malloc<C, FP>& a, scoped_ptr_malloc<C, FP>& b) {
373 template<class C, class FP> inline
374 bool operator==(C* p, const scoped_ptr_malloc<C, FP>& b) {
378 template<class C, class FP> inlin
    [all...]
  /external/chromium/googleurl/base/
scoped_ptr.h 304 template<typename T, typename FP>
305 FP const scoped_ptr_malloc<T,FP>::free_ = FP();
307 template<typename T, typename FP> inline
308 void swap(scoped_ptr_malloc<T,FP>& a, scoped_ptr_malloc<T,FP>& b) {
312 template<typename T, typename FP> inline
313 bool operator==(T* p, const scoped_ptr_malloc<T,FP>& b) {
317 template<typename T, typename FP> inlin
    [all...]
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_SAVE_STATE.S 20 add r0, #12 @ move to start of FP save regio
  /external/llvm/include/llvm/Analysis/
RegionPass.h 115 Pass *FP = static_cast<Pass *>(PassVector[N]);
116 return FP;
  /external/llvm/include/llvm/MC/
MCSubtargetInfo.h 46 const unsigned *OC, const unsigned *FP,
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 27 const unsigned *FP,
35 ForwardingPathes = FP;
  /external/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);
  /external/valgrind/main/memcheck/tests/
origin2-not-quite.stderr.exp 2 Undef 1 of 3 (64-bit FP)
12 Undef 2 of 3 (32-bit FP)
  /external/llvm/lib/Target/Blackfin/
BlackfinFrameLowering.cpp 62 "FP elimination on a non-leaf function is not supported");
75 // [--SP] = FP;
76 // FP = SP;
82 .addReg(BF::FP, RegState::Kill);
83 BuildMI(MBB, MBBI, dl, TII.get(BF::MOVE), BF::FP)
107 "FP elimination on a non-leaf function is not supported");
BlackfinRegisterInfo.cpp 45 FP,
77 Reserved.set(FP);
207 unsigned BaseReg = BF::FP;
231 if (BaseReg == BF::FP && isUInt<7>(-Offset)) {
333 return TFI->hasFP(MF) ? BF::FP : BF::SP;
  /external/oprofile/events/mips/vr5432/
events 9 event:0x5 counters:0,1 um:zero minimum:500 name:FP_INSTRUCTIONS : (FP instruction execution) / 2 and truncated excluding cp1 loads and stores
  /external/llvm/lib/VMCore/
PassManager.cpp 289 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
290 return FP;
    [all...]
  /external/valgrind/main/massif/
ms_main.c     [all...]
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 51 // . saved FP
243 // Insert instruction "move $fp, $sp" at this location.
244 BuildMI(MBB, MBBI, dl, TII.get(Mips::ADDu), Mips::FP)
247 // emit ".cfi_def_cfa_register $fp"
251 DstML = MachineLocation(Mips::FP);
291 // Insert instruction "move $sp, $fp" at this location.
293 .addReg(Mips::FP).addReg(Mips::ZERO);
315 // $fp and $ra used or unused.
317 // Mark $fp and $ra as used or unused.
319 MRI.setPhysRegUsed(Mips::FP);
    [all...]
MipsRegisterInfo.cpp 129 case Mips::FP: case Mips::FP_64: case Mips::F30: case Mips::D30_64:
153 Mips::RA, Mips::FP, Mips::S7, Mips::S6, Mips::S5, Mips::S4,
159 Mips::RA, Mips::FP, Mips::S7, Mips::S6, Mips::S5, Mips::S4,
194 Mips::GP, Mips::SP, Mips::FP, Mips::RA, 0
338 return TFI->hasFP(MF) ? Mips::FP : Mips::SP;
  /external/llvm/lib/Target/XCore/
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.
  /external/openssl/crypto/des/
des_enc.c 150 FP(r,l);
258 FP(r,l);
278 FP(r,l);

Completed in 848 milliseconds

1 2 3