/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | uloc_keytype.cpp | 91 initFromResourceBundle(UErrorCode& sts) { in initFromResourceBundle() argument 95 gLocExtKeyMap = uhash_open(uhash_hashIChars, uhash_compareIChars, NULL, &sts); in initFromResourceBundle() 97 LocalUResourceBundlePointer keyTypeDataRes(ures_openDirect(NULL, "keyTypeData", &sts)); in initFromResourceBundle() 98 …alUResourceBundlePointer keyMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "keyMap", NULL, &sts)); in initFromResourceBundle() 99 …UResourceBundlePointer typeMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "typeMap", NULL, &sts)); in initFromResourceBundle() 101 if (U_FAILURE(sts)) { in initFromResourceBundle() 111 gKeyTypeStringPool = new UVector(uloc_deleteKeyTypeStringPoolEntry, NULL, sts); in initFromResourceBundle() 113 if (U_SUCCESS(sts)) { in initFromResourceBundle() 114 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 117 if (U_FAILURE(sts)) { in initFromResourceBundle() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | uloc_keytype.cpp | 79 initFromResourceBundle(UErrorCode& sts) { in initFromResourceBundle() argument 83 gLocExtKeyMap = uhash_open(uhash_hashIChars, uhash_compareIChars, NULL, &sts); in initFromResourceBundle() 85 LocalUResourceBundlePointer keyTypeDataRes(ures_openDirect(NULL, "keyTypeData", &sts)); in initFromResourceBundle() 86 …alUResourceBundlePointer keyMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "keyMap", NULL, &sts)); in initFromResourceBundle() 87 …UResourceBundlePointer typeMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "typeMap", NULL, &sts)); in initFromResourceBundle() 89 if (U_FAILURE(sts)) { in initFromResourceBundle() 101 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 106 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 111 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 119 … keyMapEntry.adoptInstead(ures_getNextResource(keyMapRes.getAlias(), keyMapEntry.orphan(), &sts)); in initFromResourceBundle() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | uloc_keytype.cpp | 79 initFromResourceBundle(UErrorCode& sts) { in initFromResourceBundle() argument 83 gLocExtKeyMap = uhash_open(uhash_hashIChars, uhash_compareIChars, NULL, &sts); in initFromResourceBundle() 85 LocalUResourceBundlePointer keyTypeDataRes(ures_openDirect(NULL, "keyTypeData", &sts)); in initFromResourceBundle() 86 …alUResourceBundlePointer keyMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "keyMap", NULL, &sts)); in initFromResourceBundle() 87 …UResourceBundlePointer typeMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "typeMap", NULL, &sts)); in initFromResourceBundle() 89 if (U_FAILURE(sts)) { in initFromResourceBundle() 101 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 106 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 111 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 119 … keyMapEntry.adoptInstead(ures_getNextResource(keyMapRes.getAlias(), keyMapEntry.orphan(), &sts)); in initFromResourceBundle() [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | uloc_keytype.cpp | 79 initFromResourceBundle(UErrorCode& sts) { in initFromResourceBundle() argument 83 gLocExtKeyMap = uhash_open(uhash_hashIChars, uhash_compareIChars, NULL, &sts); in initFromResourceBundle() 85 LocalUResourceBundlePointer keyTypeDataRes(ures_openDirect(NULL, "keyTypeData", &sts)); in initFromResourceBundle() 86 …alUResourceBundlePointer keyMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "keyMap", NULL, &sts)); in initFromResourceBundle() 87 …UResourceBundlePointer typeMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "typeMap", NULL, &sts)); in initFromResourceBundle() 89 if (U_FAILURE(sts)) { in initFromResourceBundle() 101 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 106 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 111 sts = U_MEMORY_ALLOCATION_ERROR; in initFromResourceBundle() 119 … keyMapEntry.adoptInstead(ures_getNextResource(keyMapRes.getAlias(), keyMapEntry.orphan(), &sts)); in initFromResourceBundle() [all …]
|
/third_party/curl/lib/ |
D | hsts.c | 96 struct stsentry *sts = e->ptr; in Curl_hsts_cleanup() local 98 hsts_free(sts); in Curl_hsts_cleanup() 116 struct stsentry *sts = hsts_entry(); in hsts_create() local 117 if(!sts) in hsts_create() 120 sts->expires = expires; in hsts_create() 121 sts->includeSubDomains = subdomains; in hsts_create() 122 sts->host = strdup(hostname); in hsts_create() 123 if(!sts->host) { in hsts_create() 124 free(sts); in hsts_create() 127 Curl_llist_insert_next(&h->list, h->list.tail, sts, &sts->node); in hsts_create() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | LanguageTag.java | 164 public static LanguageTag parse(String languageTag, ParseStatus sts) { in parse() argument 165 if (sts == null) { in parse() 166 sts = new ParseStatus(); in parse() 168 sts.reset(); in parse() 198 if (tag.parseLanguage(itr, sts)) { in parse() 201 tag.parseExtlangs(itr, sts); in parse() 202 tag.parseScript(itr, sts); in parse() 203 tag.parseRegion(itr, sts); in parse() 204 tag.parseVariants(itr, sts); in parse() 205 tag.parseExtensions(itr, sts); in parse() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | LanguageTag.java | 120 public static LanguageTag parse(String languageTag, ParseStatus sts) { in parse() argument 121 if (sts == null) { in parse() 122 sts = new ParseStatus(); in parse() 124 sts.reset(); in parse() 153 if (tag.parseLanguage(itr, sts)) { in parse() 156 tag.parseExtlangs(itr, sts); in parse() 157 tag.parseScript(itr, sts); in parse() 158 tag.parseRegion(itr, sts); in parse() 159 tag.parseVariants(itr, sts); in parse() 160 tag.parseExtensions(itr, sts); in parse() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | fstatvfs.c | 27 struct statvfs sts; in fstatvfs_0100() local 33 int result = fstatvfs(fd, &sts); in fstatvfs_0100() 40 if (sts.f_bsize != 4096U) { in fstatvfs_0100() 43 if (sts.f_bfree != 0U) { in fstatvfs_0100() 46 if (sts.f_ffree != 0U) { in fstatvfs_0100() 49 if (sts.f_fsid != 0U) { in fstatvfs_0100() 52 if (sts.f_namemax != 255U) { in fstatvfs_0100() 64 struct statvfs sts; in fstatvfs_0200() local 65 int result = fstatvfs(-1, &sts); in fstatvfs_0200()
|
/third_party/python/Tools/scripts/ |
D | md5sum.py | 27 sts = 0 37 sts = printsumfp(sys.stdin, '<stdin>', out) or sts 39 sts = printsum(f, out) or sts 41 sts = sum(f, out) or sts 42 return sts 53 sts = printsumfp(fp, filename, out) 54 return sts
|
D | which.py | 19 sts = 0 51 sts = os.system('ls ' + longlist + ' ' + filename) 52 sts = os.waitstatus_to_exitcode(sts) 53 if sts: msg('"ls -l" exit status: ' + repr(sts)) 56 sts = 1 58 sys.exit(sts)
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_texture.c | 79 etna_configure_sampler_ts(struct etna_sampler_ts *sts, struct pipe_sampler_view *pview, bool enable) in etna_configure_sampler_ts() argument 81 bool dirty = (sts->enable != enable); in etna_configure_sampler_ts() 83 assert(sts); in etna_configure_sampler_ts() 84 sts->enable = enable; in etna_configure_sampler_ts() 87 sts->TS_SAMPLER_CONFIG = 0; in etna_configure_sampler_ts() 88 sts->TS_SAMPLER_STATUS_BASE.bo = NULL; in etna_configure_sampler_ts() 95 if (lev->clear_value != sts->TS_SAMPLER_CLEAR_VALUE) in etna_configure_sampler_ts() 100 sts->mode = lev->ts_mode; in etna_configure_sampler_ts() 101 sts->comp = lev->ts_compress_fmt >= 0; in etna_configure_sampler_ts() 102 sts->TS_SAMPLER_CONFIG = in etna_configure_sampler_ts() [all …]
|
/third_party/boost/boost/geometry/srs/projections/proj/ |
D | sts.hpp | 55 namespace detail { namespace sts namespace 166 struct kav5_spheroid : public detail::sts::base_sts_spheroid<T, Parameters> 171 detail::sts::setup_kav5(par, this->m_proj_parm); in kav5_spheroid() 188 struct qua_aut_spheroid : public detail::sts::base_sts_spheroid<T, Parameters> 193 detail::sts::setup_qua_aut(par, this->m_proj_parm); in qua_aut_spheroid() 210 struct mbt_s_spheroid : public detail::sts::base_sts_spheroid<T, Parameters> 215 detail::sts::setup_mbt_s(par, this->m_proj_parm); in mbt_s_spheroid() 232 struct fouc_spheroid : public detail::sts::base_sts_spheroid<T, Parameters> 237 detail::sts::setup_fouc(par, this->m_proj_parm); in fouc_spheroid()
|
/third_party/musl/src/fenv/sh/ |
D | fenv.S | 6 sts fpscr, r0 14 sts fpscr, r0 23 sts fpscr, r0 34 sts fpscr, r0 45 sts fpscr, r4 54 sts fpscr, r0 68 sts fpscr, r0
|
/third_party/gstreamer/gstplugins_bad/sys/msdk/ |
D | msdk.c | 187 mfxStatus sts = MFX_ERR_NONE; in msdk_init_msdk_session() local 219 sts = in msdk_init_msdk_session() 223 if (sts != MFX_ERR_NONE) { in msdk_init_msdk_session() 225 msdk_status_to_string (sts)); in msdk_init_msdk_session() 227 return sts; in msdk_init_msdk_session() 232 sts = in msdk_init_msdk_session() 236 if (sts != MFX_ERR_NONE) { in msdk_init_msdk_session() 238 msdk_status_to_string (sts)); in msdk_init_msdk_session() 240 return sts; in msdk_init_msdk_session() 248 sts = MFXEnumImplementations (loader, impl_idx, in msdk_init_msdk_session() [all …]
|
/third_party/python/Python/ |
D | frozenmain.c | 25 int i, n, sts = 1; in Py_FrozenMain() local 105 sts = 1; in Py_FrozenMain() 108 sts = 0; in Py_FrozenMain() 111 sts = PyRun_AnyFile(stdin, "<stdin>") != 0; in Py_FrozenMain() 117 sts = 120; in Py_FrozenMain() 128 return sts; in Py_FrozenMain()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/ |
D | 1-1.c | 32 int val, sts; in main() local 43 sts = sem_timedwait(&mysemp, &ts); in main() 44 if (sts == -1) { in main() 56 if (val == 0 && sts == 0) { in main()
|
D | 4-1.c | 32 int unresolved = 0, sts; in main() local 43 sts = sem_timedwait(&mysemp, &ts); in main() 44 if (sts == -1) { in main() 55 if ((sts == 0) && (unresolved == 0)) { in main()
|
D | 11-1.c | 36 int val[2], sts[2]; in main() local 52 sts[i] = sem_timedwait(&mysemp[i], &ts[i]); in main() 53 if (sts[i] == -1) { in main() 65 if ((val[i] == 0) && (sts[i] == 0)) { in main()
|
D | 6-1.c | 33 int sts; in main() local 42 sts = sem_timedwait(&mysemp, &ts); in main() 44 if (errno == EINVAL && sts == -1) { in main()
|
D | 6-2.c | 35 int sts; in main() local 44 sts = sem_timedwait(&mysemp, &ts); in main() 46 if (errno == EINVAL && sts == -1) { in main()
|
D | 2-2.c | 35 int sts, val; in main() local 46 sts = sem_timedwait(&mysemp, &ts); in main() 58 if ((val == 1) && (sts == -1)) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_init/ |
D | 1-1.c | 30 int sts; in main() local 33 sts = sem_init(&mysemp, 0, 1); in main() 40 if ((sts == -1) && (val != 1)) { in main()
|
/third_party/curl/src/ |
D | tool_getpass.c | 70 long sts; in getpass_r() local 86 sts = sys$assign(&ttdesc, &chan, 0, 0); in getpass_r() 87 if(sts & 1) { in getpass_r() 88 sts = sys$qiow(0, chan, in getpass_r() 93 if((sts & 1) && (iosb.iosb$w_status & 1)) in getpass_r()
|
/third_party/ffmpeg/libavfilter/ |
D | ebur128.c | 514 static int ebur128_calc_relative_threshold(FFEBUR128State **sts, size_t size, in FF_EBUR128_ADD_FRAMES() 522 unsigned long *block_energy_histogram = sts[i]->d->block_energy_histogram; in FF_EBUR128_ADD_FRAMES() 537 static int ebur128_gated_loudness(FFEBUR128State ** sts, size_t size, in ebur128_gated_loudness() argument 546 if ((sts[i]->mode & FF_EBUR128_MODE_I) != FF_EBUR128_MODE_I) in ebur128_gated_loudness() 549 if (!ebur128_calc_relative_threshold(sts, size, &relative_threshold)) { in ebur128_gated_loudness() 565 gated_loudness += sts[i]->d->block_energy_histogram[j] * in ebur128_gated_loudness() 567 above_thresh_counter += sts[i]->d->block_energy_histogram[j]; in ebur128_gated_loudness() 631 int ff_ebur128_loudness_range_multiple(FFEBUR128State ** sts, size_t size, in ff_ebur128_loudness_range_multiple() argument 644 if (sts[i]) { in ff_ebur128_loudness_range_multiple() 645 if ((sts[i]->mode & FF_EBUR128_MODE_LRA) != in ff_ebur128_loudness_range_multiple() [all …]
|
/third_party/openssl/apps/ |
D | vms_decc_init.c | 75 int sts; in decc_init() local 105 sts = decc$feature_set_value(feat_index, in decc_init() 111 decc_feat_array[i].value, sts); in decc_init()
|