Searched refs:p3 (Results 1 - 25 of 52) sorted by relevance

123

/external/kernel-headers/original/asm-generic/
H A Dxor.h39 unsigned long *p3)
44 p1[0] ^= p2[0] ^ p3[0];
45 p1[1] ^= p2[1] ^ p3[1];
46 p1[2] ^= p2[2] ^ p3[2];
47 p1[3] ^= p2[3] ^ p3[3];
48 p1[4] ^= p2[4] ^ p3[4];
49 p1[5] ^= p2[5] ^ p3[5];
50 p1[6] ^= p2[6] ^ p3[6];
51 p1[7] ^= p2[7] ^ p3[7];
54 p3
38 xor_8regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
59 xor_8regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
81 xor_8regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
140 xor_32regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
186 xor_32regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
241 xor_32regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
331 xor_8regs_p_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
361 xor_8regs_p_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
395 xor_8regs_p_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
477 xor_32regs_p_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
534 xor_32regs_p_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
602 xor_32regs_p_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
[all...]
/external/icu4c/test/perf/ubrkperf/
H A DUBrkPerf.pl45 my $p3; # Latest
50 $p3 = $ICUPathLatest."/ubrkperf/$WindowsPlatform/Release/ubrkperf.exe";
54 $p3 = $ICUPathLatest."/ubrkperf/ubrkperf";
80 "TestForwardChar", ["$p1 $m1 TestICUForward", "$p2 $m1 TestICUForward", "$p3 $m1 TestICUForward"],
81 "TestForwardWord", ["$p1 $m2 TestICUForward", "$p2 $m2 TestICUForward", "$p3 $m2 TestICUForward"],
82 "TestForwardLine", ["$p1 $m3 TestICUForward", "$p2 $m3 TestICUForward", "$p3 $m3 TestICUForward"],
83 "TestForwardSentence", ["$p1 $m4 TestICUForward", "$p2 $m4 TestICUForward", "$p3 $m4 TestICUForward"],
85 "TestIsBoundChar", ["$p1 $m1 TestICUIsBound", "$p2 $m1 TestICUIsBound", "$p3 $m1 TestICUIsBound"],
86 "TestIsBoundWord", ["$p1 $m2 TestICUIsBound", "$p2 $m2 TestICUIsBound", "$p3 $m2 TestICUIsBound"],
87 "TestIsBoundLine", ["$p1 $m3 TestICUIsBound", "$p2 $m3 TestICUIsBound", "$p3
[all...]
/external/v8/src/ia32/
H A Dsimulator-ia32.h35 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
36 entry(p0, p1, p2, p3, p4);
56 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
57 entry(p0, p1, p2, p3, p4, p5, p6)
/external/v8/src/x64/
H A Dsimulator-x64.h36 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
37 entry(p0, p1, p2, p3, p4);
57 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
58 entry(p0, p1, p2, p3, p4, p5, p6)
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid_nt.c27 // OUT PULONG p3,
38 void* p3 // 4 bytes
47 void* p3, // 4 bytes
/external/webkit/WebCore/platform/graphics/
H A DFloatQuad.h47 FloatQuad(const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& p3, const FloatPoint& p4) argument
50 , m_p3(p3)
65 FloatPoint p3() const { return m_p3; } function in class:WebCore::FloatQuad
136 a.p3() == b.p3() &&
144 a.p3() != b.p3() ||
H A DFloatQuad.cpp102 return containsPoint(other.p1()) && containsPoint(other.p2()) && containsPoint(other.p3()) && containsPoint(other.p4());
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
H A Dme_utils.cpp113 UChar *p1, *p2, *p3, *p4; local
120 p3 = cand - 1;
127 *hmem1++ = ((*p1++) + *p2 + *p3 + *p4 + 2) >> 2;
129 *hmem2++ = ((*p3++) + *p4 + 1) >> 1;
133 *hmem1++ = ((*p1++) + (*p2++) + *p3 + *p4 + 2) >> 2;
134 *hmem2++ = ((*p3++) + (*p4++) + 1) >> 1;
139 p3 += offset;
145 *hmem1++ = ((*p1++) + *p2 + (*p3++) + *p4 + 2) >> 2;
149 *hmem1 = (*p1 + *p2 + *p3 + *p4 + 2) >> 2;
169 UChar *p1, *p2, *p3, *p local
[all...]
H A Dsad_halfpel.cpp101 UChar *kk, *p1, *p2, *p3, *p4; local
106 p3 = ref + width;
115 temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
123 p3 += width;
175 UChar *kk, *p1, *p2, *p3, *p4; local
180 p3 = ref + width;
189 temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
197 p3 += width;
226 UChar *kk, *p1, *p2, *p3, *p4; local
237 p3
785 UChar *kk, *p1, *p2, *p3, *p4; local
[all...]
/external/v8/src/arm/
H A Dsimulator-arm.h44 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
45 (entry(p0, p1, p2, p3, p4))
66 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
67 entry(p0, p1, p2, p3, p4, p5, p6)
77 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
80 p0, p1, p2, p3, p4))
82 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
84 FUNCTION_ADDR(entry), 7, p0, p1, p2, p3, p4, p5, p6)
/external/v8/src/mips/
H A Dsimulator-mips.h44 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
45 entry(p0, p1, p2, p3, p4);
75 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
76 entry(p0, p1, p2, p3, p4, p5, p6)
86 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
89 p0, p1, p2, p3, p4))
91 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
93 FUNCTION_ADDR(entry), 7, p0, p1, p2, p3, p4, p5, p6)
/external/jpeg/
H A Djerror.h217 #define ERREXIT3(cinfo,code,p1,p2,p3) \
221 (cinfo)->err->msg_parm.i[2] = (p3), \
223 #define ERREXIT4(cinfo,code,p1,p2,p3,p4) \
227 (cinfo)->err->msg_parm.i[2] = (p3), \
264 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
266 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); \
269 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
271 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
274 #define TRACEMS5(cinfo,lvl,code,p1,p2,p3,p4,p5) \
276 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _m
[all...]
/external/openssl/crypto/perlasm/
H A Dcbc.pl28 local($name,$enc_func,$dec_func,$swap,$iv_off,$enc_off,$p1,$p2,$p3)=@_;
34 # p1,p2,p3 are the offsets for parameters to be passed to the
52 $data_off+=4 if ($p3 > 0);
75 if ($p3 > 0)
77 &comment("get and push parameter $p3");
78 if ($enc_off != $p3)
79 { &mov("eax", &wparam($p3)); &push("eax"); }
317 $total+=4 if ($p3 > 0);
/external/qemu/telephony/
H A Dsim_card.c327 int command, id, p1, p2, p3; local
376 if ( sscanf(cmd, "+CRSM=%d,%d,%d,%d,%d", &command, &id, &p1, &p2, &p3) == 5 ) {
382 assert(p1 == 0 && p2 == 0 && p3 == 15);
410 if (p3 > file->length)
415 gsm_hex_from_bytes( out, file->data, p3 );
416 out[p3*2] = 0;
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
H A Dc1035pf.cpp271 Word16 *p0, *p1, *p2, *p3, *p4, *p5, *p6, *p7, *p8, *p9;
347 p3 = h - codvec[3];
361 s = L_mac (s, *p3++, _sign[3]);
409 Word16 *p0, *p1, *p2, *p3, *p4, *p5, *p6, *p7, *p8, *p9; local
499 p3 = h - *(p_codvec++);
516 s += (*p3++ * *(p__sign++)) >> 7;
H A Dc8_31pf.cpp210 Word16 *p3; local
304 p3 = h - *(p_codvec++);
335 *p3++,
H A Dc4_17pf.cpp760 Word16 *p3; local
845 p3 = h - codvec[3];
874 *p3++,
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/
H A Dbuild.com24 $ p3 := 'p3'
26 $ if p3.eqs."CHECK-ONLY" then goto check
141 $ if p3.eqs."NO-CHECK" .or. p3.eqs."NOCHECK" then goto done
/external/skia/include/core/
H A DSkPath.h289 and p2, and ending at p3. If no moveTo() call has been made for this
294 @param p3 The end point on a cubic curve
296 void cubicTo(const SkPoint& p1, const SkPoint& p2, const SkPoint& p3) { argument
297 this->cubicTo(p1.fX, p1.fY, p2.fX, p2.fY, p3.fX, p3.fY);
/external/svox/pico/lib/
H A Dpicokpr.c435 picoos_uint32 p0, p1, p2, p3; local
440 p3 = *p;
442 c = p0 + (p1<<8) + (p2<<16) + (p3<<24);
472 picoos_uint32 p0, p1, p2, p3; local
477 p3 = *p;
479 c = p0 + (p1<<8) + (p2<<16) + (p3<<24);
/external/fdlibm/
H A De_lgamma_r.c213 double t,y,z,nadj,p,p1,p2,p3,q,r,w; local
267 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14)));
268 p = z*p1-(tt-w*(p2+y*p3));
/external/v8/test/cctest/
H A Dtest-assembler-arm.cc40 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4);
41 typedef Object* (*F2)(int x, int y, int p2, int p3, int p4);
42 typedef Object* (*F3)(void* p, int p1, int p2, int p3, int p4);
H A Dtest-assembler-mips.cc42 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4);
43 typedef Object* (*F2)(int x, int y, int p2, int p3, int p4);
44 typedef Object* (*F3)(void* p, int p1, int p2, int p3, int p4);
/external/opencore/codecs_v2/video/avc_h264/enc/src/
H A Dsad_halfpel.cpp74 uint8 *kk, *p1, *p2, *p3, *p4; local
83 p3 = ref + rx;
92 temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
102 p3 += rx;
/external/stlport/test/unit/
H A Dmap_test.cpp116 pair_type p3(1, 'a');
126 p3,
162 pair_type p3(1, 'a');
170 p3,

Completed in 257 milliseconds

123