/third_party/python/Lib/test/ |
D | test_uu.py | 12 import uu 63 uu.encode(inp, out, "t1") 67 uu.encode(inp, out, "t1", 0o644) 71 uu.encode(inp, out, "t1", backtick=True) 74 uu.encode(inp, out, "t1", 0o644, True) 80 uu.decode(inp, out) 88 uu.decode(inp, out) 95 uu.decode(inp, out) 97 except uu.Error as e: 104 uu.decode(inp, out) [all …]
|
D | test_userdict.py | 24 uu = collections.UserDict(u) 54 all = [d0, d1, d2, u, u0, u1, u2, uu, uu0, uu1, uu2]
|
/third_party/pulseaudio/src/tests/ |
D | mix-test.c | 137 uint16_t uu = PA_MAYBE_UINT16_SWAP(ss->format != PA_SAMPLE_S16NE, *u); in compare_block() local 138 fail_unless(uu == *v); in compare_block() 151 float uu = ss->format == PA_SAMPLE_FLOAT32NE ? *u : PA_READ_FLOAT32RE(u); in compare_block() local 152 fail_unless(fabsf(uu - *v) <= 1e-6f); in compare_block() 165 uint32_t uu = PA_MAYBE_UINT32_SWAP(ss->format != PA_SAMPLE_S32NE, *u); in compare_block() local 166 fail_unless(uu == *v); in compare_block() 179 uint32_t uu = PA_MAYBE_UINT32_SWAP(ss->format != PA_SAMPLE_S24_32NE, *u); in compare_block() local 180 fail_unless(uu == *v); in compare_block() 193 uint32_t uu = ss->format == PA_SAMPLE_S24LE ? PA_READ24LE(u) : PA_READ24BE(u); in compare_block() local 194 fail_unless(uu == PA_READ24BE(v)); in compare_block()
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_exec_eval.c | 134 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord1f() local 140 _math_horner_bezier_curve(map->Points, &data[0].f, uu, in vbo_exec_do_EvalCoord1f() 154 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord1f() local 159 _math_horner_bezier_curve(map->Points, vertex, uu, in vbo_exec_do_EvalCoord1f() 181 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord2f() local 190 uu, vv, in vbo_exec_do_EvalCoord2f() 204 GLfloat uu = (u - map->u1) * map->du; in vbo_exec_do_EvalCoord2f() local 214 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv, in vbo_exec_do_EvalCoord2f() 239 _math_horner_bezier_surf(map->Points, vertex, uu, vv, in vbo_exec_do_EvalCoord2f()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-arabic-joining-list.py | 33 uu = fields[0].split ('..') 34 start = int (uu[0], 16) 35 if len (uu) == 1: 38 end = int (uu[1], 16)
|
D | gen-arabic-table.py | 36 uu = fields[0].split ('..') 37 start = int (uu[0], 16) 38 if len (uu) == 1: 41 end = int (uu[1], 16) 78 uu = sorted(values.keys()) 80 all_blocks = set([blocks[u] for u in uu]) 84 for u in uu:
|
D | gen-indic-table.py | 57 uu = fields[0].split ('..') variable 58 start = int (uu[0], 16) 59 if len (uu) == 1: 62 end = int (uu[1], 16) 196 uu = sorted (data.keys ()) variable 204 for u in uu: 211 while end in uu and block == data[end][2]:
|
D | gen-use-table.py | 55 uu = fields[0].split ('..') variable 56 start = int (uu[0], 16) 57 if len (uu) == 1: 60 end = int (uu[1], 16) 471 uu = sorted (data.keys ()) variable 491 for u in uu: 500 while end in uu and block == data[end][1]:
|
D | gen-vowel-constraints.py | 36 uu = fields[0].split ('..') variable 37 start = int (uu[0], 16) 38 if len (uu) == 1: 41 end = int (uu[1], 16)
|
/third_party/python/Doc/library/ |
D | uu.rst | 1 :mod:`uu` --- Encode and decode uuencode files 4 .. module:: uu 9 **Source code:** :source:`Lib/uu.py` 28 The :mod:`uu` module defines the following functions: 49 exists, a :exc:`uu.Error` is raised. 58 Subclass of :exc:`Exception`, this can be raised by :func:`uu.decode` under
|
D | netdata.rst | 23 uu.rst
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_temperature.cpp | 104 real64 uu = u - kTempTable [index] . u; in Set_xy_coord() local 109 real64 dt = - uu * dv + vv * du; in Set_xy_coord() 141 uu = u - (kTempTable [index - 1] . u * f + in Set_xy_coord() 159 fTint = (uu * du + vv * dv) * kTintScale; in Set_xy_coord()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | id3v2.c | 155 guint8 *out, *uu; in id3v2_ununsync_data() local 158 uu = out = g_malloc (*size); in id3v2_ununsync_data() 160 for (end = unsync_data + *size; unsync_data < end - 1; ++unsync_data, ++uu) { in id3v2_ununsync_data() 161 *uu = *unsync_data; in id3v2_ununsync_data() 168 *uu = *unsync_data; in id3v2_ununsync_data() 169 ++uu; in id3v2_ununsync_data() 172 out_size = uu - out; in id3v2_ununsync_data()
|
/third_party/toybox/toys/posix/ |
D | grep.c | 286 unsigned *uu = (void *)(dl->data+(strlen(dl->data)|3)+1); in do_grep() local 288 outline(dl->data, '-', name, lcount-before, uu[0]+1, uu[1]); in do_grep() 329 unsigned *uu, ul = (ulen|3)+1; in do_grep() local 332 uu = (void *)(line+ul); in do_grep() 333 uu[0] = offset-len; in do_grep() 334 uu[1] = ulen; in do_grep()
|
/third_party/icu/icu4c/source/data/translit/ |
D | Latin_InterIndic.txt | 81 $uu=\uE042; 153 $x=[$virama$aa$ai$au$ii$i$uu$u$rrh$rh$lh$e$o$se$ce$so$co]; 169 \u0314u\u0304→$uu; 190 $consonants{ u\u0304→$uu; 306 #$virama uu→$uu; 307 $virama u\u0304→$uu; 332 #$virama''uu→$wuu;
|
D | my_my_Latn.txt | 203 # \u1030း > uu; 204 \u1030\u1038 > uu; 238 # \u1030 > uu; 239 \u1030 > uu;
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | Latin_InterIndic.txt | 81 $uu=\uE042; 153 $x=[$virama$aa$ai$au$ii$i$uu$u$rrh$rh$lh$e$o$se$ce$so$co]; 169 \u0314u\u0304→$uu; 190 $consonants{ u\u0304→$uu; 306 #$virama uu→$uu; 307 $virama u\u0304→$uu; 332 #$virama''uu→$wuu;
|
D | my_my_Latn.txt | 203 # \u1030း > uu; 204 \u1030\u1038 > uu; 238 # \u1030 > uu; 239 \u1030 > uu;
|
/third_party/glslang/Test/ |
D | 400.frag | 187 uniform uint uu; 192 iout = uu & i; 193 iout += uu ^ i; 194 iout += i | uu;
|
/third_party/toybox/toys/net/ |
D | ifconfig.c | 124 unsigned uu = 0; in display_ifconfig() local 130 uu = htonl(*(unsigned *)&(si->sin_addr)); in display_ifconfig() 131 for (i = 0; uu; i++) uu <<= 1; in display_ifconfig()
|
/third_party/toybox/porting/liteos_a/toys/net/ |
D | ifconfig.c | 123 unsigned uu = 0; in display_ifconfig() local 129 uu = htonl(*(unsigned *)&(si->sin_addr)); in display_ifconfig() 130 for (i = 0; uu; i++) uu <<= 1; in display_ifconfig()
|
/third_party/typescript/tests/baselines/reference/ |
D | propertyAccess.js | 118 var uu = noIndex[someObject]; // Error variable 265 var uu = noIndex[someObject]; // Error
|
/third_party/libffi/testsuite/libffi.closures/ |
D | huge_struct.c | 61 long double uu; member 150 …retVal.qq, retVal.rr, retVal.ss, retVal.tt, retVal.uu, (unsigned long)retVal.vv, retVal.ww, retVal… in test_large_fn() 309 …retVal.qq, retVal.rr, retVal.ss, retVal.tt, retVal.uu, (unsigned long)retVal.vv, retVal.ww, retVal… in main() 337 …retVal.qq, retVal.rr, retVal.ss, retVal.tt, retVal.uu, (unsigned long)retVal.vv, retVal.ww, retVal… in main()
|
/third_party/f2fs-tools/tools/ |
D | f2fscrypt.c | 410 uuid_t uu; in set_policy() local 431 &uu) < 0) { in set_policy() 435 salt = find_by_salt(uu, sizeof(uu)); in set_policy()
|
/third_party/gstreamer/gstplugins_good/gst/goom/ |
D | ifs.c | 385 DBL u, uu, v, vv, u0, u1, u2, u3; in draw_ifs() local 396 uu = u * u; in draw_ifs() 401 u2 = 3.0 * v * uu; in draw_ifs() 402 u3 = u * uu; in draw_ifs()
|