HomeSort by relevance Sort by last modified time
    Searched refs:FP (Results 1 - 25 of 65) 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 (*)()'}}
explicit.cpp 163 struct FP {
170 FP fp; local
172 fp(1);
  /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...]
  /external/openfst/src/include/fst/
state-table.h 109 // 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>(fp) {
    [all...]
bi-table.h 182 // 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()) {}
195 ssize_t fp = (*fp_)(entry); local
196 if (fp >= fp2id_.size()
256 uint64 fp = (*fp_)(entry); local
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonExpandPredSpillCode.cpp 79 unsigned FP = MI->getOperand(0).getReg();
80 assert(FP == QTM.getRegisterInfo()->getFrameRegister() &&
94 .addReg(FP).addReg(HEXAGON_RESERVED_REG_1);
103 HEXAGON_RESERVED_REG_1).addReg(FP).addImm(Offset);
115 addReg(FP).addImm(Offset).addReg(HEXAGON_RESERVED_REG_2);
124 unsigned FP = MI->getOperand(1).getReg();
125 assert(FP == QTM.getRegisterInfo()->getFrameRegister() &&
136 .addReg(FP)
146 HEXAGON_RESERVED_REG_1).addReg(FP).addImm(Offset);
156 HEXAGON_RESERVED_REG_2).addReg(FP).addImm(Offset)
    [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/Mips/
MipsFrameLowering.cpp 53 // . saved FP
141 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
244 // Insert instruction "move $fp, $sp" at this location.
245 BuildMI(MBB, MBBI, dl, TII.get(ADDu), FP).addReg(SP).addReg(ZERO);
247 // emit ".cfi_def_cfa_register $fp"
251 DstML = MachineLocation(FP);
272 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
285 // Insert instruction "move $sp, $fp" at this location
    [all...]
  /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/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/valgrind/main/massif/
ms_main.c     [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 101 bool FP = hasFP(MF);
169 if (FP) {
182 // Set the FP from the SP.
187 // Show FP is now valid.
221 bool FP = hasFP(MF);
222 if (FP) {
246 if (FP) {
368 // A callee save register is used to hold the FP.
  /external/llvm/lib/VMCore/
PassManager.cpp 272 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
273 return FP;
    [all...]
  /external/aac/libSYS/include/
genericStds.h 425 * \fn INT FDKfclose(FDKFILE *FP);
427 * \fn INT FDKfseek(FDKFILE *FP, LONG OFFSET, int WHENCE);
429 * \fn INT FDKftell(FDKFILE *FP);
431 * \fn INT FDKfflush(FDKFILE *fp);
433 * \fn UINT FDKfwrite(void *ptrf, INT size, UINT nmemb, FDKFILE *fp);
435 * \fn UINT FDKfread(void *dst, INT size, UINT nmemb, FDKFILE *fp);
442 INT FDKfclose(FDKFILE *FP);
443 INT FDKfseek(FDKFILE *FP, LONG OFFSET, int WHENCE);
444 INT FDKftell(FDKFILE *FP);
445 INT FDKfflush(FDKFILE *fp);
    [all...]
  /external/openssl/crypto/des/
des_enc.c 150 FP(r,l);
258 FP(r,l);
278 FP(r,l);

Completed in 652 milliseconds

1 2 3