Searched defs:p1 (Results 201 - 225 of 671) sorted by relevance

1234567891011>>

/external/boringssl/src/crypto/cipher_extra/
H A De_rc2.c144 uint16_t *p0, *p1; local
158 p0 = p1 = &key->data[0];
175 x0 += p1[x3 & 0x3f];
176 x1 += p1[x0 & 0x3f];
177 x2 += p1[x1 & 0x3f];
178 x3 += p1[x2 & 0x3f];
188 uint16_t *p0, *p1; local
203 p1 = &key->data[0];
220 x3 = (x3 - p1[x2 & 0x3f]) & 0xffff;
221 x2 = (x2 - p1[x
[all...]
/external/boringssl/src/crypto/evp/
H A Devp_ctx.c192 int p1, void *p2) {
212 return ctx->pmeth->ctrl(ctx, cmd, p1, p2);
191 EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, int cmd, int p1, void *p2) argument
/external/clang/test/Analysis/
H A DPR24184.cpp37 int C::m_fn2(B *p1) { argument
39 int e = p1->IkeHashAlg.m_fn1();
40 unsigned f = p1->IkeGType.m_fn1(), h;
42 d = fn2(0, DT_NONCE_FIXED, (char)0, p1->NoncePhase1_r.value.cbData);
44 m_fn3(p1, 0, 0, 0);
53 void fn1_1(void *p1, const void *p2) { p1 != p2; } argument
55 void fn2_1(uint32_t *p1, unsigned char *p2, uint32_t p3) { argument
58 fn1_1(p1 + i, p2 + i * 0);
88 ST *p1 local
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp6.cpp68 auto p1 = &S::f; local
77 only<void (S::*)()> test1 = p1;
/external/clang/test/CodeGen/
H A Dx86_64-arguments-nacl.c24 // CHECK-LABEL: define void @f1(i64 %p1.coerce0, i64 %p1.coerce1)
25 void f1(struct PP_Var p1) { while(1) {} } argument
/external/clang/test/CodeGenCXX/
H A Dcopy-constructor-synthesis.cpp31 printf("im = %d p0.iP = %d, p1.iP = %d\n", iP, p0.iP, p1.iP);
38 P p1; member in struct:X
/external/clang/test/SemaCXX/
H A Derr_reference_bind_drops_quals.cpp8 ptr& p1 = p; local
H A Dreferences.cpp79 // C++ [dcl.ref]p1, C++ [dcl.ref]p4
133 X0(T& p1) : first(p1) { } argument
139 int p1[1]; local
140 X0< const int[1]> c(p1);
H A Dreinterpret-cast.cpp48 int *p1 = 0; local
49 float *p2 = reinterpret_cast<float*>(p1);
/external/clang/test/SemaTemplate/
H A Dinstantiate-complete.cpp45 void test_memptr(X<long> *p1, long X<long>::*pm1, argument
52 (void)(p1->*pm1);
H A Dtypename-specifier-4.cpp167 typename Derived::template Base<double>* p1; member in struct:rdar9068589::Derived
/external/deqp/framework/common/
H A DtcuRasterizationVerifier.cpp80 bool isTriangleClockwise (const tcu::Vec4& p0, const tcu::Vec4& p1, const tcu::Vec4& p2) argument
82 const tcu::Vec2 u (p1.x() / p1.w() - p0.x() / p0.w(), p1.y() / p1.w() - p0.y() / p0.w());
100 bool pixelNearLineSegment (const tcu::IVec2& pixel, const tcu::Vec2& p0, const tcu::Vec2& p1) argument
110 const tcu::Vec2 line = p1 - p0;
126 const float maxDistance = tcu::length(p1 - p0) + maxPixelDistance;
130 if (tcu::length(pixelCenterPosition - p1) > maxDistance)
340 InterpolationRange calcTriangleInterpolationWeights (const tcu::Vec4& p0, const tcu::Vec4& p1, cons
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.hpp178 inline MovePtr<T> newMovePtr (P0 p0, P1 p1) { return MovePtr<T>(new T(p0, p1)); } argument
180 inline MovePtr<T> newMovePtr (P0 p0, P1 p1, P2 p2) { return MovePtr<T>(new T(p0, p1, p2)); } argument
/external/deqp/modules/gles31/functional/
H A Des31fFboColorbufferTests.cpp232 const Vec3 p1 = p0 + Vec3(1.0f, 1.0f, 0.0f); local
246 sglr::drawQuad(*getCurrentContext(), arrayTexShaderID, p0, p1); local
/external/eigen/Eigen/src/Geometry/
H A DHyperplane.h88 EIGEN_DEVICE_FUNC static inline Hyperplane Through(const VectorType& p0, const VectorType& p1) argument
91 result.normal() = (p1 - p0).unitOrthogonal();
99 EIGEN_DEVICE_FUNC static inline Hyperplane Through(const VectorType& p0, const VectorType& p1, const VectorType& p2) argument
103 VectorType v0(p2 - p0), v1(p1 - p0);
/external/eigen/test/
H A Dgeo_hyperplane.cpp32 VectorType p1 = VectorType::Random(dim); local
38 HyperplaneType pl1(n1, p1);
48 VERIFY_IS_APPROX( pl1.signedDistance(p1 + n1 * s0), s0);
50 VERIFY_IS_MUCH_SMALLER_THAN( abs(pl1.signedDistance(p1 + n1 * s0) - s0), Scalar(1) );
52 VERIFY_IS_MUCH_SMALLER_THAN( pl1.absDistance(p1 + pl1.normal().unitOrthogonal() * s1), Scalar(1) );
64 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot).absDistance(rot * p1), Scalar(1) );
66 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot,Isometry).absDistance(rot * p1), Scalar(1) );
68 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling).absDistance((rot*scaling) * p1), Scalar(1) );
72 .absDistance((rot*scaling*translation) * p1), Scalar(1) );
76 .absDistance((rot*translation) * p1), Scala
166 Plane3a *p1 = ::new(reinterpret_cast<void*>(array1)) Plane3a; local
[all...]
/external/elfutils/libdw/
H A Ddwarf_getmacros.c55 macro_op_compare (const void *p1, const void *p2) argument
57 const Dwarf_Macro_Op_Table *t1 = (const Dwarf_Macro_Op_Table *) p1;
/external/elfutils/libdwfl/
H A Dderelocate.c56 struct secref *const *p1 = a; local
61 if ((*p1)->start < (*p2)->start)
63 if ((*p1)->start > (*p2)->start)
/external/freetype/src/pfr/
H A Dpfrgload.c99 FT_Vector* p1 = outline->points + first; local
103 if ( p1->x == p2->x && p1->y == p2->y )
/external/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc127 const std::unique_ptr<const char> p1(raw_p1);
128 EXPECT_EQ(raw_p1, GetRawPointer(p1));
678 const int* const p1 = a1; local
680 ConstReference(make_tuple(p1, 3));
/external/gptfdisk/
H A Dgptcl.cc334 uint64_t p1, p2; local
335 p1 = GetInt(twoParts, 1) - 1;
337 if (SwapPartitions((uint32_t) p1, (uint32_t) p2) == 0) {
339 cerr << "Cannot swap partitions " << p1 + 1 << " and " << p2 + 1 << "\n";
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java97 volatile long p0, p1, p2, p3, p4, p5, p6; field in class:Striped64.Cell
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DRow.java29 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { argument
30 return new R2<C0,C1>(p0,p1);
32 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { argument
33 return new R3<C0,C1,C2>(p0,p1,p2);
35 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) { argument
36 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3);
38 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { argument
39 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4);
/external/icu/icu4c/source/i18n/
H A Dulocdata.cpp332 UChar *p0, *p1; local
372 p1=u_strstr(separator, sub1);
373 if (p0!=NULL && p1!=NULL && p0<=p1) {
375 len = p1 - separator;
/external/icu/icu4c/source/test/intltest/
H A Ditutil.cpp361 UnicodeString *p1 = new UnicodeString((UChar)0x61); local
363 LocalPointer<UnicodeString> s1(p1);
366 if(s1.getAlias() != p2 || s2.getAlias() != p1) {
370 if(s1.getAlias() != p1 || s2.getAlias() != p2) {
375 if(s3.getAlias() != p1 || s1.isValid()) {
380 if(s1.getAlias() != p1 || s3.isValid()) {
454 UnicodeString *p1 = new UnicodeString[2]; local
456 LocalArray<UnicodeString> a1(p1);
459 if(a1.getAlias() != p2 || a2.getAlias() != p1) {
463 if(a1.getAlias() != p1 || a
615 UNormalizer2 *p1 = unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode); local
[all...]

Completed in 573 milliseconds

1234567891011>>