/external/openssh/regress/unittests/sshbuf/ |
D | test_sshbuf_getput_basic.c | 28 struct sshbuf *p1, *p2; in sshbuf_getput_basic_tests() local 78 p1 = sshbuf_new(); in sshbuf_getput_basic_tests() 79 ASSERT_PTR_NE(p1, NULL); in sshbuf_getput_basic_tests() 80 ASSERT_INT_EQ(sshbuf_put(p1, x, 5), 0); in sshbuf_getput_basic_tests() 81 ASSERT_SIZE_T_EQ(sshbuf_len(p1), 5); in sshbuf_getput_basic_tests() 82 cd = sshbuf_ptr(p1); in sshbuf_getput_basic_tests() 92 ASSERT_INT_EQ(sshbuf_get(p1, d2, 4), 0); in sshbuf_getput_basic_tests() 94 ASSERT_SIZE_T_EQ(sshbuf_len(p1), 1); in sshbuf_getput_basic_tests() 95 ASSERT_U8_EQ(*(sshbuf_ptr(p1)), 0x55); in sshbuf_getput_basic_tests() 99 r = sshbuf_get(p1, d2, 4); in sshbuf_getput_basic_tests() [all …]
|
D | test_sshbuf_misc.c | 29 struct sshbuf *p1; in sshbuf_misc_tests() local 37 p1 = sshbuf_new(); in sshbuf_misc_tests() 38 ASSERT_PTR_NE(p1, NULL); in sshbuf_misc_tests() 39 ASSERT_INT_EQ(sshbuf_put_u32(p1, 0x12345678), 0); in sshbuf_misc_tests() 40 sshbuf_dump(p1, out); in sshbuf_misc_tests() 50 sshbuf_free(p1); in sshbuf_misc_tests() 54 p1 = sshbuf_new(); in sshbuf_misc_tests() 55 ASSERT_PTR_NE(p1, NULL); in sshbuf_misc_tests() 56 ASSERT_INT_EQ(sshbuf_put_u32(p1, 0x12345678), 0); in sshbuf_misc_tests() 57 p = sshbuf_dtob16(p1); in sshbuf_misc_tests() [all …]
|
D | test_sshbuf.c | 30 struct sshbuf *p1; in sshbuf_tests() local 37 p1 = sshbuf_new(); in sshbuf_tests() 38 ASSERT_PTR_NE(p1, NULL); in sshbuf_tests() 42 ASSERT_SIZE_T_GT(sshbuf_max_size(p1), 0); in sshbuf_tests() 46 ASSERT_SIZE_T_GT(sshbuf_avail(p1), 0); in sshbuf_tests() 50 ASSERT_SIZE_T_EQ(sshbuf_len(p1), 0); in sshbuf_tests() 54 ASSERT_INT_EQ(sshbuf_set_max_size(p1, 65536), 0); in sshbuf_tests() 55 ASSERT_SIZE_T_EQ(sshbuf_max_size(p1), 65536); in sshbuf_tests() 59 ASSERT_SIZE_T_EQ(sshbuf_avail(p1), 65536); in sshbuf_tests() 63 sshbuf_free(p1); in sshbuf_tests() [all …]
|
D | test_sshbuf_getput_crypto.c | 36 struct sshbuf *p1; in sshbuf_getput_crypto_tests() local 83 p1 = sshbuf_new(); in sshbuf_getput_crypto_tests() 84 ASSERT_PTR_NE(p1, NULL); in sshbuf_getput_crypto_tests() 85 ASSERT_INT_EQ(sshbuf_put_bignum2(p1, bn), 0); in sshbuf_getput_crypto_tests() 86 ASSERT_SIZE_T_EQ(sshbuf_len(p1), sizeof(expbn1) + 4); in sshbuf_getput_crypto_tests() 87 ASSERT_U32_EQ(PEEK_U32(sshbuf_ptr(p1)), (u_int32_t)BN_num_bytes(bn)); in sshbuf_getput_crypto_tests() 88 ASSERT_MEM_EQ(sshbuf_ptr(p1) + 4, expbn1, sizeof(expbn1)); in sshbuf_getput_crypto_tests() 90 sshbuf_free(p1); in sshbuf_getput_crypto_tests() 95 p1 = sshbuf_new(); in sshbuf_getput_crypto_tests() 96 ASSERT_PTR_NE(p1, NULL); in sshbuf_getput_crypto_tests() [all …]
|
D | test_sshbuf_fixed.c | 32 struct sshbuf *p1, *p2, *p3; in sshbuf_fixed() local 39 p1 = sshbuf_from(test_buf, sizeof(test_buf)); in sshbuf_fixed() 40 ASSERT_PTR_NE(p1, NULL); in sshbuf_fixed() 41 ASSERT_PTR_EQ(sshbuf_mutable_ptr(p1), NULL); in sshbuf_fixed() 42 ASSERT_INT_EQ(sshbuf_check_reserve(p1, 1), SSH_ERR_BUFFER_READ_ONLY); in sshbuf_fixed() 43 ASSERT_INT_EQ(sshbuf_reserve(p1, 1, NULL), SSH_ERR_BUFFER_READ_ONLY); in sshbuf_fixed() 44 ASSERT_INT_EQ(sshbuf_set_max_size(p1, 200), SSH_ERR_BUFFER_READ_ONLY); in sshbuf_fixed() 45 ASSERT_INT_EQ(sshbuf_put_u32(p1, 0x12345678), SSH_ERR_BUFFER_READ_ONLY); in sshbuf_fixed() 46 ASSERT_SIZE_T_EQ(sshbuf_avail(p1), 0); in sshbuf_fixed() 47 ASSERT_PTR_EQ(sshbuf_ptr(p1), test_buf); in sshbuf_fixed() [all …]
|
D | test_sshbuf_fuzz.c | 31 struct sshbuf *p1; in sshbuf_fuzz_tests() local 44 p1 = sshbuf_new(); in sshbuf_fuzz_tests() 45 ASSERT_INT_EQ(sshbuf_set_max_size(p1, 16 * 1024), 0); in sshbuf_fuzz_tests() 46 ASSERT_PTR_NE(p1, NULL); in sshbuf_fuzz_tests() 47 ASSERT_PTR_NE(sshbuf_ptr(p1), NULL); in sshbuf_fuzz_tests() 48 ASSERT_MEM_ZERO_NE(sshbuf_ptr(p1), sshbuf_len(p1)); in sshbuf_fuzz_tests() 55 sz = sshbuf_avail(p1); in sshbuf_fuzz_tests() 56 sz2 = sshbuf_len(p1); in sshbuf_fuzz_tests() 57 ret = sshbuf_reserve(p1, r, &dp); in sshbuf_fuzz_tests() 61 ASSERT_SIZE_T_EQ(sshbuf_avail(p1), sz); in sshbuf_fuzz_tests() [all …]
|
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/ |
D | comparison.pass.cpp | 30 P p1(3, static_cast<short>(4)); in main() local 32 assert( (p1 == p2)); in main() 33 assert(!(p1 != p2)); in main() 34 assert(!(p1 < p2)); in main() 35 assert( (p1 <= p2)); in main() 36 assert(!(p1 > p2)); in main() 37 assert( (p1 >= p2)); in main() 41 P p1(2, static_cast<short>(4)); in main() local 43 assert(!(p1 == p2)); in main() 44 assert( (p1 != p2)); in main() [all …]
|
/external/llvm-project/libcxx/test/std/utilities/utility/pairs/pairs.spec/ |
D | comparison.pass.cpp | 30 P p1(3, static_cast<short>(4)); in main() local 32 assert( (p1 == p2)); in main() 33 assert(!(p1 != p2)); in main() 34 assert(!(p1 < p2)); in main() 35 assert( (p1 <= p2)); in main() 36 assert(!(p1 > p2)); in main() 37 assert( (p1 >= p2)); in main() 41 P p1(2, static_cast<short>(4)); in main() local 43 assert(!(p1 == p2)); in main() 44 assert( (p1 != p2)); in main() [all …]
|
/external/icu/icu4c/source/test/perf/collperf2/ |
D | CollPerf2_r.pl | 54 my $p1, $p2; 57 …$p1 = "cd ".$ICUPrevious."/bin && ".$ICUPathPrevious."/collperf2/$WindowsPlatform/Release/collperf… 60 …$p1 = "LD_LIBRARY_PATH=".$ICUPrevious."/lib:".$ICUPrevious."/tools/ctestfw ".$ICUPrevious."/test/p… 65 "ucol_strcoll/len", ["$p1,TestStrcoll", "$p2,TestStrcoll"], 66 "ucol_strcoll/null", ["$p1,TestStrcollNull", "$p2,TestStrcollNull"], 67 "ucol_strcoll/len/similar", ["$p1,TestStrcollSimilar", "$p2,TestStrcollSimilar"], 69 "ucol_strcollUTF8/len", ["$p1,TestStrcollUTF8", "$p2,TestStrcollUTF8"], 70 "ucol_strcollUTF8/null", ["$p1,TestStrcollUTF8Null", "$p2,TestStrcollUTF8Null"], 71 "ucol_strcollUTF8/len/similar", ["$p1,TestStrcollUTF8Similar", "$p2,TestStrcollUTF8Similar"], 73 "ucol_getSortKey/len", ["$p1,TestGetSortKey", "$p2,TestGetSortKey"], [all …]
|
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.special/ |
D | rel.pass.cpp | 59 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 61 assert((p1 < p2) == !(p1 > p2)); in main() 62 assert((p1 < p2) == (p1 <= p2)); in main() 63 assert((p1 < p2) == !(p1 >= p2)); in main() 66 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 68 assert((p1 < p2) == !(p1 > p2)); in main() 69 assert((p1 < p2) == (p1 <= p2)); in main() 70 assert((p1 < p2) == !(p1 >= p2)); in main() 73 const std::unique_ptr<A[], Deleter<A[]> > p1(new A[3]); in main() local 75 assert((p1 < p2) == !(p1 > p2)); in main() [all …]
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.special/ |
D | rel.pass.cpp | 59 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 61 assert((p1 < p2) == !(p1 > p2)); in main() 62 assert((p1 < p2) == (p1 <= p2)); in main() 63 assert((p1 < p2) == !(p1 >= p2)); in main() 66 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 68 assert((p1 < p2) == !(p1 > p2)); in main() 69 assert((p1 < p2) == (p1 <= p2)); in main() 70 assert((p1 < p2) == !(p1 >= p2)); in main() 73 const std::unique_ptr<A[], Deleter<A[]> > p1(new A[3]); in main() local 75 assert((p1 < p2) == !(p1 > p2)); in main() [all …]
|
/external/llvm-project/libclc/generic/lib/geometric/ |
D | dot.cl | 3 _CLC_OVERLOAD _CLC_DEF float dot(float p0, float p1) { 4 return p0*p1; 7 _CLC_OVERLOAD _CLC_DEF float dot(float2 p0, float2 p1) { 8 return p0.x*p1.x + p0.y*p1.y; 11 _CLC_OVERLOAD _CLC_DEF float dot(float3 p0, float3 p1) { 12 return p0.x*p1.x + p0.y*p1.y + p0.z*p1.z; 15 _CLC_OVERLOAD _CLC_DEF float dot(float4 p0, float4 p1) { 16 return p0.x*p1.x + p0.y*p1.y + p0.z*p1.z + p0.w*p1.w; 23 _CLC_OVERLOAD _CLC_DEF double dot(double p0, double p1) { 24 return p0*p1; [all …]
|
D | cross.cl | 3 _CLC_OVERLOAD _CLC_DEF float3 cross(float3 p0, float3 p1) { 4 return (float3)(p0.y*p1.z - p0.z*p1.y, p0.z*p1.x - p0.x*p1.z, 5 p0.x*p1.y - p0.y*p1.x); 8 _CLC_OVERLOAD _CLC_DEF float4 cross(float4 p0, float4 p1) { 9 return (float4)(p0.y*p1.z - p0.z*p1.y, p0.z*p1.x - p0.x*p1.z, 10 p0.x*p1.y - p0.y*p1.x, 0.f); 16 _CLC_OVERLOAD _CLC_DEF double3 cross(double3 p0, double3 p1) { 17 return (double3)(p0.y*p1.z - p0.z*p1.y, p0.z*p1.x - p0.x*p1.z, 18 p0.x*p1.y - p0.y*p1.x); 21 _CLC_OVERLOAD _CLC_DEF double4 cross(double4 p0, double4 p1) { [all …]
|
/external/guava/guava/src/com/google/common/base/ |
D | Preconditions.java | 175 public static void checkArgument(boolean b, @Nullable String errorMessageTemplate, char p1) { in checkArgument() argument 177 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 188 public static void checkArgument(boolean b, @Nullable String errorMessageTemplate, int p1) { in checkArgument() argument 190 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 201 public static void checkArgument(boolean b, @Nullable String errorMessageTemplate, long p1) { in checkArgument() argument 203 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 215 boolean b, @Nullable String errorMessageTemplate, @Nullable Object p1) { in checkArgument() argument 217 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 229 boolean b, @Nullable String errorMessageTemplate, char p1, char p2) { in checkArgument() argument 231 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2)); in checkArgument() [all …]
|
D | Verify.java | 136 public static void verify(boolean expression, @Nullable String errorMessageTemplate, char p1) { in verify() argument 138 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 150 public static void verify(boolean expression, @Nullable String errorMessageTemplate, int p1) { in verify() argument 152 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 164 public static void verify(boolean expression, @Nullable String errorMessageTemplate, long p1) { in verify() argument 166 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 179 boolean expression, @Nullable String errorMessageTemplate, @Nullable Object p1) { in verify() argument 181 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 194 boolean expression, @Nullable String errorMessageTemplate, char p1, char p2) { in verify() argument 196 throw new VerifyException(lenientFormat(errorMessageTemplate, p1, p2)); in verify() [all …]
|
/external/guava/android/guava/src/com/google/common/base/ |
D | Preconditions.java | 175 public static void checkArgument(boolean b, @NullableDecl String errorMessageTemplate, char p1) { in checkArgument() argument 177 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 188 public static void checkArgument(boolean b, @NullableDecl String errorMessageTemplate, int p1) { in checkArgument() argument 190 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 201 public static void checkArgument(boolean b, @NullableDecl String errorMessageTemplate, long p1) { in checkArgument() argument 203 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 215 boolean b, @NullableDecl String errorMessageTemplate, @NullableDecl Object p1) { in checkArgument() argument 217 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); in checkArgument() 229 boolean b, @NullableDecl String errorMessageTemplate, char p1, char p2) { in checkArgument() argument 231 throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2)); in checkArgument() [all …]
|
D | Verify.java | 137 boolean expression, @NullableDecl String errorMessageTemplate, char p1) { in verify() argument 139 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 151 public static void verify(boolean expression, @NullableDecl String errorMessageTemplate, int p1) { in verify() argument 153 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 166 boolean expression, @NullableDecl String errorMessageTemplate, long p1) { in verify() argument 168 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 181 boolean expression, @NullableDecl String errorMessageTemplate, @NullableDecl Object p1) { in verify() argument 183 throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); in verify() 196 boolean expression, @NullableDecl String errorMessageTemplate, char p1, char p2) { in verify() argument 198 throw new VerifyException(lenientFormat(errorMessageTemplate, p1, p2)); in verify() [all …]
|
/external/icu/icu4c/source/test/perf/normperf/ |
D | NormPerf_r.pl | 34 my $p1; # Previous 38 …$p1 = "cd ".$ICUPrevious."/bin && ".$ICUPathPrevious."/normperf/$WindowsPlatform/Release/normperf.… 41 …$p1 = "LD_LIBRARY_PATH=".$ICUPrevious."/source/lib:".$ICUPrevious."/source/tools/ctestfw ".$ICUPat… 67 "NFC_NFD_Text", ["$p1,TestICU_NFC_NFD_Text" , "$p2,TestICU_NFC_NFD_Text" ], 68 "NFC_NFC_Text", ["$p1,TestICU_NFC_NFC_Text" , "$p2,TestICU_NFC_NFC_Text" ], 69 "NFC_Orig_Text", ["$p1,TestICU_NFC_Orig_Text" , "$p2,TestICU_NFC_Orig_Text"], 70 "NFD_NFD_Text", ["$p1,TestICU_NFD_NFD_Text" , "$p2,TestICU_NFD_NFD_Text" ], 71 "NFD_NFC_Text", ["$p1,TestICU_NFD_NFC_Text" , "$p2,TestICU_NFD_NFC_Text" ], 72 "NFD_Orig_Text", ["$p1,TestICU_NFD_Orig_Text" , "$p2,TestICU_NFD_Orig_Text"], 74 "QC_NFC_NFD_Text", ["$p1,TestQC_NFC_NFD_Text" , "$p2,TestQC_NFC_NFD_Text" ], [all …]
|
/external/icu/icu4c/source/test/perf/collperf/ |
D | CollPerf_r.pl | 33 my $p1, $p2; 36 …$p1 = "cd ".$ICUPrevious."/bin && ".$ICUPathPrevious."/collperf/$WindowsPlatform/Release/collperf.… 39 …$p1 = "LD_LIBRARY_PATH=".$ICUPrevious."/source/lib:".$ICUPrevious."/source/tools/ctestfw ".$ICUPat… 45 "Key Gen ICU null", ["$p1,TestIcu_KeyGen_null", "$p2,TestIcu_KeyGen_null"], 46 "Key Gen ICU len", ["$p1,TestIcu_KeyGen_len", "$p2,TestIcu_KeyGen_len"], 47 "Iteration icu forward null", ["$p1,TestIcu_ForwardIter_null", "$p2,TestIcu_ForwardIter_null"], 48 "Iteration icu forward len", ["$p1,TestIcu_ForwardIter_len", "$p2,TestIcu_ForwardIter_len"], 49 …"Iteration icu backward null", ["$p1,TestIcu_BackwardIter_null", "$p2,TestIcu_BackwardIter_null"], 50 "Iteration icu backward len", ["$p1,TestIcu_BackwardIter_len", "$p2,TestIcu_BackwardIter_len"], 51 …"Iteration/all icu forward null", ["$p1,TestIcu_ForwardIter_all_null", "$p2,TestIcu_ForwardIter_a… [all …]
|
/external/perfetto/src/protozero/ |
D | copyable_ptr_unittest.cc | 43 CopyablePtr<X> p1; in TEST() local 44 p1->val = 1; in TEST() 45 ASSERT_NE(p1.get(), nullptr); in TEST() 46 ASSERT_EQ(&*p1, p1.get()); in TEST() 48 CopyablePtr<X> p2(p1); in TEST() 49 EXPECT_NE(p1.get(), nullptr); in TEST() 51 EXPECT_NE(p1.get(), p2.get()); in TEST() 54 EXPECT_EQ(p1->val, 1); in TEST() 59 p3 = p1; in TEST() 69 EXPECT_EQ(p1->val, 1); in TEST() [all …]
|
/external/aac/libFDK/src/ |
D | FDK_matrixCalloc.cpp | 135 void **p1; in fdkCallocMatrix2D() local 139 if ((p1 = (void **)fdkCallocMatrix1D(dim1, sizeof(void *))) == NULL) { in fdkCallocMatrix2D() 143 fdkFreeMatrix1D(p1); in fdkCallocMatrix2D() 144 p1 = NULL; in fdkCallocMatrix2D() 148 p1[i] = p2; in fdkCallocMatrix2D() 152 return p1; in fdkCallocMatrix2D() 156 void **p1; in fdkCallocMatrix2D_aligned() local 160 if ((p1 = (void **)fdkCallocMatrix1D(dim1, sizeof(void *))) == NULL) { in fdkCallocMatrix2D_aligned() 164 fdkFreeMatrix1D(p1); in fdkCallocMatrix2D_aligned() 165 p1 = NULL; in fdkCallocMatrix2D_aligned() [all …]
|
/external/llvm-project/llvm/test/MC/AArch64/SVE/ |
D | matrix-multiply-fp64.s | 24 ld1rob { z0.b }, p1/z, [x2, #224] 30 ld1roh { z0.h }, p1/z, [x2, #224] 36 ld1row { z0.s }, p1/z, [x2, #224] 42 ld1rod { z0.d }, p1/z, [x2, #224] 50 ld1rob { z0.b }, p1/z, [x2, #-256] 56 ld1roh { z0.h }, p1/z, [x2, #-256] 62 ld1row { z0.s }, p1/z, [x2, #-256] 68 ld1rod { z0.d }, p1/z, [x2, #-256] 76 ld1rob { z0.b }, p1/z, [x2] 82 ld1roh { z0.h }, p1/z, [x2] [all …]
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | amdgpu-alias-analysis.ll | 4 ; CHECK: NoAlias: i8 addrspace(1)* %p1, i8 addrspace(5)* %p 6 define void @test(i8 addrspace(5)* %p, i8 addrspace(1)* %p1) { 10 ; CHECK: MayAlias: i8 addrspace(1)* %p1, i8 addrspace(4)* %p 12 define void @test_constant_vs_global(i8 addrspace(4)* %p, i8 addrspace(1)* %p1) { 16 ; CHECK: MayAlias: i8 addrspace(1)* %p, i8 addrspace(4)* %p1 18 define void @test_global_vs_constant(i8 addrspace(1)* %p, i8 addrspace(4)* %p1) { 22 ; CHECK: MayAlias: i8 addrspace(1)* %p1, i8 addrspace(6)* %p 24 define void @test_constant_32bit_vs_global(i8 addrspace(6)* %p, i8 addrspace(1)* %p1) { 28 ; CHECK: MayAlias: i8 addrspace(4)* %p1, i8 addrspace(6)* %p 30 define void @test_constant_32bit_vs_constant(i8 addrspace(6)* %p, i8 addrspace(4)* %p1) { [all …]
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 196 #define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) , \ argument 197 typename p0##_type, typename p1##_type 198 #define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , \ argument 199 typename p0##_type, typename p1##_type, typename p2##_type 200 #define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \ argument 201 typename p0##_type, typename p1##_type, typename p2##_type, \ 203 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ argument 204 typename p0##_type, typename p1##_type, typename p2##_type, \ 206 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ argument 207 typename p0##_type, typename p1##_type, typename p2##_type, \ [all …]
|
/external/smali/baksmali/src/test/resources/InstanceOfTest/ |
D | InstanceOfTest.smali | 9 #v0=(Uninit);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/Object;); 10 instance-of v0, p1, Ljava/lang/String; 11 #v0=(Boolean);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/Object;); 13 #v0=(Boolean);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/Object;); 15 #v0=(Boolean);p0=(Reference,LInstanceOfTest;);p1=(Unknown); 17 #v0=(Boolean);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/String;); 18 invoke-virtual {p1}, Ljava/lang/String;->length()I 19 #v0=(Boolean);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/String;); 21 #v0=(Boolean);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/String;); 23 #v0=(Integer);p0=(Reference,LInstanceOfTest;);p1=(Reference,Ljava/lang/String;); [all …]
|