HomeSort by relevance Sort by last modified time
    Searched defs:p1 (Results 251 - 275 of 415) sorted by null

<<11121314151617

  /external/chromium_org/third_party/boringssl/src/ssl/
t1_enc.c 575 unsigned char *p1,*p2=NULL; local
632 if ((p1=(unsigned char *)OPENSSL_malloc(num)) == NULL)
639 s->s3->tmp.key_block=p1;
655 if (!tls1_generate_key_block(s,p1,p2,num))
659 { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); }
    [all...]
  /external/chromium_org/third_party/icu/source/common/
locdispnames.cpp 537 UChar *p1=u_strstr(separator, sub1); local
538 if (p0==NULL || p1==NULL || p1<p0) {
543 sepLen = p1 - separator;
554 UChar *p1=u_strstr(pattern, sub1); local
555 if (p0==NULL || p1==NULL) {
560 sub1Pos=p1-pattern;
    [all...]
uhash.c 912 const UChar *p1 = (const UChar*) key1.pointer; local
914 if (p1 == p2) {
917 if (p1 == NULL || p2 == NULL) {
920 while (*p1 != 0 && *p1 == *p2) {
921 ++p1;
924 return (UBool)(*p1 == *p2);
929 const char *p1 = (const char*) key1.pointer; local
931 if (p1 == p2) {
934 if (p1 == NULL || p2 == NULL)
946 const char *p1 = (const char*) key1.pointer; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/
loopfilter_filters_dspr2.c 47 uint32_t p1,
73 /* mask |= (abs(p2 - p1) > limit) */
74 "subu_s.qb %[c], %[p2], %[p1] \n\t"
75 "subu_s.qb %[r_k], %[p1], %[p2] \n\t"
80 /* mask |= (abs(p1 - p0) > limit)
81 * hev |= (abs(p1 - p0) > thresh)
83 "subu_s.qb %[c], %[p1], %[p0] \n\t"
84 "subu_s.qb %[r_k], %[p0], %[p1] \n\t"
120 [p1] "r" (p1), [p0] "r" (p0), [q1] "r" (q1), [q0] "r" (q0)
355 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
565 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
682 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1032 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1643 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1788 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1915 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
2125 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
vp9_mblpf_horiz_loopfilter_dspr2.c 36 uint32_t p7, p6, p5, p4, p3, p2, p1, p0, q0, q1, q2, q3, q4, q5, q6, q7; local
88 "lw %[p1], (%[sp1]) \n\t"
91 : [p3] "=&r" (p3), [p2] "=&r" (p2), [p1] "=&r" (p1), [p0] "=&r" (p0),
114 p1, p0, p3, p2, q0, q1, q2, q3,
122 vp9_filter1_dspr2(mask, hev, p1, p0, q0, q1,
163 "sw %[p1], (%[sp1]) \n\t"
168 [p2] "r" (p2), [p1] "r" (p1), [p0] "r" (p0),
204 "sw %[p1], (%[sp1]) \n\t
    [all...]
vp9_mblpf_vert_loopfilter_dspr2.c 34 uint32_t p7, p6, p5, p4, p3, p2, p1, p0, q0, q1, q2, q3, q4, q5, q6, q7; local
69 "lw %[p1], -4(%[s2]) \n\t"
77 : [p3] "=&r" (p3), [p2] "=&r" (p2), [p1] "=&r" (p1),
99 /* transpose p3, p2, p1, p0
103 p1 p1_0 p1_1 p1_2 p1_3
110 p1 p3_2 p2_2 p1_2 p0_2
115 "precrq.qb.ph %[prim1], %[p0], %[p1] \n\t"
116 "precr.qb.ph %[prim2], %[p0], %[p1] \n\t"
120 "precrq.qb.ph %[p1], %[prim1], %[prim2] \n\t
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 352 __m128i eo, p0, p1, p2; local
398 &p0, &p1, &p2, &unused);
401 _mm_store_si128((__m128i *)&plane[1], p1);
472 debug_printf("p1: %08x/%08x/%08x/%08x\n",
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 260 float p1[2],p2[2], d, l; local
262 bezier_point_at(b1, i, p1);
264 d = (p1[0] - p2[0])*(p1[0] - p2[0]) + (p1[1] - p2[1])*(p1[1] - p2[1]);
271 d = ABS(normal[0]*(p1[1] - p2[1]) - normal[1]*(p1[0] - p2[0]) ) / l;
  /external/chromium_org/third_party/opus/src/src/
analysis.c 502 /* Denormalized probability of speech (p0) and music (p1) after update */
503 float p0, p1; local
522 /* p0 and p1 are the probabilities of speech and music at this frame
526 p1 = tonal->music_prob *(1-tau) + (1-tonal->music_prob)*tau;
530 p1 *= (float)pow(frame_probs[0], beta);
532 tonal->music_prob = p1/(p0+p1);
  /external/chromium_org/ui/gfx/
transform_unittest.cc 236 Point3F p1(value.x1, value.y1, 0);
238 xform.TransformPoint(&p1);
241 EXPECT_TRUE(PointsAreNearlyEqual(p1, p2));
265 Point3F p1(value.before, value.before, 0);
267 xform.TransformPoint(&p1);
269 EXPECT_TRUE(PointsAreNearlyEqual(p1, p2));
296 Point3F p1(value.x1, value.y1, 0);
298 xform.TransformPoint(&p1);
300 EXPECT_TRUE(PointsAreNearlyEqual(p1, p2));
323 Point3F p0, p1, p2 local
370 Point3F p0, p1, p2; local
555 Point p0, p1, p2; local
608 Point p0, p1, p2; local
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-simplified-lowering.cc 33 MachineType p1 = kMachNone,
37 : GraphBuilderTester<ReturnType>(p0, p1, p2, p3, p4),
642 Node* p1; member in class:TestingGraph
661 p1 = graph()->NewNode(common()->Parameter(1), start);
664 NodeProperties::SetBounds(p1, Bounds(p1_type));
669 Node* node = Return(graph()->NewNode(op, p0, p1));
676 Node* node = graph()->NewNode(op, p0, p1);
    [all...]
  /external/clang/test/Sema/
designated-initializers.c 30 struct point p1 = { variable in typeref:struct:point
  /external/clang/test/SemaCXX/
enum-scoped.cpp 36 int* p1 = new int[Val2]; member in struct:E1::E2
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 752 char *p1 = allocated[i % kNumAllocs]; local
753 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1));
754 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2));
755 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1));
756 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100));
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 604 const float p1 = srcA*(1.0f-dstA); local
606 const Vec3 bias (srcColor[0]*p1 + dstColor[0]*p2,
607 srcColor[1]*p1 + dstColor[1]*p2,
608 srcColor[2]*p1 + dstColor[2]*p2);
612 sample.blendedA = p0 + p1 + p2;
    [all...]
rrRasterizer.cpp 245 tcu::Vector<deInt64,2> p1; member in struct:rr::LineRasterUtil::DiamondBound
382 const bool startVertexInside = LineRasterUtil::vertexOnLeftSideOfLine (line.m_v0, LineRasterUtil::SubpixelLineSegment(bounds[ndx].p0, bounds[ndx].p1)) ||
383 (bounds[ndx].edgeInclusive && LineRasterUtil::vertexOnLine (line.m_v0, LineRasterUtil::SubpixelLineSegment(bounds[ndx].p0, bounds[ndx].p1)));
384 const bool endVertexInside = LineRasterUtil::vertexOnLeftSideOfLine (line.m_v1, LineRasterUtil::SubpixelLineSegment(bounds[ndx].p0, bounds[ndx].p1)) ||
385 (bounds[ndx].edgeInclusive && LineRasterUtil::vertexOnLine (line.m_v1, LineRasterUtil::SubpixelLineSegment(bounds[ndx].p0, bounds[ndx].p1)));
395 // Does the line via v0 and v1 intersect the line segment p0-p1
396 // <==> p0 and p1 are the different sides (LEFT, RIGHT) of the v0-v1 line.
399 LineRasterUtil::LINE_SIDE sideP1 = LineRasterUtil::getVertexSide(bounds[ndx].p1, line);
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 234 Vec2 p1 = transform * Vec2(dst[2], dst[3]); local
239 dst[2] = p1.x(); dst[3] = p1.y();
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 226 Vec2 p1 = transform * Vec2(dst[2], dst[3]); local
231 dst[2] = p1.x(); dst[3] = p1.y();
  /external/deqp/modules/gles3/functional/
es3fFboColorbufferTests.cpp 449 const Vec3 p1 = p0 + Vec3(1.0f, 1.0f, 0.0f); local
460 sglr::drawQuad(*getCurrentContext(), cubeTexShaderID, p0, p1); local
575 const Vec3 p1 = p0 + Vec3(1.0f, 1.0f, 0.0f); local
586 sglr::drawQuad(*getCurrentContext(), arrayTexShaderID, p0, p1); local
699 const Vec3 p1 = p0 + Vec3(1.0f, 1.0f, 0.0f); local
710 sglr::drawQuad(*getCurrentContext(), tdTexShaderID, p0, p1); local
  /external/deqp/modules/gles31/functional/
es31fTextureMultisampleTests.cpp 143 tcu::Vec4 p1; member in struct:deqp::gles31::Functional::__anon24977::SamplePosRasterizationTest::Triangle
230 tri.p1 = tcu::Vec4(((float)i + 1.0f / (float)(i + 1)) / 20.0f, 0.0f, 0.0f, 1.0f);
239 tri.p1 = tcu::Vec4(-1.0f, ((float)i + 1.0f / (float)(i + 1)) / 20.0f, 0.0f, 1.0f);
252 tri.p1 = tcu::Vec4(0.4f, 0.4f, 0.0f, 1.0f);
259 tri.p1 = tcu::Vec4(-0.202f, -0.202f, 0.0f, 1.0f);
519 triangle.positions[0] = m_testTriangles[triangleNdx].p1 - offset;
    [all...]
  /external/dnsmasq/src/
rfc1035.c 33 unsigned char *cp = (unsigned char *)name, *p = *pp, *p1 = NULL; local
63 if (p1) /* we jumped via compression */
64 *pp = p1;
82 if (!p1) /* first jump, save location to go back to */
83 p1 = p;
378 unsigned char *p1, *p = (unsigned char *)(header+1); local
385 for (p1 = (unsigned char *)name; *p1; p1++)
388 char c = *p1;
641 unsigned char *p, *p1, *endrr, *namep; local
    [all...]
  /external/fdlibm/
e_lgamma_r.c 213 double t,y,z,nadj,p,p1,p2,p3,q,r,w; local
258 p1 = a0+z*(a2+z*(a4+z*(a6+z*(a8+z*a10))));
260 p = y*p1+p2;
265 p1 = t0+w*(t3+w*(t6+w*(t9 +w*t12))); /* parallel comp */
268 p = z*p1-(tt-w*(p2+y*p3));
271 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
273 r += (-0.5*y + p1/p2);
  /external/fio/
parse.c 23 static int vp_cmp(const void *p1, const void *p2)
25 const struct value_pair *vp1 = p1;
661 char *p1, *p2; local
666 p1 = strchr(tmp, ',');
667 if (p1)
668 *p1 = '\0';
670 p1 = strchr(tmp, '-');
671 if (!p1) {
672 p1 = strchr(tmp, ':');
673 if (!p1) {
    [all...]
  /external/icu/icu4c/source/common/
locdispnames.cpp 537 UChar *p1=u_strstr(separator, sub1); local
538 if (p0==NULL || p1==NULL || p1<p0) {
543 sepLen = p1 - separator;
554 UChar *p1=u_strstr(pattern, sub1); local
555 if (p0==NULL || p1==NULL) {
560 sub1Pos=p1-pattern;
    [all...]
uhash.c 912 const UChar *p1 = (const UChar*) key1.pointer; local
914 if (p1 == p2) {
917 if (p1 == NULL || p2 == NULL) {
920 while (*p1 != 0 && *p1 == *p2) {
921 ++p1;
924 return (UBool)(*p1 == *p2);
929 const char *p1 = (const char*) key1.pointer; local
931 if (p1 == p2) {
934 if (p1 == NULL || p2 == NULL)
946 const char *p1 = (const char*) key1.pointer; local
    [all...]

Completed in 1580 milliseconds

<<11121314151617