Home
last modified time | relevance | path

Searched refs:du (Results 1 – 25 of 260) sorted by relevance

1234567891011

/third_party/icu/icu4c/source/data/zone/
Dfr_CA.txt19 ec{"Beulah [Dakota du Nord]"}
22 ec{"Center [Dakota du Nord]"}
25 ec{"New Salem, Dakota du Nord"}
81 ls{"heure normale d’Afrique du Sud"}
104 ld{"heure avancée du Centre"}
105 lg{"heure du Centre"}
106 ls{"heure normale du Centre"}
128 ld{"heure avancée du Pacifique"}
129 lg{"heure du Pacifique"}
130 ls{"heure normale du Pacifique"}
[all …]
Dfr.txt475 ec{"Beulah (Dakota du Nord)"}
478 ec{"Center (Dakota du Nord)"}
481 ec{"New Salem (Dakota du Nord)"}
910 ec{"Géorgie du Sud"}
1333 ld{"heure d’été du centre nord-américain"}
1334 lg{"heure du centre nord-américain"}
1335 ls{"heure normale du centre nord-américain"}
1348 ld{"heure d’été du Pacifique nord-américain"}
1349 lg{"heure du Pacifique nord-américain"}
1350 ls{"heure normale du Pacifique nord-américain"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/zone/
Dfr_CA.txt19 ec{"Beulah [Dakota du Nord]"}
22 ec{"Center [Dakota du Nord]"}
25 ec{"New Salem, Dakota du Nord"}
75 ls{"heure normale d’Afrique du Sud"}
98 ld{"heure avancée du Centre"}
99 lg{"heure du Centre"}
100 ls{"heure normale du Centre"}
122 ld{"heure avancée du Pacifique"}
123 lg{"heure du Pacifique"}
124 ls{"heure normale du Pacifique"}
[all …]
Dfr.txt475 ec{"Beulah (Dakota du Nord)"}
478 ec{"Center (Dakota du Nord)"}
481 ec{"New Salem (Dakota du Nord)"}
913 ec{"Géorgie du Sud"}
1333 ld{"heure d’été du Centre"}
1334 lg{"heure du centre nord-américain"}
1335 ls{"heure normale du centre nord-américain"}
1348 ld{"heure d’été du Pacifique"}
1349 lg{"heure du Pacifique nord-américain"}
1350 ls{"heure normale du Pacifique nord-américain"}
[all …]
/third_party/mesa3d/src/mesa/vbo/
Dvbo_exec_eval.c134 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord1f()
154 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord1f()
181 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord2f()
204 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord2f()
212 GLfloat du[4], dv[4]; in vbo_exec_do_EvalCoord2f() local
214 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv, in vbo_exec_do_EvalCoord2f()
219 du[0] = du[0]*vertex[3] - du[3]*vertex[0]; in vbo_exec_do_EvalCoord2f()
220 du[1] = du[1]*vertex[3] - du[3]*vertex[1]; in vbo_exec_do_EvalCoord2f()
221 du[2] = du[2]*vertex[3] - du[3]*vertex[2]; in vbo_exec_do_EvalCoord2f()
229 CROSS3(&normal[0].f, du, dv); in vbo_exec_do_EvalCoord2f()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_temperature.cpp94 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()
/third_party/skia/third_party/externals/icu/source/data/region/
Dfr.txt8 003{"Amérique du Nord"}
9 005{"Amérique du Sud"}
21 034{"Asie du Sud"}
22 035{"Asie du Sud-Est"}
23 039{"Europe du Sud"}
33 154{"Europe du Nord"}
132 GS{"Géorgie du Sud-et-les Îles Sandwich du Sud"}
164 KP{"Corée du Nord"}
165 KR{"Corée du Sud"}
187 MK{"Macédoine du Nord"}
[all …]
/third_party/icu/icu4c/source/data/region/
Dfr.txt8 003{"Amérique du Nord"}
9 005{"Amérique du Sud"}
21 034{"Asie du Sud"}
22 035{"Asie du Sud-Est"}
23 039{"Europe du Sud"}
33 154{"Europe du Nord"}
132 GS{"Géorgie du Sud-et-les Îles Sandwich du Sud"}
164 KP{"Corée du Nord"}
165 KR{"Corée du Sud"}
187 MK{"Macédoine du Nord"}
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_chromakey.c53 int du, dv, i; in do_chromakey_pixel() local
56 du = (int)u[i] - ctx->chromakey_uv[0]; in do_chromakey_pixel()
59 diff += sqrt((du * du + dv * dv) / (255.0 * 255.0 * 2)); in do_chromakey_pixel()
75 int du, dv, i; in do_chromakey_pixel16() local
78 du = (int)u[i] - ctx->chromakey_uv[0]; in do_chromakey_pixel16()
81 diff += sqrt((du * du + dv * dv) / (max * max * 2)); in do_chromakey_pixel16()
195 int du, dv; in do_chromahold_slice() local
197 du = u - ctx->chromakey_uv[0]; in do_chromahold_slice()
200 diff = sqrt((du * du + dv * dv) / (255.0 * 255.0 * 2.0)); in do_chromahold_slice()
234 int du, dv; in do_chromahold16_slice() local
[all …]
Dvf_v360.c407 static void nearest_kernel(float du, float dv, const XYRemap *rmap, in nearest_kernel() argument
411 const int j = lrintf(du) + 1; in nearest_kernel()
427 static void bilinear_kernel(float du, float dv, const XYRemap *rmap, in bilinear_kernel() argument
437 ker[0] = lrintf((1.f - du) * (1.f - dv) * 16385.f); in bilinear_kernel()
438 ker[1] = lrintf( du * (1.f - dv) * 16385.f); in bilinear_kernel()
439 ker[2] = lrintf((1.f - du) * dv * 16385.f); in bilinear_kernel()
440 ker[3] = lrintf( du * dv * 16385.f); in bilinear_kernel()
466 static void lagrange_kernel(float du, float dv, const XYRemap *rmap, in lagrange_kernel() argument
472 calculate_lagrange_coeffs(du, du_coeffs); in lagrange_kernel()
511 static void bicubic_kernel(float du, float dv, const XYRemap *rmap, in bicubic_kernel() argument
[all …]
/third_party/openGLES/extensions/ATI/
DATI_envmap_bumpmap.txt32 read on a bumpmap (du,dv) texture to offset the texture coordinates
33 read into a map on another texture unit. This (du,dv) offset is also
37 A new texture format is introduced in order for specifying the (du,dv)
38 bumpmap texture. This map represents -1 <= du,dv <= 1 offsets to
40 map. Additionally, the (du,dv) offsets are transformed by a rotation
173 each (du, dv) coordinate read from the bumpmap is specified
202 The (du,dv) offset map specified on the texture unit with BUMP_ENVMAP_ATI
204 BUMP_TARGET_ATI unit. The (du,dv) texel will be fetched from the bumpmap
205 at the texture coordinate specified for the bumpmap. This (du,dv) texel
208 du' = du * Rot[00] + dv * Rot[01]
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ATI/
DATI_envmap_bumpmap.txt32 read on a bumpmap (du,dv) texture to offset the texture coordinates
33 read into a map on another texture unit. This (du,dv) offset is also
37 A new texture format is introduced in order for specifying the (du,dv)
38 bumpmap texture. This map represents -1 <= du,dv <= 1 offsets to
40 map. Additionally, the (du,dv) offsets are transformed by a rotation
173 each (du, dv) coordinate read from the bumpmap is specified
202 The (du,dv) offset map specified on the texture unit with BUMP_ENVMAP_ATI
204 BUMP_TARGET_ATI unit. The (du,dv) texel will be fetched from the bumpmap
205 at the texture coordinate specified for the bumpmap. This (du,dv) texel
208 du' = du * Rot[00] + dv * Rot[01]
[all …]
/third_party/skia/third_party/externals/icu/source/data/locales/
Dfr_CH.txt59 fallback{"du {0} au {1}"}
116 evening1{"du soir"}
118 morning1{"du mat."}
119 night1{"du mat."}
124 evening1{"du soir"}
126 morning1{"du mat."}
127 night1{"du mat."}
Dse_FI.txt223 "du",
241 "du",
261 "du",
279 "du",
1012 "-1"{"mannan du"}
1013 "0"{"dán du"}
1014 "1"{"boahtte du"}
1018 one{"{0} boahtte du"}
1019 other{"+{0} boahtte du"}
1023 one{"{0} mannan du"}
[all …]
/third_party/icu/icu4c/source/data/locales/
Dfr_CH.txt59 fallback{"du {0} au {1}"}
126 evening1{"du soir"}
128 morning1{"du mat."}
129 night1{"du mat."}
134 evening1{"du soir"}
136 morning1{"du mat."}
137 night1{"du mat."}
/third_party/skia/third_party/externals/icu/source/data/curr/
Dfr_CA.txt124 "riyal du Qatar",
140 "dollar du Suriname",
235 one{"riyal du Qatar"}
236 other{"riyals du Qatar"}
243 one{"dollar du Suriname"}
244 other{"dollars du Suriname"}
/third_party/icu/icu4c/source/data/curr/
Dfr_CA.txt124 "riyal du Qatar",
140 "dollar du Suriname",
235 one{"riyal du Qatar"}
236 other{"riyals du Qatar"}
243 one{"dollar du Suriname"}
244 other{"dollars du Suriname"}
/third_party/ffmpeg/tools/
Dmurge8 colordiff -du $* murge.ours murge.theirs
9 grep . murge.common > /dev/null && colordiff -du $* murge.common murge.theirs
10 grep . murge.common > /dev/null && colordiff -du $* murge.common murge.ours
/third_party/icu/icu4c/source/data/lang/
Dfr.txt14 colStrength{"priorité du tri"}
43 alt{"altaï du Sud"}
137 crj{"cri de l’Est (dialecte du Sud)"}
139 crl{"cri de l’Est (dialecte du Nord)"}
189 es_MX{"espagnol du Mexique"}
249 hax{"haïda du Sud"}
272 ii{"yi du Sichuan"}
363 lrc{"lori du Nord"}
425 nd{"ndébélé du Nord"}
444 nr{"ndébélé du Sud"}
[all …]
/third_party/spirv-tools/test/opt/
Ddef_use_test.cpp186 InstDefUse du; member
204 CheckDef(tc.du, manager.id_to_defs()); in TEST_P()
205 CheckUse(tc.du, &manager, context->module()->IdBound()); in TEST_P()
587 InstDefUse du; member
627 CheckDef(tc.du, context->get_def_use_mgr()->id_to_defs()); in TEST_P()
628 CheckUse(tc.du, context->get_def_use_mgr(), context->module()->IdBound()); in TEST_P()
957 InstDefUse du; member
979 CheckDef(tc.du, context->get_def_use_mgr()->id_to_defs()); in TEST_P()
980 CheckUse(tc.du, context->get_def_use_mgr(), context->module()->IdBound()); in TEST_P()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Ddef_use_test.cpp186 InstDefUse du; member
204 CheckDef(tc.du, manager.id_to_defs()); in TEST_P()
205 CheckUse(tc.du, &manager, context->module()->IdBound()); in TEST_P()
587 InstDefUse du; member
627 CheckDef(tc.du, context->get_def_use_mgr()->id_to_defs()); in TEST_P()
628 CheckUse(tc.du, context->get_def_use_mgr(), context->module()->IdBound()); in TEST_P()
957 InstDefUse du; member
979 CheckDef(tc.du, context->get_def_use_mgr()->id_to_defs()); in TEST_P()
980 CheckUse(tc.du, context->get_def_use_mgr(), context->module()->IdBound()); in TEST_P()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Ddef_use_test.cpp186 InstDefUse du; member
204 CheckDef(tc.du, manager.id_to_defs()); in TEST_P()
205 CheckUse(tc.du, &manager, context->module()->IdBound()); in TEST_P()
587 InstDefUse du; member
627 CheckDef(tc.du, context->get_def_use_mgr()->id_to_defs()); in TEST_P()
628 CheckUse(tc.du, context->get_def_use_mgr(), context->module()->IdBound()); in TEST_P()
957 InstDefUse du; member
979 CheckDef(tc.du, context->get_def_use_mgr()->id_to_defs()); in TEST_P()
980 CheckUse(tc.du, context->get_def_use_mgr(), context->module()->IdBound()); in TEST_P()
/third_party/libphonenumber/resources/carrier/en/
D971.txt18 97152|du
20 97155|du
22 97158|du
/third_party/pulseaudio/po/
Dfr.po151 " Indiquer la cible du journal\n"
152 " --log-meta[=BOOL] Inclure l’emplacement du code dans "
174 " -L, --load=\"MODULE ARGUMENTS\" Charger le module du greffon "
182 " -n Ne pas charger le fichier du script "
228 "Cible du journal invalide : veuillez utiliser « syslog », "
237 "Cible du journal invalide : veuillez utiliser « syslog »,« stderr » ou "
273 msgstr "[%s:%u] Cible du journal « %s » invalide."
278 msgstr "[%s:%u] Niveau du journal « %s » invalide."
318 msgstr "[%s:%u] Taille du fragment « %s » invalide."
333 msgstr "Échec lors de l’ouverture du fichier de configuration : %s"
[all …]
/third_party/libphonenumber/resources/geocoding/en/
D689.txt15 689404|Îles du Vent(IDV)
16 689405|Îles du Vent(IDV)
18 689408|Îles du Vent(IDV)

1234567891011