/external/fio/ |
D | diskutil.c | 25 static void disk_util_free(struct disk_util *du) in disk_util_free() argument 27 if (du == last_du) in disk_util_free() 30 while (!flist_empty(&du->slaves)) { in disk_util_free() 33 slave = flist_first_entry(&du->slaves, struct disk_util, slavelist); in disk_util_free() 38 fio_mutex_remove(du->lock); in disk_util_free() 39 sfree(du); in disk_util_free() 42 static int get_io_ticks(struct disk_util *du, struct disk_util_stat *dus) in get_io_ticks() argument 51 dprint(FD_DISKUTIL, "open stat file: %s\n", du->path); in get_io_ticks() 53 f = fopen(du->path, "r"); in get_io_ticks() 63 dprint(FD_DISKUTIL, "%s: %s", du->path, p); in get_io_ticks() [all …]
|
D | diskutil.h | 73 static inline void disk_util_mod(struct disk_util *du, int val) in disk_util_mod() argument 75 if (du) { in disk_util_mod() 78 fio_mutex_down(du->lock); in disk_util_mod() 79 du->users += val; in disk_util_mod() 81 flist_for_each(n, &du->slavelist) { in disk_util_mod() 87 fio_mutex_up(du->lock); in disk_util_mod() 90 static inline void disk_util_inc(struct disk_util *du) in disk_util_inc() argument 92 disk_util_mod(du, 1); in disk_util_inc() 95 static inline void disk_util_dec(struct disk_util *du) in disk_util_dec() argument 97 disk_util_mod(du, -1); in disk_util_dec() [all …]
|
/external/icu/icu4c/source/data/zone/ |
D | fr_CA.txt | 25 ec{"Beulah [Dakota du Nord]"} 28 ec{"Center [Dakota du Nord]"} 31 ec{"New Salem, Dakota du Nord"} 63 ls{"heure normale d’Afrique du Sud"} 85 ld{"heure avancée du Centre"} 86 lg{"heure du Centre"} 87 ls{"heure normale du Centre"} 109 ld{"heure avancée du Pacifique"} 110 lg{"heure du Pacifique"} 111 ls{"heure normale du Pacifique"} [all …]
|
D | fr.txt | 478 ec{"Beulah (Dakota du Nord)"} 481 ec{"Center (Dakota du Nord)"} 484 ec{"New Salem (Dakota du Nord)"} 898 ec{"Géorgie du Sud"} 1303 ld{"heure d’été du Centre"} 1304 lg{"heure du centre nord-américain"} 1305 ls{"heure normale du centre nord-américain"} 1318 ld{"heure d’été du Pacifique"} 1319 lg{"heure du Pacifique nord-américain"} 1320 ls{"heure normale du Pacifique nord-américain"} [all …]
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_exec_eval.c | 149 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord1f() 168 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord1f() 194 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord2f() 216 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord2f() 224 GLfloat du[4], dv[4]; in vbo_exec_do_EvalCoord2f() local 226 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv, in vbo_exec_do_EvalCoord2f() 231 du[0] = du[0]*vertex[3] - du[3]*vertex[0]; in vbo_exec_do_EvalCoord2f() 232 du[1] = du[1]*vertex[3] - du[3]*vertex[1]; in vbo_exec_do_EvalCoord2f() 233 du[2] = du[2]*vertex[3] - du[3]*vertex[2]; in vbo_exec_do_EvalCoord2f() 241 CROSS3(normal, du, dv); in vbo_exec_do_EvalCoord2f()
|
D | vbo_exec_api.c | 641 GLfloat du = ((ctx->Eval.MapGrid1u2 - ctx->Eval.MapGrid1u1) / in vbo_exec_EvalPoint1() local 643 GLfloat u = i * du + ctx->Eval.MapGrid1u1; in vbo_exec_EvalPoint1() 652 GLfloat du = ((ctx->Eval.MapGrid2u2 - ctx->Eval.MapGrid2u1) / in vbo_exec_EvalPoint2() local 656 GLfloat u = i * du + ctx->Eval.MapGrid2u1; in vbo_exec_EvalPoint2() 668 GLfloat u, du; in vbo_exec_EvalMesh1() local 692 du = ctx->Eval.MapGrid1du; in vbo_exec_EvalMesh1() 693 u = ctx->Eval.MapGrid1u1 + i1 * du; in vbo_exec_EvalMesh1() 696 for (i=i1;i<=i2;i++,u+=du) { in vbo_exec_EvalMesh1() 707 GLfloat u, du, v, dv, v1, u1; in vbo_exec_EvalMesh2() local 729 du = ctx->Eval.MapGrid2du; in vbo_exec_EvalMesh2() [all …]
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/ |
D | Profiler.java | 189 DurationUnit du = Util.selectDurationUnitForDisplay(globalStopWatch); in toString() local 190 return buildProfilerString(du, TOP_PROFILER_FIRST_PREFIX, TOTAL_ELAPSED, ""); in toString() 199 DurationUnit du = Util.selectDurationUnitForDisplay(globalStopWatch); in log() local 200 String r = buildProfilerString(du, TOP_PROFILER_FIRST_PREFIX, TOTAL_ELAPSED, ""); in log() 227 …private String buildProfilerString(DurationUnit du, String firstPrefix, String label, String inden… in buildProfilerString() argument 237 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, (StopWatch) child); in buildProfilerString() 240 …String subString = profiler.buildProfilerString(du, NESTED_PROFILER_FIRST_PREFIX, SUBTOTAL_ELAPSED… in buildProfilerString() 242 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, profiler.globalStopWatch); in buildProfilerString() 245 buildStopWatchString(buf, du, label, indentation, globalStopWatch); in buildProfilerString() 249 …private static void buildStopWatchString(StringBuilder buf, DurationUnit du, String prefix, String… in buildStopWatchString() argument [all …]
|
D | Util.java | 72 DurationUnit du = selectDurationUnitForDisplay(sw); in durationInDurationUnitsAsStr() local 73 return durationInDurationUnitsAsStr(sw.elapsedTime(), du); in durationInDurationUnitsAsStr()
|
/external/dng_sdk/source/ |
D | dng_temperature.cpp | 94 real64 du = 1.0; in Set_xy_coord() local 99 du /= len; in Set_xy_coord() 109 real64 dt = - uu * dv + vv * du; in Set_xy_coord() 149 du = du * (1.0 - f) + last_du * f; in Set_xy_coord() 152 len = sqrt (du * du + dv * dv); in Set_xy_coord() 154 du /= len; in Set_xy_coord() 159 fTint = (uu * du + vv * dv) * kTintScale; in Set_xy_coord() 169 last_du = du; in Set_xy_coord()
|
/external/eigen/blas/f2c/ |
D | drotmg.c | 37 doublereal du, dp1, dp2, dq1, dq2, dh11, dh12, dh21, dh22; in drotmg_() local 127 du = one - dh12 * dh21; in drotmg_() 129 if (! (du <= zero)) { in drotmg_() 136 *dd1 /= du; in drotmg_() 137 *dd2 /= du; in drotmg_() 138 *dx1 *= du; in drotmg_() 151 du = one + dh11 * dh22; in drotmg_() 152 dtemp = *dd2 / du; in drotmg_() 153 *dd2 = *dd1 / du; in drotmg_() 155 *dx1 = *dy1 * du; in drotmg_()
|
/external/opencv3/modules/stitching/src/opencl/ |
D | warpers.cl | 51 int du = get_global_id(0); 54 if (du < cols) 56 int xmap_index = mad24(dv0, xmap_step, mad24(du, (int)sizeof(float), xmap_offset)); 57 int ymap_index = mad24(dv0, ymap_step, mad24(du, (int)sizeof(float), ymap_offset)); 59 float u = tl_u + du; 91 int du = get_global_id(0); 94 if (du < cols) 96 int xmap_index = mad24(dv0, xmap_step, mad24(du, (int)sizeof(float), xmap_offset)); 97 int ymap_index = mad24(dv0, ymap_step, mad24(du, (int)sizeof(float), ymap_offset)); 99 float u = (tl_u + du) * scale; [all …]
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | NCVBroxOpticalFlow.cu | 218 …sivity_along_x(float *s, int pos, const float *u, const float *v, const float *du, const float *dv) in diffusivity_along_x() argument 222 float u_x = u[pos] + du[pos] - u[left] - du[left]; in diffusivity_along_x() 229 …float u_y = 0.25f*(u[up] + du[up] + u[up_left] + du[up_left] - u[down] - du[down] - u[down_left] -… in diffusivity_along_x() 243 …sivity_along_y(float *s, int pos, const float *u, const float *v, const float *du, const float *dv) in diffusivity_along_y() argument 247 float u_y = u[pos] + du[pos] - u[down] - du[down]; in diffusivity_along_y() 254 …at u_x = 0.25f*(u[right] + u[down_right] + du[right] + du[down_right] - u[left] - u[down_left] - d… in diffusivity_along_y() 395 __shared__ float du[PSOR_PITCH * PSOR_HEIGHT]; in prepare_sor_stage_1_tex() local 413 load_array<2>(du, ig, jg, w, h, s); in prepare_sor_stage_1_tex() 431 q0 = Iz + Ix * du[ijs] + Iy * dv[ijs]; in prepare_sor_stage_1_tex() 432 q1 = Ixz + Ixx * du[ijs] + Ixy * dv[ijs]; in prepare_sor_stage_1_tex() [all …]
|
/external/icu/icu4c/source/data/region/ |
D | fr.txt | 13 003{"Amérique du Nord"} 14 005{"Amérique du Sud"} 26 034{"Asie du Sud"} 27 035{"Asie du Sud-Est"} 136 GS{"Géorgie du Sud et îles Sandwich du Sud"} 168 KP{"Corée du Nord"} 169 KR{"Corée du Sud"} 196 MP{"Îles Mariannes du Nord"} 256 SS{"Soudan du Sud"} 285 VA{"État de la Cité du Vatican"} [all …]
|
/external/google-breakpad/src/client/mac/sender/da.lproj/ |
D | Localizable.strings | 3 …Systemet og andre programmer er uskadte. En rapport som du kan sende til %@ er blevet lavet og du … 6 …= "Systemet og andre programmer er uskadte. En rapport du kan sende til %1$@ er blevet lavet og du…
|
/external/google-breakpad/src/client/mac/sender/sv.lproj/ |
D | Localizable.strings | 3 …te påverkat systemet eller några andra program. En rapport har skapats som du kan skicka till %@ f… 6 …te påverkat systemet eller några andra program. En rapport har skapats som du kan skicka till %1$@… 8 "commentsMsg" = "Hjälp oss gärna att lösa det här problemet genom att beskriva vad du gjorde innan … 9 "emailMsg" = "Om du anger din e-postadress kan vi kontakta dig om vi behöver mer detaljer kring pro…
|
/external/opencv3/modules/stitching/src/cuda/ |
D | build_warp_maps.cu | 141 int du = blockIdx.x * blockDim.x + threadIdx.x; in buildWarpMapsKernel() local 143 if (du < cols && dv < rows) in buildWarpMapsKernel() 145 float u = tl_u + du; in buildWarpMapsKernel() 149 map_x.ptr(dv)[du] = x; in buildWarpMapsKernel() 150 map_y.ptr(dv)[du] = y; in buildWarpMapsKernel()
|
/external/avahi/po/ |
D | fr.po | 103 msgstr "Erreur du système d'exploitation" 280 msgstr "Nom du service :" 324 msgstr "Nom du service sélectionné" 332 msgstr "L'adresse du service résolu" 340 msgstr "Le numéro du port IP du service résolu" 348 msgstr "Le nom d'hôte du service résolu" 356 msgstr "Les données TXT du service résolu" 364 msgstr "Résolution automatiquement du service sélectionné avant renvoi" 368 msgstr "Résolution du nom d'hôte du service" 374 "Résolution automatique du nom d'hôte du service sélectionné avant renvoi" [all …]
|
/external/eigen/Eigen/src/Core/products/ |
D | GeneralMatrixVector.h | 182 _EIGEN_ACCUMULATE_PACKETS(d,du,d); 221 _EIGEN_ACCUMULATE_PACKETS(d,du,du); 226 _EIGEN_ACCUMULATE_PACKETS(du,du,du); 446 _EIGEN_ACCUMULATE_PACKETS(d,du,d); 487 _EIGEN_ACCUMULATE_PACKETS(d,du,du); 492 _EIGEN_ACCUMULATE_PACKETS(du,du,du);
|
/external/autotest/client/profilers/powertop/src/po/ |
D | fr.po | 48 msgstr " -t, --time=DOUBLE durée par défaut du recueil des données, en secondes\n" 162 msgstr "<cœur du noyau>" 175 "Un périphérique USB est actif %4.1f%% du temps:\n" 180 msgstr "Nom du périphérique actif" 225 "l'option de configuration du noyau CONFIG_TIMER_STATS\n" 304 "pcscd a tendance à maintenir le sous-système USB hors du mode d'économie\n" 312 "Suggestion : désactivez l'option de configuration du noyau CONFIG_IRQBALANCE.\n" 313 "Le répartiteur d'IRQ du noyau est obsolète et réveille la CPU beaucoup plus \n" 354 "du noyau dans le fichier de configuration de grub." 370 "Suggestion : activez l'option de configuration du noyau CONFIG_ACPI_BATTERY.\n" [all …]
|
/external/mesa3d/src/mesa/math/ |
D | m_eval.c | 195 _math_de_casteljau_surf(GLfloat * cn, GLfloat * out, GLfloat * du, in _math_de_casteljau_surf() argument 218 du[k] = vs * (CN(1, 0, k) - CN(0, 0, k)) + in _math_de_casteljau_surf() 260 du[k] = vs * DCN(1, 0) + v * DCN(1, 1); in _math_de_casteljau_surf() 293 du[k] = DCN(1, 0) - DCN(0, 0); in _math_de_casteljau_surf() 325 du[k] = vs * (DCN(1, 0) - DCN(0, 0)) + v * (DCN(1, 1) - DCN(0, 1)); in _math_de_casteljau_surf() 383 du[k] = vs * DCN(2, 0) + v * DCN(2, 1); in _math_de_casteljau_surf() 435 du[k] = DCN(1, 0) - DCN(0, 0); in _math_de_casteljau_surf()
|
/external/icu/icu4j/perf-tests/data/conversion/ |
D | french.txt | 13 …rition du standard Unicode, ainsi que la disponibilité d'outils le gérant, sont parmi les faits le… 16 À propos du Consortium Unicode 18 …our mission de développer, d'étendre et de promouvoir Unicode. Les membres du consortium sont issu…
|
/external/google-breakpad/src/client/mac/sender/no.lproj/ |
D | Localizable.strings | 3 …andre programmer har ikke blitt påvirket. En rapport er blitt utformet som du kan sende til %@ for… 6 …andre programmer har ikke blitt påvirket. En rapport er blitt utformet som du kan sende til %1$@ f…
|
/external/icu/icu4c/source/data/lang/ |
D | fr.txt | 19 colStrength{"Priorité du tri"} 46 alt{"altaï du Sud"} 181 frr{"frison du Nord"} 229 ii{"yi du Sichuan"} 303 lrc{"lori du Nord"} 357 nd{"ndébélé du Nord"} 374 nr{"ndébélé du Sud"} 375 nso{"sotho du Nord"} 436 sdh{"kurde du Sud"} 437 se{"sami du Nord"} [all …]
|
/external/llvm/ |
D | Makefile | 246 $(Verb) du -sk $(LibDir) 247 $(Verb) du -sk $(ToolDir) 248 $(Verb) du -sk $(ExmplDir) 249 $(Verb) du -sk $(ObjDir)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ref/ |
D | ref.css | 228 .du-command { font-family: monospace; } 229 .du-option { font-family: avantgarde, sans-serif; } 230 .du-filevar { font-family: avantgarde, sans-serif; 232 .du-xxx:before { content: "** "; 234 .du-xxx:after { content: " **";
|