HomeSort by relevance Sort by last modified time
    Searched defs:pB (Results 1 - 19 of 19) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/
const_pointer_cast.pass.cpp 47 std::shared_ptr<A> pB = std::const_pointer_cast<A>(pA);
48 assert(pB.get() == pA.get());
49 assert(!pB.owner_before(pA) && !pA.owner_before(pB));
53 std::shared_ptr<A> pB = std::const_pointer_cast<A>(pA);
54 assert(pB.get() == pA.get());
55 assert(!pB.owner_before(pA) && !pA.owner_before(pB));
static_pointer_cast.pass.cpp 47 std::shared_ptr<B> pB = std::static_pointer_cast<B>(pA);
48 assert(pB.get() == pA.get());
49 assert(!pB.owner_before(pA) && !pA.owner_before(pB));
53 std::shared_ptr<A> pB = std::static_pointer_cast<A>(pA);
54 assert(pB.get() == pA.get());
55 assert(!pB.owner_before(pA) && !pA.owner_before(pB));
59 std::shared_ptr<B> pB = std::static_pointer_cast<B>(pA);
60 assert(pB.get() == pA.get())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.assign/
shared_ptr_Y.pass.cpp 48 std::weak_ptr<B> pB;
49 pB = pA;
52 assert(pB.use_count() == 1);
weak_ptr.pass.cpp 49 std::weak_ptr<A> pB;
50 pB = pA;
53 assert(pB.use_count() == 1);
weak_ptr_Y.pass.cpp 49 std::weak_ptr<B> pB;
50 pB = pA;
53 assert(pB.use_count() == 1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
auto_ptr_Y.pass.cpp 49 std::shared_ptr<B> pB(new B);
50 pB = std::move(pA);
53 assert(pB.use_count() == 1);
55 assert(pB.get() == ptrA);
66 std::shared_ptr<B> pB(new B);
67 pB = std::move(pA);
70 assert(pB.use_count() == 1);
72 assert(pB.get() == ptrA);
83 std::shared_ptr<B> pB;
84 pB = std::move(pA)
    [all...]
shared_ptr.pass.cpp 49 std::shared_ptr<A> pB(new A);
50 pB = pA;
53 assert(pB.use_count() == 2);
55 assert(pA.get() == pB.get());
56 assert(pB.get() == ptrA);
68 std::shared_ptr<A> pB(new A);
69 pB = pA;
72 assert(pB.use_count() == 0);
74 assert(pA.get() == pB.get());
75 assert(pB.get() == ptrA)
    [all...]
shared_ptr_Y.pass.cpp 49 std::shared_ptr<B> pB(new B);
50 pB = pA;
53 assert(pB.use_count() == 2);
55 assert(pA.get() == pB.get());
56 assert(pB.get() == ptrA);
68 std::shared_ptr<B> pB(new B);
69 pB = pA;
72 assert(pB.use_count() == 0);
74 assert(pA.get() == pB.get());
75 assert(pB.get() == ptrA)
    [all...]
shared_ptr_Y_rv.pass.cpp 50 std::shared_ptr<B> pB(new B);
51 pB = std::move(pA);
54 assert(pB.use_count() == 1);
57 assert(pB.get() == ptrA);
69 std::shared_ptr<B> pB(new B);
70 pB = std::move(pA);
73 assert(pB.use_count() == 0);
76 assert(pB.get() == ptrA);
88 std::shared_ptr<B> pB;
89 pB = std::move(pA)
    [all...]
shared_ptr_rv.pass.cpp 50 std::shared_ptr<A> pB(new A);
51 pB = std::move(pA);
54 assert(pB.use_count() == 1);
57 assert(pB.get() == ptrA);
69 std::shared_ptr<A> pB(new A);
70 pB = std::move(pA);
73 assert(pB.use_count() == 0);
76 assert(pB.get() == ptrA);
88 std::shared_ptr<A> pB;
89 pB = std::move(pA)
    [all...]
unique_ptr_Y.pass.cpp 49 std::shared_ptr<B> pB(new B);
50 pB = std::move(pA);
53 assert(pB.use_count() == 1);
55 assert(pB.get() == ptrA);
66 std::shared_ptr<B> pB(new B);
67 pB = std::move(pA);
70 assert(pB.use_count() == 1);
72 assert(pB.get() == ptrA);
83 std::shared_ptr<B> pB;
84 pB = std::move(pA)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_gcd.c 512 BIGNUM *pA, *pB;
546 pB = &local_B;
547 BN_with_flags(pB, B, BN_FLG_CONSTTIME);
548 if (!BN_nnmod(B, pB, A, ctx)) goto err;
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_gf_mult.c 120 LTC_FAST_TYPE B[16][WPV], tmp[32 / sizeof(LTC_FAST_TYPE)], pB[16 / sizeof(LTC_FAST_TYPE)], zz, z;
130 LOAD32L(pB[i], b + (i<<2));
135 LOAD64L(pB[i], b + (i<<3));
174 u = (pB[j] >> ((i^1)<<2)) & 15;
  /external/openssl/crypto/bn/
bn_gcd.c 512 BIGNUM *pA, *pB;
546 pB = &local_B;
547 BN_with_flags(pB, B, BN_FLG_CONSTTIME);
548 if (!BN_nnmod(B, pB, A, ctx)) goto err;
  /external/chromium_org/third_party/sqlite/src/tool/
mkkeywordhash.c 299 const Keyword *pB = (Keyword*)b;
300 int n = pA->len - pB->len;
302 n = strcmp(pA->zName, pB->zName);
309 const Keyword *pB = (Keyword*)b;
310 int n = pB->longestSuffix - pA->longestSuffix;
312 n = strcmp(pA->zName, pB->zName);
319 const Keyword *pB = (Keyword*)b;
320 int n = pA->offset - pB->offset;
321 if( n==0 ) n = pB->id - pA->id;
lemon.c     [all...]
  /external/opencv/cv/src/
cvsubdivision2d.cpp 521 CvSubdiv2DPoint *pA, *pB, *pC;
548 pB = cvSubdiv2DAddPoint( subdiv, ppB, 0 );
555 cvSubdiv2DSetEdgePoints( edge_AB, pA, pB );
556 cvSubdiv2DSetEdgePoints( edge_BC, pB, pC );
cvlkpyramid.cpp     [all...]
  /external/opencv/cvaux/include/
cvvidsurv.hpp 441 #define CV_BLOB_ID(pB) (((CvBlob*)(pB))->ID)
442 #define CV_BLOB_CENTER(pB) cvPoint2D32f(((CvBlob*)(pB))->x,((CvBlob*)(pB))->y)
443 #define CV_BLOB_X(pB) (((CvBlob*)(pB))->x)
444 #define CV_BLOB_Y(pB) (((CvBlob*)(pB))->y)
445 #define CV_BLOB_WX(pB) (((CvBlob*)(pB))->w
    [all...]

Completed in 259 milliseconds