/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
D | CertPathTest.java | 61 CertPath cp2 = new MyCertPath(testEncoding); in testHashCode() local 63 assertTrue(cp1.hashCode() == cp2.hashCode()); in testHashCode() 72 CertPath cp2 = new MyCertPath(testEncoding); in testHashCodeEqualsObject() local 73 assertTrue((cp1.hashCode() == cp2.hashCode()) && cp1.equals(cp2)); in testHashCodeEqualsObject() 100 CertPath cp2 = new MyCertPath(testEncoding); in testEqualsObject02() local 101 assertTrue(cp1.equals(cp2) && cp2.equals(cp1)); in testEqualsObject02()
|
D | CollectionCertStoreParametersTest.java | 156 CollectionCertStoreParameters cp2 = in testClone01() local 159 assertTrue(cp1 != cp2); in testClone01() 172 CollectionCertStoreParameters cp2 = in testClone02() local 175 assertTrue(cp1.getCollection() == cp2.getCollection()); in testClone02() 186 CollectionCertStoreParameters cp2 = in testClone03() local 189 (CollectionCertStoreParameters) cp2.clone(); in testClone03() 191 assertTrue(cp1.getCollection() == cp2.getCollection() && in testClone03() 192 cp3.getCollection() == cp2.getCollection()); in testClone03()
|
D | LDAPCertStoreParametersTest.java | 151 LDAPCertStoreParameters cp2 = (LDAPCertStoreParameters) cp1.clone(); in testClone() local 153 assertTrue("newObject", cp1 != cp2); in testClone() 155 cp1.getServerName().equals(cp2.getServerName())); in testClone() 156 assertTrue("portsTheSame", cp1.getPort() == cp2.getPort()); in testClone()
|
/external/fsck_msdos/ |
D | fat.c | 337 clustdiffer(cl_t cl, cl_t *cp1, cl_t *cp2, int fatnum) in clustdiffer() argument 340 if (*cp2 == CLUST_FREE || *cp2 >= CLUST_RSRVD) { in clustdiffer() 342 && *cp2 != CLUST_FREE && *cp2 < CLUST_BAD) in clustdiffer() 343 || (*cp1 > CLUST_BAD && *cp2 > CLUST_BAD)) { 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() 367 *cp1 = *cp2; in clustdiffer() [all …]
|
/external/libxml2/os400/ |
D | wrappers.c | 47 char const * cp2; in _lx_inet_ntop() local 53 if (!(cp2 = xmlTranscodeString(cp1, NULL, NULL))) in _lx_inet_ntop() 54 return cp2; in _lx_inet_ntop() 56 i = strlen(cp2); in _lx_inet_ntop() 59 xmlFree((char *) cp2); in _lx_inet_ntop() 64 memcpy(dst, cp2, i + 1); in _lx_inet_ntop() 65 xmlFree((char *) cp2); in _lx_inet_ntop()
|
/external/f2fs-tools/scripts/ |
D | dumpf2fs.sh | 14 cp2) 15 echo dump cp2 19 echo dump cp1 and cp2 29 echo dump cp2 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 | 6 char *cp2 = foo(dv); in test_foo_1() local 16 char *cp2 = foo(dv); in test_foo_2() local 25 char *cp2 = foo(dv); in test_foo_3() local 50 char *cp2 = promote_or_convert3(1i); in test_promote_or_convert3() local
|
/external/e2fsprogs/lib/uuid/ |
D | copy.c | 40 const unsigned char *cp2; 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/curl/packages/OS400/ |
D | os400sys.c | 1110 char * cp2; in Curl_ldap_get_dn_a() local 1119 if(!(cp2 = malloc(i + 1))) in Curl_ldap_get_dn_a() 1120 return cp2; in Curl_ldap_get_dn_a() 1122 QadrtConvertE2A(cp2, cp, i, i); in Curl_ldap_get_dn_a() 1123 cp2[i] = '\0'; in Curl_ldap_get_dn_a() 1129 strcpy(cp, cp2); in Curl_ldap_get_dn_a() 1130 free(cp2); in Curl_ldap_get_dn_a() 1142 char * cp2; in Curl_ldap_first_attribute_a() local 1151 if(!(cp2 = malloc(i + 1))) in Curl_ldap_first_attribute_a() 1152 return cp2; in Curl_ldap_first_attribute_a() [all …]
|
/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 69 if (cp2 == null) { in find() 70 cp2 = cp1; in find() 82 new DepFind().run(cp1, cp2, handler); in find()
|
/external/clang/test/Sema/ |
D | overloadable-complex.c | 6 char *cp2 = foo(dv); in test_foo_1() local 16 char *cp2 = foo(dv); in test_foo_2() local 25 char *cp2 = foo(dv); in test_foo_3() local
|
/external/icu/icu4c/source/common/ |
D | unormcmp.cpp | 168 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local 298 cp2=c2; in unorm_cmpEquivFold() 305 cp2=U16_GET_SUPPLEMENTARY(c2, c); in unorm_cmpEquivFold() 309 cp2=U16_GET_SUPPLEMENTARY(c, c2); in unorm_cmpEquivFold() 365 (length=ucase_toFullFolding(csp, (UChar32)cp2, &p, options))>=0 in unorm_cmpEquivFold() 451 0!=(p=nfcImpl->getDecomposition((UChar32)cp2, decomp2, length)) in unorm_cmpEquivFold()
|
D | ustrcase.cpp | 514 UChar32 c1, c2, cp1, cp2; in _cmpFold() local 682 cp2=c2; in _cmpFold() 689 cp2=U16_GET_SUPPLEMENTARY(c2, c); in _cmpFold() 693 cp2=U16_GET_SUPPLEMENTARY(c, c2); in _cmpFold() 750 (length=ucase_toFullFolding(csp, (UChar32)cp2, &p, options))>=0 in _cmpFold()
|
/external/pdfium/third_party/libtiff/ |
D | tif_getimage.c | 1752 uint32* cp2 = cp1+w+toskew; in putcontig8bitYCbCrGenericTile() local 1753 uint32* cp3 = cp2+w+toskew; in putcontig8bitYCbCrGenericTile() 1789 YCbCrtoRGB(cp2[0], pp[ 8]); in putcontig8bitYCbCrGenericTile() 1790 YCbCrtoRGB(cp2[1], pp[ 9]); in putcontig8bitYCbCrGenericTile() 1791 YCbCrtoRGB(cp2[2], pp[10]); in putcontig8bitYCbCrGenericTile() 1792 YCbCrtoRGB(cp2[3], pp[11]); in putcontig8bitYCbCrGenericTile() 1798 cp += 4, cp1 += 4, cp2 += 4, cp3 += 4; in putcontig8bitYCbCrGenericTile() 1801 cp += incr, cp1 += incr, cp2 += incr, cp3 += incr; in putcontig8bitYCbCrGenericTile() 1813 uint32* cp2 = cp1+w+toskew; in DECLAREContigPutFunc() local 1814 uint32* cp3 = cp2+w+toskew; in DECLAREContigPutFunc() [all …]
|
/external/opencv3/3rdparty/libtiff/ |
D | tif_getimage.c | 1693 uint32* cp2 = cp1+w+toskew; in putcontig8bitYCbCrGenericTile() local 1694 uint32* cp3 = cp2+w+toskew; in putcontig8bitYCbCrGenericTile() 1730 YCbCrtoRGB(cp2[0], pp[ 8]); in putcontig8bitYCbCrGenericTile() 1731 YCbCrtoRGB(cp2[1], pp[ 9]); in putcontig8bitYCbCrGenericTile() 1732 YCbCrtoRGB(cp2[2], pp[10]); in putcontig8bitYCbCrGenericTile() 1733 YCbCrtoRGB(cp2[3], pp[11]); in putcontig8bitYCbCrGenericTile() 1739 cp += 4, cp1 += 4, cp2 += 4, cp3 += 4; in putcontig8bitYCbCrGenericTile() 1742 cp += incr, cp1 += incr, cp2 += incr, cp3 += incr; in putcontig8bitYCbCrGenericTile() 1754 uint32* cp2 = cp1+w+toskew; in DECLAREContigPutFunc() local 1755 uint32* cp3 = cp2+w+toskew; in DECLAREContigPutFunc() [all …]
|
/external/llvm/test/CodeGen/WinEH/ |
D | wineh-demotion.ll | 170 %cp2 = catchpad within %cs2 [] 171 call void @h(i32 %phi.outer) [ "funclet"(token %cp2) ] 172 catchret from %cp2 to label %exit 243 %cp2 = catchpad within %cs1 [] 244 call void @h(i32 %phi.catch) [ "funclet"(token %cp2) ] 245 catchret from %cp2 to label %exit 269 %cp2 = cleanuppad within none [] 270 call void @h(i32 %x) [ "funclet"(token %cp2) ] 271 cleanupret from %cp2 unwind to caller
|
/external/clang/test/Analysis/ |
D | call-invalidation.cpp | 30 int * const cp2 = &x; in testPointer() local 33 useReference(cp2); in testPointer()
|
/external/llvm/test/CodeGen/X86/ |
D | win-catchpad-nested.ll | 27 %cp2 = catchpad within %cs2 [i32 2] 28 catchret from %cp2 to label %outer.ret
|
/external/curl/lib/ |
D | x509asn1.c | 878 char * cp2; in Curl_extract_certinfo() local 1007 cp2 = malloc(i + 1); in Curl_extract_certinfo() 1008 if(!cp2) { in Curl_extract_certinfo() 1013 i = copySubstring(cp2, "-----BEGIN CERTIFICATE-----"); in Curl_extract_certinfo() 1015 i += copySubstring(cp2 + i, cp1 + j); in Curl_extract_certinfo() 1016 i += copySubstring(cp2 + i, "-----END CERTIFICATE-----"); in Curl_extract_certinfo() 1017 cp2[i] = '\0'; in Curl_extract_certinfo() 1020 Curl_ssl_push_certinfo(data, certnum, "Cert", cp2); in Curl_extract_certinfo() 1022 infof(data, "%s\n", cp2); in Curl_extract_certinfo() 1023 free(cp2); in Curl_extract_certinfo()
|
/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); 34 …func1(0, cp2, i1); // expected-warning {{null passed to a callee that requires a non-null argumen… 36 func1(cp1, cp2, 0);
|
/external/jarjar/res/com/tonicsystems/jarjar/ |
D | help.txt | 15 java -jar jarjar.jar find <level> <cp1> [<cp2>] 17 Prints dependencies on classpath <cp2> in classpath <cp1>. If <cp2>
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | CanonicalIterator.java | 304 int cp2 = iter.codepoint; in getEquivalents2() local 305 Set<String> remainder = extract(cp2, segment, i, workingBuffer); in getEquivalents2() 312 prefix += UTF16.valueOf(cp2); in getEquivalents2()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CanonicalIterator.java | 308 int cp2 = iter.codepoint; in getEquivalents2() local 309 Set<String> remainder = extract(cp2, segment, i, workingBuffer); in getEquivalents2() 316 prefix += UTF16.valueOf(cp2); in getEquivalents2()
|
/external/clang/test/PCH/ |
D | namespaces.cpp | 33 N3::C *cp2; variable
|