HomeSort by relevance Sort by last modified time
    Searched refs:pB (Results 1 - 25 of 30) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/
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...]
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));
dynamic_pointer_cast.pass.cpp 46 const std::shared_ptr<B> pB(new A);
47 std::shared_ptr<A> pA = std::dynamic_pointer_cast<A>(pB);
48 assert(pA.get() == pB.get());
49 assert(!pB.owner_before(pA) && !pA.owner_before(pB));
52 const std::shared_ptr<B> pB(new B);
53 std::shared_ptr<A> pA = std::dynamic_pointer_cast<A>(pB);
  /ndk/sources/cxx-stl/llvm-libc++/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...]
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...]
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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
shared_ptr_pointer.pass.cpp 48 std::shared_ptr<B> pB(pA, &b);
52 assert(pB.use_count() == 2);
53 assert(pB.get() == &b);
shared_ptr_Y_rv.pass.cpp 66 std::shared_ptr<B> pB(std::move(pA));
70 assert(pB.use_count() == 1);
73 assert(pB.use_count() == 2);
76 assert(p == pB.get());
96 std::shared_ptr<B> pB(pA);
99 assert(pB.use_count() == 0);
101 assert(pA.get() == pB.get());
shared_ptr_Y.pass.cpp 65 std::shared_ptr<B> pB(pA);
68 assert(pB.use_count() == 2);
70 assert(pA.get() == pB.get());
84 std::shared_ptr<B> pB(pA);
87 assert(pB.use_count() == 0);
89 assert(pA.get() == pB.get());
  /ndk/sources/cxx-stl/llvm-libc++/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++/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
shared_ptr_Y.pass.cpp 65 std::weak_ptr<B> pB(pA);
68 assert(pB.use_count() == 1);
83 std::weak_ptr<B> pB(pA);
86 assert(pB.use_count() == 0);
weak_ptr.pass.cpp 63 std::weak_ptr<A> pB(pA);
66 assert(pB.use_count() == 1);
81 std::weak_ptr<A> pB(pA);
84 assert(pB.use_count() == 0);
weak_ptr_Y.pass.cpp 65 std::weak_ptr<B> pB(pA);
68 assert(pB.use_count() == 0);
83 std::weak_ptr<B> pB(pA);
86 assert(pB.use_count() == 0);
  /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...]
  /frameworks/compile/libbcc/include/bcc/ExecutionEngine/
SymbolResolvers.h 69 static int CompareSymbolName(const void *pA, const void *pB) {
71 reinterpret_cast<const SymbolMap *>(pB)->mName);
  /external/opencv/cv/src/
cvlkpyramid.cpp     [all...]
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 );
  /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/openssl/crypto/bn/asm/
modexp512-x86_64.pl 365 #MULADD_256x512 MACRO pDst, pA, pB, OP, TMP, X7, X6, X5, X4, X3, X2, X1, X0
369 # pB: Multiplicand (512 bits, 8 qwords)
376 my ($pDst, $pA, $pB, $OP, $TMP, $X)=@_;
380 &MULSTEP_512_ADD($X, "(+8*0)($pDst)", $pB, $pA, $OP, $TMP);
386 &MULSTEP_512($X, "(+8*1)($pDst)", $pB, $OP, $TMP);
392 &MULSTEP_512($X, "(+8*2)($pDst)", $pB, $OP, $TMP);
398 &MULSTEP_512($X, "(+8*3)($pDst)", $pB, $OP, $TMP);
618 #MUL_512x512 MACRO pDst, pA, pB, x7, x6, x5, x4, x3, x2, x1, x0, tmp*2
622 # pB: Multiplicand (512 bits, 8 qwords)
624 # B operand in [pB] and also in x7...x
    [all...]

Completed in 812 milliseconds

1 2