/third_party/gstreamer/gstreamer/libs/gst/controller/ |
D | gstinterpolationcontrolsource.c | 57 GstClockTime ts, GstControlPoint ** cp1, GstControlPoint ** cp2) in _get_nearest_control_points() argument 66 *cp2 = g_sequence_get (iter); in _get_nearest_control_points() 68 *cp2 = NULL; in _get_nearest_control_points() 77 GstClockTime ts, GstControlPoint ** cp1, GstControlPoint ** cp2, in _get_nearest_control_points2() argument 82 *cp1 = *cp2 = NULL; in _get_nearest_control_points2() 101 *cp2 = g_sequence_get (iter2); in _get_nearest_control_points2() 102 *next_ts = (*cp2)->timestamp; in _get_nearest_control_points2() 147 GstControlPoint *cp1 = NULL, *cp2 = NULL; in interpolate_none_get_value_array() local 155 _get_nearest_control_points2 (self, ts, &cp1, &cp2, &next_ts); in interpolate_none_get_value_array() 196 GstControlPoint *cp1, *cp2; in interpolate_linear_get() local [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | StringSegment.java | 147 int cp2 = Character.codePointAt(other, 0); 148 return codePointsEqual(cp1, cp2, foldCase); 183 int cp2 = Character.codePointAt(other, offset); 184 if (!codePointsEqual(cp1, cp2, foldCase)) { 192 private static final boolean codePointsEqual(int cp1, int cp2, boolean foldCase) { 193 if (cp1 == cp2) { 200 cp2 = UCharacter.foldCase(cp2, true); 201 return cp1 == cp2;
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | StringSegment.java | 149 int cp2 = Character.codePointAt(other, 0); 150 return codePointsEqual(cp1, cp2, foldCase); 185 int cp2 = Character.codePointAt(other, offset); 186 if (!codePointsEqual(cp1, cp2, foldCase)) { 194 private static final boolean codePointsEqual(int cp1, int cp2, boolean foldCase) { 195 if (cp1 == cp2) { 202 cp2 = UCharacter.foldCase(cp2, true); 203 return cp1 == cp2;
|
/third_party/ltp/testcases/kernel/mem/shmt/ |
D | shmt03.c | 59 char *cp1, *cp2; in main() local 93 if ((cp2 = shmat(shmid, NULL, 0)) == (char *)-1) { in main() 99 if ((*cp2 != '1' || *(cp2 + 5 * K_1) != '2') && in main() 112 if (*cp2 != '1' || *(cp2 + 5 * K_1) != '2' || in main()
|
/third_party/icu/icu4c/source/i18n/ |
D | string_segment.cpp | 100 int cp2 = other.char32At(0); in startsWith() local 101 return codePointsEqual(cp1, cp2, fFoldCase); in startsWith() 127 bool StringSegment::codePointsEqual(UChar32 cp1, UChar32 cp2, bool foldCase) { in codePointsEqual() argument 128 if (cp1 == cp2) { in codePointsEqual() 135 cp2 = u_foldCase(cp2, TRUE); in codePointsEqual() 136 return cp1 == cp2; in codePointsEqual()
|
/third_party/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()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | string_segment.cpp | 100 int cp2 = other.char32At(0); in startsWith() local 101 return codePointsEqual(cp1, cp2, fFoldCase); in startsWith() 127 bool StringSegment::codePointsEqual(UChar32 cp1, UChar32 cp2, bool foldCase) { in codePointsEqual() argument 128 if (cp1 == cp2) { in codePointsEqual() 135 cp2 = u_foldCase(cp2, TRUE); in codePointsEqual() 136 return cp1 == cp2; in codePointsEqual()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | string_segment.cpp | 100 int cp2 = other.char32At(0); in startsWith() local 101 return codePointsEqual(cp1, cp2, fFoldCase); in startsWith() 127 bool StringSegment::codePointsEqual(UChar32 cp1, UChar32 cp2, bool foldCase) { in codePointsEqual() argument 128 if (cp1 == cp2) { in codePointsEqual() 135 cp2 = u_foldCase(cp2, TRUE); in codePointsEqual() 136 return cp1 == cp2; in codePointsEqual()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | numparse_stringsegment.cpp | 102 int cp2 = other.char32At(0); in startsWith() local 103 return codePointsEqual(cp1, cp2, fFoldCase); in startsWith() 129 bool StringSegment::codePointsEqual(UChar32 cp1, UChar32 cp2, bool foldCase) { in codePointsEqual() argument 130 if (cp1 == cp2) { in codePointsEqual() 137 cp2 = u_foldCase(cp2, TRUE); in codePointsEqual() 138 return cp1 == cp2; in codePointsEqual()
|
/third_party/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
|
/third_party/json/test/src/ |
D | unit-unicode1.cpp | 161 for (std::size_t cp2 = 0x0000u; cp2 <= 0xFFFFu; ++cp2) in skip() 163 if (0xDC00u <= cp2 && cp2 <= 0xDFFFu) in skip() 168 … std::string json_text = "\"" + codepoint_to_unicode(cp1) + codepoint_to_unicode(cp2) + "\""; in skip()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | unormcmp.cpp | 169 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local 294 cp2=c2; in unorm_cmpEquivFold() 301 cp2=U16_GET_SUPPLEMENTARY(c2, c); in unorm_cmpEquivFold() 305 cp2=U16_GET_SUPPLEMENTARY(c, c2); in unorm_cmpEquivFold() 361 (length=ucase_toFullFolding((UChar32)cp2, &p, options))>=0 in unorm_cmpEquivFold() 447 0!=(p=nfcImpl->getDecomposition((UChar32)cp2, decomp2, length)) in unorm_cmpEquivFold()
|
D | caniter.cpp | 457 UChar32 cp2 = iter.getCodepoint(); in getEquivalents2() local 460 if (extract(&remainder, cp2, segment, segLen, i, status) == NULL) { in getEquivalents2() 466 prefix += cp2; in getEquivalents2()
|
/third_party/icu/icu4c/source/common/ |
D | unormcmp.cpp | 169 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local 294 cp2=c2; in unorm_cmpEquivFold() 301 cp2=U16_GET_SUPPLEMENTARY(c2, c); in unorm_cmpEquivFold() 305 cp2=U16_GET_SUPPLEMENTARY(c, c2); in unorm_cmpEquivFold() 361 (length=ucase_toFullFolding((UChar32)cp2, &p, options))>=0 in unorm_cmpEquivFold() 447 0!=(p=nfcImpl->getDecomposition((UChar32)cp2, decomp2, length)) in unorm_cmpEquivFold()
|
D | caniter.cpp | 457 UChar32 cp2 = iter.getCodepoint(); in getEquivalents2() local 460 if (extract(&remainder, cp2, segment, segLen, i, status) == NULL) { in getEquivalents2() 466 prefix += cp2; in getEquivalents2()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | unormcmp.cpp | 169 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local 294 cp2=c2; in unorm_cmpEquivFold() 301 cp2=U16_GET_SUPPLEMENTARY(c2, c); in unorm_cmpEquivFold() 305 cp2=U16_GET_SUPPLEMENTARY(c, c2); in unorm_cmpEquivFold() 361 (length=ucase_toFullFolding((UChar32)cp2, &p, options))>=0 in unorm_cmpEquivFold() 447 0!=(p=nfcImpl->getDecomposition((UChar32)cp2, decomp2, length)) in unorm_cmpEquivFold()
|
/third_party/node/deps/icu-small/source/common/ |
D | unormcmp.cpp | 169 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local 294 cp2=c2; in unorm_cmpEquivFold() 301 cp2=U16_GET_SUPPLEMENTARY(c2, c); in unorm_cmpEquivFold() 305 cp2=U16_GET_SUPPLEMENTARY(c, c2); in unorm_cmpEquivFold() 361 (length=ucase_toFullFolding((UChar32)cp2, &p, options))>=0 in unorm_cmpEquivFold() 447 0!=(p=nfcImpl->getDecomposition((UChar32)cp2, decomp2, length)) in unorm_cmpEquivFold()
|
D | caniter.cpp | 457 UChar32 cp2 = iter.getCodepoint(); in getEquivalents2() local 460 if (extract(&remainder, cp2, segment, segLen, i, status) == NULL) { in getEquivalents2() 466 prefix += cp2; in getEquivalents2()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | mikey.c | 117 const GstMIKEYPayload *cp, *cp2; in GST_START_TEST() local 190 fail_unless ((cp2 = gst_mikey_payload_kemac_get_sub (cp, 0)) != NULL); in GST_START_TEST() 191 fail_unless (cp2->type == GST_MIKEY_PT_KEY_DATA); in GST_START_TEST() 192 pkd = (GstMIKEYPayloadKeyData *) cp2; in GST_START_TEST()
|
/third_party/parse5/packages/parse5/lib/common/ |
D | unicode.ts | 63 export function getSurrogatePairCodePoint(cp1: number, cp2: number): number { 64 return (cp1 - 0xd8_00) * 0x4_00 + 0x24_00 + cp2;
|
/third_party/python/Modules/ |
D | audioop.c | 624 const int16_t *cp1, *cp2; in audioop_findfit_impl() local 637 cp2 = (const int16_t *)reference->buf; in audioop_findfit_impl() 645 sum_ri_2 = _sum2(cp2, cp2, len2); in audioop_findfit_impl() 647 sum_aij_ri = _sum2(cp1, cp2, len2); in audioop_findfit_impl() 659 sum_aij_ri = _sum2(cp1+j, cp2, len2); in audioop_findfit_impl() 671 factor = _sum2(cp1+best_j, cp2, len2) / sum_ri_2; in audioop_findfit_impl() 695 const int16_t *cp1, *cp2; in audioop_findfactor_impl() local 710 cp2 = (const int16_t *)reference->buf; in audioop_findfactor_impl() 712 sum_ri_2 = _sum2(cp2, cp2, len); in audioop_findfactor_impl() 713 sum_aij_ri = _sum2(cp1, cp2, len); in audioop_findfactor_impl()
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
D | libcpuset.c | 1965 static void mark_dirty_variable(struct cpuset *cp1, const struct cpuset *cp2) in mark_dirty_variable() argument 1968 cp1->cpu_exclusive != cp2->cpu_exclusive) in mark_dirty_variable() 1972 cp1->mem_exclusive != cp2->mem_exclusive) in mark_dirty_variable() 1975 if (cp1->mem_hardwall_valid && cp1->mem_hardwall != cp2->mem_hardwall) in mark_dirty_variable() 1979 cp1->notify_on_release != cp2->notify_on_release) in mark_dirty_variable() 1983 cp1->memory_migrate != cp2->memory_migrate) in mark_dirty_variable() 1987 cp1->memory_pressure_enabled != cp2->memory_pressure_enabled) in mark_dirty_variable() 1991 cp1->memory_spread_page != cp2->memory_spread_page) in mark_dirty_variable() 1995 cp1->memory_spread_slab != cp2->memory_spread_slab) in mark_dirty_variable() 1999 cp1->sched_load_balance != cp2->sched_load_balance) in mark_dirty_variable() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CanonicalIterator.java | 310 int cp2 = iter.codepoint; in getEquivalents2() local 311 Set<String> remainder = extract(cp2, segment, i, workingBuffer); in getEquivalents2() 318 prefix += UTF16.valueOf(cp2); in getEquivalents2()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | CanonicalIterator.java | 306 int cp2 = iter.codepoint; in getEquivalents2() local 307 Set<String> remainder = extract(cp2, segment, i, workingBuffer); in getEquivalents2() 314 prefix += UTF16.valueOf(cp2); in getEquivalents2()
|
/third_party/iowow/src/json/ |
D | iwjser.c | 134 uint32_t cp, cp2; in _jbl_unescape_json_string() local 150 cp2 = h1 << 12 | h2 << 8 | h3 << 4 | h4; in _jbl_unescape_json_string() 151 if ((cp2 & 0xfc00) != 0xdc00) { in _jbl_unescape_json_string() 155 cp = 0x10000 + ((cp - 0xd800) << 10) + (cp2 - 0xdc00); in _jbl_unescape_json_string()
|