Searched refs:FP (Results 1 - 25 of 66) sorted by relevance

123

/external/clang/test/CodeGen/
H A Dpointer-arithmetic.c10 typedef void (*FP)(void); typedef
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 f
[all...]
H A Dstruct-init.c37 void (*FP)(struct fp_struct_bar); member in struct:fp_struct_foo
/external/libffi/src/sparc/
H A Dv9.S135 #define FP %fp+STACK_BIAS define
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]
161 std %f4, [FP
[all...]
/external/chromium/crypto/
H A Dscoped_capi_types.h99 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/clang/test/Sema/
H A Dblock-call.c3 int (*FP)(); variable
7 int (*FPL) (int) = FP; // C doesn't consider this an error.
/external/clang/test/SemaCXX/
H A Dblock-call.cpp3 int (*FP)(); variable
7 int (*FPL) (int) = FP; // expected-error {{cannot initialize a variable of type 'int (*)(int)' with an lvalue of type 'int (*)()'}}
H A Dexplicit.cpp163 struct FP { struct
170 FP fp;
/external/srec/srec/include/
H A Dcomp_stats.h128 #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/
H A Dscoped_ptr.h365 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/
H A Dscoped_ptr.h304 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...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandPredSpillCode.cpp79 unsigned FP = MI->getOperand(0).getReg(); local
80 assert(FP == QTM.getRegisterInfo()->getFrameRegister() &&
94 .addReg(FP).addReg(HEXAGON_RESERVED_REG_1);
103 HEXAGON_RESERVED_REG_1).addReg(FP).addImm(Offset);
117 addReg(FP).addImm(Offset).addReg(HEXAGON_RESERVED_REG_2);
126 unsigned FP = MI->getOperand(1).getReg(); local
127 assert(FP == QTM.getRegisterInfo()->getFrameRegister() &&
138 .addReg(FP)
148 HEXAGON_RESERVED_REG_1).addReg(FP).addImm(Offset);
158 HEXAGON_RESERVED_REG_2).addReg(FP)
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsSEFrameLowering.cpp41 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP; local
110 BuildMI(MBB, MBBI, dl, TII.get(ADDu), FP).addReg(SP).addReg(ZERO);
116 DstML = MachineLocation(FP);
130 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP; local
143 BuildMI(MBB, I, dl, TII.get(ADDu), SP).addReg(FP).addReg(ZERO);
200 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP; local
204 MRI.setPhysRegUsed(FP);
[all...]
H A DMipsRegisterInfo.cpp116 // Reserve FP if this function should have a dedicated frame pointer register.
118 Reserved.set(Mips::FP);
186 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
/external/openfst/src/include/fst/
H A Dbi-table.h182 // It is passed a function object FP that should fingerprint entries
184 // VectorBiTable constructs the FP object. The user can instead
187 template <class I, class T, class FP>
190 explicit VectorBiTable(FP *fp = 0) : fp_(fp ? fp : new FP()) {}
210 const FP &Fingerprint() const { return *fp_; }
213 FP *fp_;
223 // vector. The fingerprinting functor FP returns a unique fingerprint
227 template <class I, class T, class S, class FP, class H>
233 VectorHashBiTable(S *s, FP *f
[all...]
H A Dstate-table.h109 // It is passed a function object FP that should fingerprint tuples
111 // VectorStateTable constructs the FP object. The user can instead
114 template <class T, class FP>
116 : public VectorBiTable<typename T::StateId, T, FP> {
120 using VectorBiTable<StateId, T, FP>::FindId;
121 using VectorBiTable<StateId, T, FP>::FindEntry;
122 using VectorBiTable<StateId, T, FP>::Size;
123 using VectorBiTable<StateId, T, FP>::Fingerprint;
125 explicit VectorStateTable(FP *fp = 0) : VectorBiTable<StateId, T, FP>(f
[all...]
/external/llvm/include/llvm/Analysis/
H A DRegionPass.h115 Pass *FP = static_cast<Pass *>(PassVector[N]);
116 return FP;
/external/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h47 const unsigned *OC, const unsigned *FP,
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp29 const unsigned *FP,
37 ForwardingPaths = FP;
23 InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS, const SubtargetFeatureKV *PF, const SubtargetFeatureKV *PD, const SubtargetInfoKV *ProcSched, const InstrStage *IS, const unsigned *OC, const unsigned *FP, unsigned NF, unsigned NP) argument
/external/valgrind/main/memcheck/tests/
H A Dorigin2-not-quite.stderr.exp2 Undef 1 of 3 (64-bit FP)
12 Undef 2 of 3 (32-bit FP)
/external/oprofile/events/mips/vr5432/
H A Devents9 event:0x5 counters:0,1 um:zero minimum:500 name:FP_INSTRUCTIONS : (FP instruction execution) / 2 and truncated excluding cp1 loads and stores
/external/valgrind/main/massif/
H A Dms_main.c889 NULL/*array to dump FP values in*/,
2132 #define FP(format, args...) ({ \ macro
2191 FP("%sn%d: %lu ", depth_str, sxpt->Sig.n_children, sxpt->szB);
2208 // Nb: We treat this specially (ie. we don't use FP) so that if the
2267 FP("%sn0: %lu in %d place%s below massif's threshold (%s)\n",
2282 FP("#-----------\n");
2283 FP("snapshot=%d\n", snapshot_n);
2284 FP("#-----------\n");
2285 FP("time=%lld\n", snapshot->time);
2286 FP("mem_heap_
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp100 bool FP = hasFP(MF); local
168 if (FP) {
181 // Set the FP from the SP.
186 // Show FP is now valid.
220 bool FP = hasFP(MF); local
221 if (FP) {
245 if (FP) {
367 // A callee save register is used to hold the FP.
/external/llvm/lib/VMCore/
H A DPassManager.cpp272 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
273 return FP;
1422 FunctionPass *FP = getContainedPass(Index); local
1423 AnalysisResolver *AR = FP->getResolver();
1466 FunctionPass *FP = getContainedPass(Index); local
1467 FP->dumpPassStructure(Offset + 1);
1468 dumpLastUses(FP, Offset+1);
1486 FunctionPass *FP = getContainedPass(Index); local
1489 dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getName());
1490 dumpRequiredSet(FP);
[all...]
/external/aac/libSYS/include/
H A DgenericStds.h425 * \fn INT FDKfclose(FDKFILE *FP);
427 * \fn INT FDKfseek(FDKFILE *FP, LONG OFFSET, int WHENCE);
429 * \fn INT FDKftell(FDKFILE *FP);
442 INT FDKfclose(FDKFILE *FP);
443 INT FDKfseek(FDKFILE *FP, LONG OFFSET, int WHENCE);
444 INT FDKftell(FDKFILE *FP);
/external/openssl/crypto/des/
H A Ddes_enc.c150 FP(r,l);
258 FP(r,l);
278 FP(r,l);

Completed in 478 milliseconds

123