/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
D | CertPathTest.java | 60 CertPath cp1 = new MyCertPath(testEncoding); in testHashCode() local 63 assertTrue(cp1.hashCode() == cp2.hashCode()); in testHashCode() 71 CertPath cp1 = new MyCertPath(testEncoding); in testHashCodeEqualsObject() local 73 assertTrue((cp1.hashCode() == cp2.hashCode()) && cp1.equals(cp2)); in testHashCodeEqualsObject() 89 CertPath cp1 = new MyCertPath(testEncoding); in testEqualsObject01() local 90 assertTrue(cp1.equals(cp1)); in testEqualsObject01() 99 CertPath cp1 = new MyCertPath(testEncoding); in testEqualsObject02() local 101 assertTrue(cp1.equals(cp2) && cp2.equals(cp1)); in testEqualsObject02() 109 CertPath cp1 = new MyCertPath(testEncoding); in testEqualsObject03() local 110 assertFalse(cp1.equals(null)); in testEqualsObject03() [all …]
|
D | CollectionCertStoreParametersTest.java | 154 CollectionCertStoreParameters cp1 = in testClone01() local 157 (CollectionCertStoreParameters) cp1.clone(); in testClone01() 159 assertTrue(cp1 != cp2); in testClone01() 170 CollectionCertStoreParameters cp1 = in testClone02() local 173 (CollectionCertStoreParameters) cp1.clone(); in testClone02() 175 assertTrue(cp1.getCollection() == cp2.getCollection()); in testClone02() 184 CollectionCertStoreParameters cp1 = in testClone03() local 187 (CollectionCertStoreParameters) cp1.clone(); in testClone03() 191 assertTrue(cp1.getCollection() == cp2.getCollection() && in testClone03()
|
D | LDAPCertStoreParametersTest.java | 149 LDAPCertStoreParameters cp1 = in testClone() local 151 LDAPCertStoreParameters cp2 = (LDAPCertStoreParameters) cp1.clone(); in testClone() 153 assertTrue("newObject", cp1 != cp2); in testClone() 155 cp1.getServerName().equals(cp2.getServerName())); in testClone() 156 assertTrue("portsTheSame", cp1.getPort() == cp2.getPort()); in testClone() 164 LDAPCertStoreParameters cp1 = in testToString() local 167 assertNotNull(cp1.toString()); in testToString()
|
/external/e2fsprogs/lib/ss/ |
D | error.c | 39 register char const *cp1; in ss_name() local 45 cp1 = infop->subsystem_name; in ss_name() 46 while (*cp1) in ss_name() 47 *cp++ = *cp1++; in ss_name() 50 cp1 = infop->current_request; in ss_name() 51 while (*cp1) in ss_name() 52 *cp++ = *cp1++; in ss_name()
|
/external/libxml2/os400/ |
D | wrappers.c | 46 const char * cp1 = inet_ntop(af, src, dst, size); in _lx_inet_ntop() local 50 if (!cp1) in _lx_inet_ntop() 51 return cp1; in _lx_inet_ntop() 53 if (!(cp2 = xmlTranscodeString(cp1, NULL, NULL))) in _lx_inet_ntop() 100 char * cp1 = (char *) dlerror(); in _lx_dlerror() local 102 if (!cp1) in _lx_dlerror() 103 return cp1; in _lx_dlerror() 108 lxdles = (const char *) xmlTranscodeString(cp1, NULL, NULL); in _lx_dlerror()
|
/external/fsck_msdos/ |
D | fat.c | 337 clustdiffer(cl_t cl, cl_t *cp1, cl_t *cp2, int fatnum) in clustdiffer() argument 339 if (*cp1 == CLUST_FREE || *cp1 >= CLUST_RSRVD) { in clustdiffer() 341 if ((*cp1 != CLUST_FREE && *cp1 < CLUST_BAD in clustdiffer() 343 || (*cp1 > CLUST_BAD && *cp2 > CLUST_BAD)) { in clustdiffer() 345 cl, rsrvdcltype(*cp1)); in clustdiffer() 347 *cp2 = *cp1; in clustdiffer() 353 cl, rsrvdcltype(*cp1), rsrvdcltype(*cp2), fatnum); in clustdiffer() 355 *cp2 = *cp1; in clustdiffer() 359 *cp1 = *cp2; in clustdiffer() 365 cl, rsrvdcltype(*cp1), *cp2, fatnum); in clustdiffer() [all …]
|
/external/f2fs-tools/scripts/ |
D | dumpf2fs.sh | 9 cp1) 10 echo dump cp1 19 echo dump cp1 and cp2 25 echo dump cp1 all 33 echo dump cp1 and cp2 all
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/ |
D | preprocessor.js | 17 function isSurrogatePair(cp1, cp2) { argument 18 return cp1 >= 0xD800 && cp1 <= 0xDBFF && cp2 >= 0xDC00 && cp2 <= 0xDFFF; 21 function getSurrogatePairCodePoint(cp1, cp2) { argument 22 return (cp1 - 0xD800) * 0x400 + 0x2400 + cp2;
|
/external/clang/test/SemaCXX/ |
D | complex-overload.cpp | 5 char *cp1 = foo(fv); in test_foo_1() local 15 char *cp1 = foo(fv); in test_foo_2() local 24 char *cp1 = foo(fv); in test_foo_3() local 49 char *cp1 = promote_or_convert3(sc); in test_promote_or_convert3() local
|
/external/e2fsprogs/lib/uuid/ |
D | copy.c | 39 unsigned char *cp1; in uuid_copy() local 43 for (i=0, cp1 = dst, cp2 = src; i < 16; i++) in uuid_copy() 44 *cp1++ = *cp2++; in uuid_copy()
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/ |
D | CertPathTest.java | 85 CertPath cp1 = new MyCertPath(new byte[] { (byte) 0, (byte) 1 }); in testCertPathRep_readResolve() local 89 SerializationTest.copySerializable(cp1); in testCertPathRep_readResolve() 102 CertPath cp1 = new MyCertPath(null); in testWriteReplace() local 107 SerializationTest.copySerializable(cp1); in testWriteReplace()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/ |
D | b2ContactSolver.cpp | 408 b2VelocityConstraintPoint* cp1 = vc->points + 0; in SolveVelocityConstraints() local 411 b2Vec2 a(cp1->normalImpulse, cp2->normalImpulse); in SolveVelocityConstraints() 415 b2Vec2 dv1 = vB + b2Cross(wB, cp1->rB) - vA - b2Cross(wA, cp1->rA); in SolveVelocityConstraints() 423 b.x = vn1 - cp1->velocityBias; in SolveVelocityConstraints() 454 wA -= iA * (b2Cross(cp1->rA, P1) + b2Cross(cp2->rA, P2)); in SolveVelocityConstraints() 457 wB += iB * (b2Cross(cp1->rB, P1) + b2Cross(cp2->rB, P2)); in SolveVelocityConstraints() 460 cp1->normalImpulse = x.x; in SolveVelocityConstraints() 465 dv1 = vB + b2Cross(wB, cp1->rB) - vA - b2Cross(wA, cp1->rA); in SolveVelocityConstraints() 472 b2Assert(b2Abs(vn1 - cp1->velocityBias) < k_errorTol); in SolveVelocityConstraints() 484 x.x = - cp1->normalMass * b.x; in SolveVelocityConstraints() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | win-catchpad-nested.ll | 18 %cp1 = catchpad within %cs1 [i32 1] 19 invoke void @f() [ "funclet"(token %cp1) ] 22 catchret from %cp1 to label %exit 25 %cs2 = catchswitch within %cp1 [label %inner.catch] unwind to caller
|
D | win64_vararg.ll | 71 %cp1 = bitcast i8** %cp to i8* 73 call void @llvm.va_copy(i8* %cp1, i8* %ap1) 89 %cp1 = bitcast i8** %cp to i8* 91 call void @llvm.va_copy(i8* %cp1, i8* %ap1)
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
D | Main.java | 65 public void find(String level, String cp1, String cp2) throws IOException { in find() argument 66 if (level == null || cp1 == null) { in find() 70 cp2 = cp1; in find() 82 new DepFind().run(cp1, cp2, handler); in find()
|
/external/pdfium/xfa/src/fxfa/src/app/ |
D | xfa_ffwidget.cpp | 1151 CFX_PointF cpStart, cp, cp1, cp2; in XFA_BOX_GetPath() local 1192 cp1 = rtWidget.TopLeft(); in XFA_BOX_GetPath() 1195 cpStart.x = cp1.x - halfBefore; in XFA_BOX_GetPath() 1196 cpStart.y = cp1.y + fRadius1, offsetY = -halfAfter; in XFA_BOX_GetPath() 1198 cpStart.x = cp1.x + fRadius1 - halfBefore, cpStart.y = cp1.y, in XFA_BOX_GetPath() 1211 cp1 = rtWidget.TopRight(); in XFA_BOX_GetPath() 1214 cpStart.x = cp1.x - fRadius1, cpStart.y = cp1.y - halfBefore, in XFA_BOX_GetPath() 1217 cpStart.x = cp1.x, cpStart.y = cp1.y + fRadius1 - halfBefore, in XFA_BOX_GetPath() 1230 cp1 = rtWidget.BottomRight(); in XFA_BOX_GetPath() 1233 cpStart.x = cp1.x + halfBefore, cpStart.y = cp1.y - fRadius1, in XFA_BOX_GetPath() [all …]
|
/external/dnsmasq/src/ |
D | rfc1035.c | 179 char name[MAXARPANAME+1], *cp1; in in_arpa_name_2_addr() local 190 for(j = 1,cp1 = name; *namein; cp1++, namein++) in in_arpa_name_2_addr() 194 lastchunk = cp1 + 1; in in_arpa_name_2_addr() 195 *cp1 = 0; in in_arpa_name_2_addr() 199 *cp1 = *namein; in in_arpa_name_2_addr() 201 *cp1 = 0; in in_arpa_name_2_addr() 213 for (cp1 = name; cp1 != penchunk; cp1 += strlen(cp1)+1) in in_arpa_name_2_addr() 219 for (cp = cp1; *cp; cp++) in in_arpa_name_2_addr() 226 addr[0] = atoi(cp1); in in_arpa_name_2_addr() 249 for (j = 0, cp1 = name+3; *cp1 && isxdigit((int) *cp1) && j < 32; cp1++, j++) in in_arpa_name_2_addr() [all …]
|
/external/clang/test/Sema/ |
D | overloadable-complex.c | 5 char *cp1 = foo(fv); in test_foo_1() local 15 char *cp1 = foo(fv); in test_foo_2() local 24 char *cp1 = foo(fv); in test_foo_3() local
|
/external/selinux/secilc/test/ |
D | neverallow.cil | 26 (classpermission cp1) 27 (classpermissionset cp1 (c1 (p1a p1b))) 28 (classpermissionset cp1 (c2 (p2a))) 62 (neverallow t5 t6 cp1)
|
/external/icu/icu4c/source/common/ |
D | unormcmp.cpp | 168 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local 282 cp1=c1; in unorm_cmpEquivFold() 289 cp1=U16_GET_SUPPLEMENTARY(c1, c); in unorm_cmpEquivFold() 293 cp1=U16_GET_SUPPLEMENTARY(c, c1); in unorm_cmpEquivFold() 320 (length=ucase_toFullFolding(csp, (UChar32)cp1, &p, options))>=0 in unorm_cmpEquivFold() 410 0!=(p=nfcImpl->getDecomposition((UChar32)cp1, decomp1, length)) in unorm_cmpEquivFold()
|
/external/pdfium/third_party/libtiff/ |
D | tif_getimage.c | 1751 uint32* cp1 = cp+w+toskew; in putcontig8bitYCbCrGenericTile() local 1752 uint32* cp2 = cp1+w+toskew; in putcontig8bitYCbCrGenericTile() 1785 YCbCrtoRGB(cp1[0], pp[ 4]); in putcontig8bitYCbCrGenericTile() 1786 YCbCrtoRGB(cp1[1], pp[ 5]); in putcontig8bitYCbCrGenericTile() 1787 YCbCrtoRGB(cp1[2], pp[ 6]); in putcontig8bitYCbCrGenericTile() 1788 YCbCrtoRGB(cp1[3], pp[ 7]); in putcontig8bitYCbCrGenericTile() 1798 cp += 4, cp1 += 4, cp2 += 4, cp3 += 4; in putcontig8bitYCbCrGenericTile() 1801 cp += incr, cp1 += incr, cp2 += incr, cp3 += incr; in putcontig8bitYCbCrGenericTile() 1812 uint32* cp1 = cp+w+toskew; in DECLAREContigPutFunc() local 1813 uint32* cp2 = cp1+w+toskew; in DECLAREContigPutFunc() [all …]
|
/external/selinux/libsepol/cil/src/ |
D | cil_find.c | 141 static int cil_classperms_match_any(struct cil_classperms *cp1, struct cil_classperms *cp2) in cil_classperms_match_any() argument 143 struct cil_class *c1 = cp1->class; in cil_classperms_match_any() 149 cil_list_for_each(i1, cp1->perms) { in cil_classperms_match_any() 159 static int __cil_classperms_list_match_any(struct cil_classperms *cp1, struct cil_list *cpl2) in __cil_classperms_list_match_any() argument 168 rc = cil_classperms_match_any(cp1, cp); in __cil_classperms_list_match_any() 174 rc = __cil_classperms_list_match_any(cp1, cmp->classperms); in __cil_classperms_list_match_any() 181 rc = __cil_classperms_list_match_any(cp1, cp->classperms); in __cil_classperms_list_match_any()
|
/external/clang/test/SemaObjC/ |
D | nonnull.m | 30 foo (int i1, int i2, int i3, void (^cp1)(), void (^cp2)(), void (^cp3)()) 32 func1(cp1, cp2, i1); 35 …func1(cp1, 0, i1); // expected-warning {{null passed to a callee that requires a non-null argumen… 36 func1(cp1, cp2, 0); 42 func4(0, cp1); // expected-warning {{null passed to a callee that requires a non-null argument}} 43 func4(cp1, 0); // expected-warning {{null passed to a callee that requires a non-null argument}}
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/ |
D | btRaycastCallback.cpp | 92 btVector3 cp1; in processTriangle() local 93 cp1 = v1p.cross( v2p); in processTriangle() 94 if ( (btScalar)(cp1.dot(triangleNormal)) >=edge_tolerance) in processTriangle()
|
/external/clang/test/Analysis/ |
D | call-invalidation.cpp | 24 int * const cp1 = &x; in testPointer() local 27 usePointer(&cp1); in testPointer()
|