/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
D | PeriodFormatterData.java | 38 final DataRecord dr; field in PeriodFormatterData 44 public PeriodFormatterData(String localeName, DataRecord dr) { in PeriodFormatterData() argument 45 this.dr = dr; in PeriodFormatterData() 51 if (dr == null) { in PeriodFormatterData() 70 return dr.pl; in pluralization() 78 return dr.allowZero; in allowZero() 82 return dr.weeksAloneOnly; in weeksAloneOnly() 86 return dr.useMilliseconds; in useMilliseconds() 99 if (dr.scopeData != null) { in appendPrefix() 101 ScopeData sd = dr.scopeData[ix]; in appendPrefix() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
D | PeriodFormatterData.java | 36 final DataRecord dr; field in PeriodFormatterData 42 public PeriodFormatterData(String localeName, DataRecord dr) { in PeriodFormatterData() argument 43 this.dr = dr; in PeriodFormatterData() 49 if (dr == null) { in PeriodFormatterData() 68 return dr.pl; in pluralization() 76 return dr.allowZero; in allowZero() 80 return dr.weeksAloneOnly; in weeksAloneOnly() 84 return dr.useMilliseconds; in useMilliseconds() 97 if (dr.scopeData != null) { in appendPrefix() 99 ScopeData sd = dr.scopeData[ix]; in appendPrefix() [all …]
|
/third_party/skia/tools/skdiff/ |
D | skdiff.cpp | 145 int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1); in colors_match_thresholded() local 150 (SkAbs32(dr) <= threshold) && in colors_match_thresholded() 158 void compute_diff(DiffRecord* dr, DiffMetricProc diffFunction, const int colorThreshold) { in compute_diff() argument 159 const int w = dr->fComparison.fBitmap.width(); in compute_diff() 160 const int h = dr->fComparison.fBitmap.height(); in compute_diff() 161 if (w != dr->fBase.fBitmap.width() || h != dr->fBase.fBitmap.height()) { in compute_diff() 162 dr->fResult = DiffRecord::kDifferentSizes_Result; in compute_diff() 174 dr->fWeightedFraction = 0; in compute_diff() 177 SkPMColor c0 = *dr->fBase.fBitmap.getAddr32(x, y); in compute_diff() 178 SkPMColor c1 = *dr->fComparison.fBitmap.getAddr32(x, y); in compute_diff() [all …]
|
/third_party/FatFs/documents/res/ |
D | app4.c | 48 DRESULT dr; in test_diskio() local 73 dr = disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_drv); in test_diskio() 74 if (dr == RES_OK) { in test_diskio() 90 dr = disk_ioctl(pdrv, GET_SECTOR_SIZE, &sz_sect); in test_diskio() 91 if (dr == RES_OK) { in test_diskio() 105 dr = disk_ioctl(pdrv, GET_BLOCK_SIZE, &sz_eblk); in test_diskio() 106 if (dr == RES_OK) { in test_diskio() 111 if (dr == RES_OK || sz_eblk >= 2) { in test_diskio() 122 dr = disk_write(pdrv, pbuff, lba, 1); in test_diskio() 123 if (dr == RES_OK) { in test_diskio() [all …]
|
/third_party/FreeBSD/sys/arm/arm/ |
D | nexus.c | 91 struct devclass_res *dr = NULL; in get_resource_list() local 95 TAILQ_FOREACH(dr, &devclass_resources, link) { in get_resource_list() 96 if (!strcmp(dr->devclass_name, devclass_name)) { in get_resource_list() 100 if (dr == NULL) { in get_resource_list() 101 dr = malloc(sizeof(struct devclass_res) + strlen(devclass_name) + 1); in get_resource_list() 102 if (dr == NULL) { in get_resource_list() 105 dr->devclass_name = (char *)(dr + 1); in get_resource_list() 106 (void)strcpy_s(dr->devclass_name, strlen(devclass_name) + 1, devclass_name); in get_resource_list() 107 resource_list_init(&dr->nx_resources); in get_resource_list() 108 TAILQ_INSERT_TAIL(&devclass_resources, dr, link); in get_resource_list() [all …]
|
/third_party/libffi/testsuite/libffi.bhaible/ |
D | test-call.c | 357 double dr; in double_tests() local 361 dr = d_d(d1); in double_tests() 362 fprintf(out,"->%g\n",dr); in double_tests() 364 dr = 0.0; clear_traces(); in double_tests() 371 FFI_CALL(cif,d_d,args,&dr); in double_tests() 374 fprintf(out,"->%g\n",dr); in double_tests() 379 dr = d_d2(d1,d2); in double_tests() 380 fprintf(out,"->%g\n",dr); in double_tests() 382 dr = 0.0; clear_traces(); in double_tests() 389 FFI_CALL(cif,d_d2,args,&dr); in double_tests() [all …]
|
D | test-callback.c | 1509 { double dr; in main() local 1512 dr = d_d(d1); in main() 1513 fprintf(out,"->%g\n",dr); in main() 1515 dr = 0.0; clear_traces(); in main() 1522 dr = ((double (ABI_ATTR *) (double)) callback_code) (d1); in main() 1525 fprintf(out,"->%g\n",dr); in main() 1530 dr = d_d2(d1,d2); in main() 1531 fprintf(out,"->%g\n",dr); in main() 1533 dr = 0.0; clear_traces(); in main() 1540 dr = ((double (ABI_ATTR *) (double,double)) callback_code) (d1,d2); in main() [all …]
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | cbrtl.c | 33 double_t dr, dt, dx; in cbrtl() local 85 dr = dt * dt * dt; in cbrtl() 86 dt = dt * (dx + dx + dr) / (dx + dr + dr); in cbrtl() 89 dr = dt * dt * dt; in cbrtl() 90 dt = dt * (dx + dx + dr) / (dx + dr + dr); in cbrtl()
|
/third_party/musl/src/math/ |
D | cbrtl.c | 33 double_t dr, dt, dx; in cbrtl() local 85 dr = dt * dt * dt; in cbrtl() 86 dt = dt * (dx + dx + dr) / (dx + dr + dr); in cbrtl() 89 dr = dt * dt * dt; in cbrtl() 90 dt = dt * (dx + dx + dr) / (dx + dr + dr); in cbrtl()
|
/third_party/libffi/testsuite/libffi.call/ |
D | pr1172638.c | 23 RECT dr __UNUSED__, RECT *er __UNUSED__, in pr_test() 47 RECT ar, br, dr, er, gr; in main() local 95 dr.left = 12; in main() 96 dr.right = 13; in main() 97 dr.top = 14; in main() 98 dr.bottom = 15; in main() 115 values[4] = &dr; in main()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9dsp_init_16bpp.c | 56 decl_ipred_fn(dr, 16, 16, avx2); 57 decl_ipred_fn(dr, 32, 16, avx2); 65 decl_ipred_dir_funcs(dr); 108 init_ipred_funcs(dr, DIAG_DOWN_RIGHT, 16, sse2); in ff_vp9dsp_init_16bpp_x86() 117 init_ipred_funcs(dr, DIAG_DOWN_RIGHT, 16, ssse3); in ff_vp9dsp_init_16bpp_x86() 129 init_ipred_funcs(dr, DIAG_DOWN_RIGHT, 16, avx); in ff_vp9dsp_init_16bpp_x86() 142 init_ipred_func(dr, DIAG_DOWN_RIGHT, 16, 16, avx2); in ff_vp9dsp_init_16bpp_x86() 144 init_ipred_func(dr, DIAG_DOWN_RIGHT, 32, 16, avx2); in ff_vp9dsp_init_16bpp_x86()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | linker_util.cpp | 369 _mark_array_elements_referenced(const struct array_deref_range *dr, in _mark_array_elements_referenced() argument 379 if (dr[i].index < dr[i].size) { in _mark_array_elements_referenced() 380 linearized_index += dr[i].index * scale; in _mark_array_elements_referenced() 381 scale *= dr[i].size; in _mark_array_elements_referenced() 391 for (unsigned j = 0; j < dr[i].size; j++) { in _mark_array_elements_referenced() 392 _mark_array_elements_referenced(&dr[i + 1], in _mark_array_elements_referenced() 394 scale * dr[i].size, in _mark_array_elements_referenced() 432 link_util_mark_array_elements_referenced(const struct array_deref_range *dr, in link_util_mark_array_elements_referenced() argument 439 _mark_array_elements_referenced(dr, count, 1, 0, bits); in link_util_mark_array_elements_referenced()
|
D | ir_array_refcount.cpp | 146 array_deref_range *const dr = get_array_deref(); in visit_enter() local 148 dr->size = array->type->array_size(); in visit_enter() 151 dr->index = idx->get_int_component(0); in visit_enter() 159 dr->index = dr->size; in visit_enter()
|
/third_party/FreeBSD/lib/msun/ld128/ |
D | k_expl.h | 243 double dr, fn, r2; in __k_expl() local 257 dr = r; in __k_expl() 259 dr * (A7 + dr * (A8 + dr * (A9 + dr * A10)))))))); in __k_expl()
|
D | s_expl.c | 209 double dr, dx, fn, r2; in expm1l() local 291 dr = r; in expm1l() 293 dr * (A7 + dr * (A8 + dr * (A9 + dr * A10)))))))); in expm1l()
|
/third_party/skia/gm/ |
D | hsl.cpp | 90 static void hue(float dr, float dg, float db, in hue() argument 96 set_sat(&R,&G,&B, sat(dr,dg,db)); in hue() 97 set_lum(&R,&G,&B, lum(dr,dg,db)); in hue() 103 static void saturation(float dr, float dg, float db, in saturation() argument 106 float R = dr, in saturation() 110 set_lum(&R,&G,&B, lum( dr, dg, db)); // This may seem redundant, but it is not. in saturation() 116 static void color(float dr, float dg, float db, in color() argument 122 set_lum(&R,&G,&B, lum(dr,dg,db)); in color() 128 static void luminosity(float dr, float dg, float db, in luminosity() argument 131 float R = dr, in luminosity()
|
/third_party/python/Lib/lib2to3/tests/ |
D | pytree_idempotency.py | 28 dr = driver.Driver(gr, convert=pytree.convert) 31 tree = dr.parse_file(fn, debug=True) 50 tree = dr.parse_file(fn, debug=True) 67 tree = dr.parse_file(fn, debug=True)
|
/third_party/mesa3d/src/compiler/glsl/tests/ |
D | array_refcount_test.cpp | 281 static const array_deref_range dr[] = { in TEST_F() local 286 link_util_mark_array_elements_referenced(dr, 3, entry.array_depth, in TEST_F() 302 static const array_deref_range dr[] = { in TEST_F() local 306 link_util_mark_array_elements_referenced(dr, 3, entry.array_depth, in TEST_F() 331 static const array_deref_range dr[] = { in TEST_F() local 335 link_util_mark_array_elements_referenced(dr, 3, entry.array_depth, in TEST_F() 360 static const array_deref_range dr[] = { in TEST_F() local 364 link_util_mark_array_elements_referenced(dr, 3, entry.array_depth, in TEST_F() 389 static const array_deref_range dr[] = { in TEST_F() local 393 link_util_mark_array_elements_referenced(dr, 3, entry.array_depth, in TEST_F()
|
/third_party/curl/tests/data/ |
D | test252 | 22 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 24 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 26 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
D | test1047 | 23 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 25 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 27 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
D | test244 | 21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
D | test353 | 21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
D | test352 | 21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
D | test350 | 21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
D | test100 | 21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|