HomeSort by relevance Sort by last modified time
    Searched refs:p2 (Results 126 - 150 of 380) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 108 void Path::addBezierCurveTo(const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& ep)
110 m_path->cubicTo(p1, p2, ep);
113 void Path::addArcTo(const FloatPoint& p1, const FloatPoint& p2, float radius)
115 m_path->arcTo(p1, p2, WebCoreFloatToSkScalar(radius));
  /external/wpa_supplicant/
os_internal.c 279 const unsigned char *p1 = s1, *p2 = s2; local
284 while (*p1 == *p2) {
286 p2++;
292 return *p1 - *p2;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_internal.c 279 const unsigned char *p1 = s1, *p2 = s2; local
284 while (*p1 == *p2) {
286 p2++;
292 return *p1 - *p2;
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ScheduledExecutorSubclassTest.java 302 CustomExecutor p2 = new CustomExecutor(2); local
303 assertEquals(0, p2.getActiveCount());
304 p2.execute(new SmallRunnable());
306 assertEquals(1, p2.getActiveCount());
307 joinPool(p2);
315 CustomExecutor p2 = new CustomExecutor(2); local
316 assertEquals(0, p2.getCompletedTaskCount());
317 p2.execute(new SmallRunnable());
319 assertEquals(1, p2.getCompletedTaskCount());
320 joinPool(p2);
337 CustomExecutor p2 = new CustomExecutor(2); local
    [all...]
ScheduledExecutorTest.java 251 ScheduledThreadPoolExecutor p2 = new ScheduledThreadPoolExecutor(2); local
252 assertEquals(0, p2.getActiveCount());
253 p2.execute(new SmallRunnable());
255 assertEquals(1, p2.getActiveCount());
256 joinPool(p2);
264 ScheduledThreadPoolExecutor p2 = new ScheduledThreadPoolExecutor(2); local
265 assertEquals(0, p2.getCompletedTaskCount());
266 p2.execute(new SmallRunnable());
268 assertEquals(1, p2.getCompletedTaskCount());
269 joinPool(p2);
286 ScheduledThreadPoolExecutor p2 = new ScheduledThreadPoolExecutor(2); local
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 463 void swap(scoped_ptr& p2) {
465 ptr_ = p2.ptr_;
466 p2.ptr_ = tmp;
486 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
487 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
552 void swap(scoped_array& p2) {
554 array_ = p2.array_;
555 p2.array_ = tmp;
573 template <class C2> bool operator==(scoped_array<C2> const& p2) const;
574 template <class C2> bool operator!=(scoped_array<C2> const& p2) const
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/src/
omx_vdec.cpp 174 bool omx_vdec::omx_cmd_queue::insert_entry(unsigned p1, unsigned p2, unsigned id)
181 m_q[m_write].param2 = p2;
198 bool omx_vdec::omx_cmd_queue::pop_entry(unsigned *p1, unsigned *p2, unsigned *id)
205 *p2 = m_q[m_read].param2;
381 unsigned p2; // Parameter - 2 local
401 pThis->m_cmd_q.pop_entry(&p1,&p2,&ident);
409 pThis->m_ftb_q.pop_entry(&p1,&p2,&ident);
418 pThis->m_etb_q.pop_entry(&p1,&p2,&ident);
435 pThis->m_state = (OMX_STATETYPE) p2;
439 OMX_EventCmdComplete, p1, p2, NULL)
1796 unsigned p2 = 0; \/\/ Parameter - 2 local
1872 unsigned p2 = 0; \/\/ Parameter - 2 local
5582 unsigned address,p2,id; local
5622 unsigned address,p2,id; local
5688 unsigned address,p2,id; local
5811 unsigned address,p2,id; local
6134 unsigned p1 =0,p2 = 0,ident = 0; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 300 Paint p2 = new Paint(); local
316 p2.set(p);
317 assertEquals(c, p2.getColorFilter());
318 assertEquals(m, p2.getMaskFilter());
319 assertEquals(e, p2.getPathEffect());
320 assertEquals(r, p2.getRasterizer());
321 assertEquals(s, p2.getShader());
322 assertEquals(t, p2.getTypeface());
323 assertEquals(x, p2.getXfermode());
325 p2.set(p2)
    [all...]
  /hardware/qcom/media/mm-video/vidc/venc/src/
omx_video_base.cpp 134 bool omx_video::omx_cmd_queue::insert_entry(unsigned p1, unsigned p2, unsigned id)
141 m_q[m_write].param2 = p2;
158 bool omx_video::omx_cmd_queue::pop_entry(unsigned *p1, unsigned *p2, unsigned *id)
165 *p2 = m_q[m_read].param2;
290 unsigned p2; // Parameter - 2 local
310 pThis->m_cmd_q.pop_entry(&p1,&p2,&ident);
318 pThis->m_ftb_q.pop_entry(&p1,&p2,&ident);
327 pThis->m_etb_q.pop_entry(&p1,&p2,&ident);
345 pThis->m_state = (OMX_STATETYPE) p2;
348 OMX_EventCmdComplete, p1, p2, NULL)
1259 unsigned p2 = 0; \/\/ Parameter - 2 local
1306 unsigned p2 = 0; \/\/ Parameter - 2 local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
dcfmapts.cpp 316 UnicodeString p2("#,##,##0.0# FF;(#,##,##0.0# FF)");
317 logln((UnicodeString)"Applying pattern " + p2);
319 pat.applyLocalizedPattern(p2, status);
326 if(s3 != p2) {
332 pat.applyLocalizedPattern(p2, pe, status);
339 if(s4 != p2) {
pptest.cpp 222 ParsePosition p2(3);
223 if (p != p2)
  /external/icu4c/test/intltest/
dcfmapts.cpp 323 UnicodeString p2("#,##,##0.0# FF;(#,##,##0.0# FF)");
324 logln((UnicodeString)"Applying pattern " + p2);
326 pat.applyLocalizedPattern(p2, status);
333 if(s3 != p2) {
339 pat.applyLocalizedPattern(p2, pe, status);
346 if(s4 != p2) {
pptest.cpp 222 ParsePosition p2(3);
223 if (p != p2)
  /external/openssl/crypto/bio/
bf_buff.c 275 char *p1,*p2; local
352 p2=ctx->obuf;
360 p2=(char *)OPENSSL_malloc((int)num);
361 if (p2 == NULL)
375 if (ctx->obuf != p2)
378 ctx->obuf=p2;
  /external/openssl/crypto/jpake/
jpake.c 65 JPAKE_STEP_PART_init(&s1->p2);
70 JPAKE_STEP_PART_release(&s1->p2);
280 generate_step_part(&send->p2, ctx->xb, ctx->p.g, ctx);
295 if(!verify_zkp(&received->p2, ctx->p.g, ctx))
302 if(BN_is_one(received->p2.gx))
310 BN_copy(ctx->p.gxd, received->p2.gx);
jpake.h 42 JPAKE_STEP_PART p2; /* g^x4, ZKP(x4) or g^x2, ZKP(x2) */ member in struct:__anon5574
  /external/libvpx/vp8/common/arm/armv6/
loopfilter_v6.asm 46 pkhbt $b1, $a0, $a2, lsl #16 ; 31 21 11 01 -- p2
76 ldr r10, [src], pstep ; p2
89 uqsub8 r6, r9, r10 ; p3 - p2
90 uqsub8 r7, r10, r9 ; p2 - p3
91 uqsub8 r8, r10, r11 ; p2 - p1
92 uqsub8 r10, r11, r10 ; p1 - p2
94 orr r6, r6, r7 ; abs (p3-p2)
95 orr r8, r8, r10 ; abs (p2-p1)
263 ldrne r10, [src], pstep ; p2
285 ldr r10, [src], pstep ; p2
    [all...]
  /external/bluetooth/glib/tests/
asyncqueue-test.c 38 sort_compare (gconstpointer p1, gconstpointer p2, gpointer user_data)
44 id2 = GPOINTER_TO_INT (p2);
  /external/elfutils/libelf/
nlist.c 39 #define COMPARE(p1, p2) strcmp ((p1)->str, (p2)->str)
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/
build.com 23 $ p2 := 'p2'
27 $ p2 = p2 - "_PARSER"
48 $ if p2.eqs."BISON"
55 $ if p2.eqs."BYACC" .or. p2.eqs."YACC"
56 $ then YACC = f$edit(p2,"LOWERCASE")
58 $ if p2.nes."" .and. p2.nes."NO" .and. p2.nes."NONE" then exit %x002
    [all...]
  /external/chromium/base/
stl_util-inl.h 335 // Specifically, if p1 and p2, respectively, are the functions that
340 // * UnaryOperate2nd<pair>(f) returns the function x -> f(p2(x))
342 // * BinaryOperate2nd<pair>(f) returns the function (x,y) -> f(p2(x),p2(y))
404 const Pair& p2) const {
405 return f_(p1.first, p2.first);
428 const Pair& p2) const {
429 return f_(p1.second, p2.second);
  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 104 void Path::addArcTo(const FloatPoint& p1, const FloatPoint& p2, float radius)
  /system/core/init/
bootchart.c 275 const char* p2; local
278 p2 = strchr(p1, ')');
281 file_buff_write(log, p2, strlen(p2));
  /external/libpcap/
nametoaddr.c 227 u_int p1, p2; local
231 if (sscanf(name, "%d-%d", &p1, &p2) != 2) {
257 *port2 = p2;
  /external/libvpx/vp8/common/arm/neon/
loopfilterhorizontaledge_uv_neon.asm 39 vld1.u8 {d8}, [r0], r1 ; p2
40 vld1.u8 {d9}, [r2], r1 ; p2
60 vabd.u8 q11, q3, q4 ; abs(p3 - p2)
61 vabd.u8 q12, q4, q5 ; abs(p2 - p1)
68 vcge.u8 q15, q1, q11 ; (abs(p3 - p2) > limit)*-1
69 vcge.u8 q12, q1, q12 ; (abs(p2 - p1) > limit)*-1

Completed in 763 milliseconds

1 2 3 4 56 7 8 91011>>