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

1 2

  /external/libgsm/inc/
unproto.h 18 #undef P5
proto.h 30 #undef P5
44 # define P5(x, a, b, c, d, e) (a, b, c, d, e)
58 # define P5(x, a, b, c, d, e) x a; b; c; d; e;
  /external/chromium/base/
bind.h 76 typename P5>
78 P5> >
80 const P5& p5) {
82 new internal::InvokerStorage5<Sig, P1, P2, P3, P4, P5>(
83 f, p1, p2, p3, p4, p5));
87 typename P5, typename P6>
89 P5, P6> >
91 const P5& p5, const P6& p6)
    [all...]
bind_internal.h     [all...]
  /external/webkit/Source/WebCore/dom/
CrossThreadTask.h 194 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5>
198 typedef CrossThreadTask5<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5> CrossThreadTask;
203 typedef typename CrossThreadTaskTraits<P5>::ParamType Param5;
232 P5 m_parameter5;
235 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5, typename P6, typename MP6>
239 typedef CrossThreadTask6<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5, P6, MP6> CrossThreadTask;
244 typedef typename CrossThreadTaskTraits<P5>::ParamType Param5;
275 P5 m_parameter5;
279 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5, typename P6, typename MP6, typename P7, typename MP7>
283 typedef CrossThreadTask7<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5, P6, MP6, P7, MP7> CrossThreadTask
    [all...]
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 60 template<typename P1, typename P2, typename P3, typename P4, typename P5>
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
62 : T(p1, p2, p3, p4, p5), ref_count_(0) {}
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_exp.c 37 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
38 * (where z=r*r, and the values of P1 to P5 are listed below)
41 * | 2.0+P1*z+...+P5*z - R(z) | <= 2
52 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
99 P5 = 4.13813679705723846039e-08; /* 0x3E663769, 0x72BEA4D0 */
151 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
e_pow.c 84 P5 = 4.13813679705723846039e-08, /* 0x3E663769, 0x72BEA4D0 */
298 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
e_powf.c 43 P5 = 4.1381369442e-08, /* 0x3331bb4c */
241 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
s_exp2.c 45 P5 = 0x1.5d88003875c74p-10;
382 r = t + t * z * (P1 + z * (P2 + z * (P3 + z * (P4 + z * P5))));
  /external/fdlibm/
e_exp.c 34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
35 * (where z=r*r, and the values of P1 to P5 are listed below)
38 * | 2.0+P1*z+...+P5*z - R(z) | <= 2
49 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
98 P5 = 4.13813679705723846039e-08; /* 0x3E663769, 0x72BEA4D0 */
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
e_pow.c 88 P5 = 4.13813679705723846039e-08, /* 0x3E663769, 0x72BEA4D0 */
301 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
HandleMessage.h 40 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5>
41 void callMemberFunction(const Arguments5<P1, P2, P3, P4, P5>& args, C* object, MF function)
46 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6>
47 void callMemberFunction(const Arguments6<P1, P2, P3, P4, P5, P6>& args, C* object, MF function)
52 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename P7>
53 void callMemberFunction(const Arguments7<P1, P2, P3, P4, P5, P6, P7>& args, C* object, MF function)
144 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename R1>
145 void callMemberFunction(const Arguments6<P1, P2, P3, P4, P5, P6>& args, Arguments1<R1>& replyArgs, C* object, MF function)
150 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename P7, typename R1>
151 void callMemberFunction(const Arguments7<P1, P2, P3, P4, P5, P6, P7>& args, Arguments1<R1>& replyArgs, C* object, MF function
    [all...]
  /external/chromium/testing/
gmock_mutant.h 666 typename P3, typename P4, typename P5>
668 const Tuple5<P1, P2, P3, P4, P5>& p,
673 typename P4, typename P5>
675 const Tuple5<P1, P2, P3, P4, P5>& p,
682 typename P3, typename P4, typename P5, typename C1>
684 const Tuple5<P1, P2, P3, P4, P5>& p,
689 typename P4, typename P5, typename C1>
691 const Tuple5<P1, P2, P3, P4, P5>& p,
698 typename P3, typename P4, typename P5, typename C1, typename C2>
700 const Tuple5<P1, P2, P3, P4, P5>& p
4399 const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) { member in namespace:testing
4488 const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) { member in namespace:testing
4580 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4675 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4771 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4867 A5), const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4967 const P5& p5, const P6& p6) { member in namespace:testing
    [all...]
  /external/libgsm/src/
rpe.c 256 static void APCM_quantization P5((xM,xMc,mant_out,exp_out,xmaxc_out),
449 void Gsm_RPE_Encoding P5((S,e,xmaxc,Mc,xMc),
472 void Gsm_RPE_Decoding P5((S, xmaxcr, Mcr, xMcr, erp),
short_term.c 265 static void Short_term_synthesis_filtering P5((S,rrp,k,wt,sr),
309 static void Fast_Short_term_synthesis_filtering P5((S,rrp,k,wt,sr),
long_term.c 49 static void Cut_Calculation_of_the_LTP_parameters P5((st, d,dp,bc_out,Nc_out),
293 static void Cut_Calculation_of_the_LTP_parameters P5((st, d,dp,bc_out,Nc_out),
637 static void Cut_Fast_Calculation_of_the_LTP_parameters P5((st,
905 void Gsm_Long_Term_Synthesis_Filtering P5((S,Ncr,bcr,erp,drp),
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.h 225 double P4[2],P5[2],P6[2],P7[2];
254 P5[0]=A[13];
280 db_SubtractPolyProduct0_2(p,P5,neg_three1);
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_utilities_poly.h 225 double P4[2],P5[2],P6[2],P7[2];
254 P5[0]=A[13];
280 db_SubtractPolyProduct0_2(p,P5,neg_three1);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.h 225 double P4[2],P5[2],P6[2],P7[2];
254 P5[0]=A[13];
280 db_SubtractPolyProduct0_2(p,P5,neg_three1);
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 51 typename P5>
52 class CheckerFn<RET(P1, P2, P3, P4, P5)> {
53 typedef RET (*Func)(void *, P1, P2, P3, P4, P5);
58 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) const {
59 return Fn(Checker, p1, p2, p3, p4, p5);
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_pow.h 84 P5 = 4.13813679705723846039e-08, /* 0x3E663769, 0x72BEA4D0 */
294 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
  /external/libvpx/libvpx/vp8/common/ppc/
filter_altivec.asm 66 .macro vinterp_no_store P0 P1 P2 P3 P4 P5
73 Msum v16, v17, \P5, v5, v8
88 .macro vinterp_no_store_8x8 P0 P1 P2 P3 P4 P5
95 Msum v21, v22, \P5, v18, v25
111 .macro Vinterp P0 P1 P2 P3 P4 P5
112 vinterp_no_store \P0, \P1, \P2, \P3, \P4, \P5
118 .macro luma_v P0, P1, P2, P3, P4, P5
119 addi r9, r9, 16 ;# P5 = newest input row
120 lvx \P5, 0, r9
121 Vinterp \P0, \P1, \P2, \P3, \P4, \P5
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.h     [all...]
  /external/llvm/unittests/IR/
ConstantsTest.cpp 184 Constant *P5 = ConstantExpr::getUIToFP(P4, FloatTy);
241 CHECK(ConstantExpr::getFCmp(CmpInst::FCMP_ULT, P1, P5), "fcmp ult float "

Completed in 509 milliseconds

1 2