Searched defs:uu (Results 1 - 25 of 28) sorted by last modified time

12

/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftbbox.c339 FT_Fixed uu; local
360 uu = FT_MulFix( u, u );
361 y = d + FT_MulFix( c, 2*u ) + FT_MulFix( b, uu );
/external/openssl/ssl/
H A Ds23_lib.c79 unsigned int uu=ssl3_num_ciphers(); local
81 if (u < uu)
85 return(ssl2_get_cipher(u-uu));
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_eval.c149 GLfloat uu = (u - map->u1) * map->du; local
154 _math_horner_bezier_curve(map->Points, data, uu,
168 GLfloat uu = (u - map->u1) * map->du; local
173 _math_horner_bezier_curve(map->Points, vertex, uu,
194 GLfloat uu = (u - map->u1) * map->du; local
202 uu, vv,
216 GLfloat uu = (u - map->u1) * map->du; local
226 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv,
251 _math_horner_bezier_surf(map->Points, vertex, uu, vv,
/external/libopus/celt/tests/
H A Dtest_unit_cwrs32.c99 opus_uint32 uu[KMAX+2U]; local
108 nc=ncwrs_urow(n,k,uu);
124 memcpy(u,uu,(k+2U)*sizeof(*u));
/external/libnfc-nci/src/include/
H A Dbt_types.h411 } uu; member in struct:__anon23963
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp6881 UFormattable *uu = ufmt_getArrayItemByIndex(u, i, &valueStatus); local
6882 if(*Formattable::fromUFormattable(uu) != (array2[i])) {
6884 (const void*)Formattable::fromUFormattable(uu), (const void*)&(array2[i]));
6887 if(!testFormattableAsUFormattable("(sub item)",i,*Formattable::fromUFormattable(uu))) {
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py28 uu = fields[0].split ('..') variable
29 start = int (uu[0], 16)
30 if len (uu) == 1:
33 end = int (uu[1], 16)
158 uu = data.keys () variable
159 uu.sort ()
167 for u in uu:
174 while end in uu and block == data[end][2]:
/external/e2fsprogs/lib/e2p/
H A Duuid.c25 int e2p_is_null_uuid(void *uu) argument
30 for (i=0, cp = uu; i < 16; i++)
36 static void e2p_unpack_uuid(void *in, struct uuid *uu) argument
45 uu->time_low = tmp;
49 uu->time_mid = tmp;
53 uu->time_hi_and_version = tmp;
57 uu->clock_seq = tmp;
59 memcpy(uu->node, ptr, 6);
62 void e2p_uuid_to_str(void *uu, char *out) argument
66 e2p_unpack_uuid(uu,
75 e2p_uuid2str(void *uu) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dicount.c137 static void unpack_uuid(void *in, struct uuid *uu) argument
146 uu->time_low = tmp;
150 uu->time_mid = tmp;
154 uu->time_hi_and_version = tmp;
158 uu->clock_seq = tmp;
160 memcpy(uu->node, ptr, 6);
163 static void uuid_unparse(void *uu, char *out) argument
167 unpack_uuid(uu, &uuid);
/external/e2fsprogs/lib/uuid/
H A Dclear.c39 void uuid_clear(uuid_t uu) argument
41 memset(uu, 0, 16);
H A Dgen_uuid.c562 struct uuid uu; local
577 get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num);
578 uu.clock_seq |= 0x8000;
579 uu.time_mid = (uint16_t) clock_mid;
580 uu.time_hi_and_version = ((clock_mid >> 16) & 0x0FFF) | 0x1000;
581 memcpy(uu.node, node_id, 6);
582 uuid_pack(&uu, out);
589 THREAD_LOCAL struct uuid uu; local
603 uuid_unpack(out, &uu);
632 struct uuid uu; local
[all...]
H A Disnull.c38 int uuid_is_null(const uuid_t uu) argument
43 for (i=0, cp = uu; i < 16; i++)
H A Dpack.c38 void uuid_pack(const struct uuid *uu, uuid_t ptr) argument
43 tmp = uu->time_low;
52 tmp = uu->time_mid;
57 tmp = uu->time_hi_and_version;
62 tmp = uu->clock_seq;
67 memcpy(out+10, uu->node, 6);
H A Dparse.c42 int uuid_parse(const char *in, uuid_t uu) argument
77 uuid_pack(&uuid, uu);
H A Dunpack.c38 void uuid_unpack(const uuid_t in, struct uuid *uu) argument
47 uu->time_low = tmp;
51 uu->time_mid = tmp;
55 uu->time_hi_and_version = tmp;
59 uu->clock_seq = tmp;
61 memcpy(uu->node, ptr, 6);
H A Dunparse.c51 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) argument
55 uuid_unpack(uu, &uuid);
63 void uuid_unparse_lower(const uuid_t uu, char *out) argument
65 uuid_unparse_x(uu, out, fmt_lower);
68 void uuid_unparse_upper(const uuid_t uu, char *out) argument
70 uuid_unparse_x(uu, out, fmt_upper);
73 void uuid_unparse(const uuid_t uu, char *out) argument
75 uuid_unparse_x(uu, out, FMT_DEFAULT);
H A Duuid_time.c56 time_t uuid_time(const uuid_t uu, struct timeval *ret_tv) argument
63 uuid_unpack(uu, &uuid);
78 int uuid_type(const uuid_t uu) argument
82 uuid_unpack(uu, &uuid);
86 int uuid_variant(const uuid_t uu) argument
91 uuid_unpack(uu, &uuid);
/external/e2fsprogs/misc/
H A Duuidd.c235 uuid_t uu; local
376 uuid__generate_time(uu, &num);
378 uuid_unparse(uu, str);
381 memcpy(reply_buf, uu, sizeof(uu));
382 reply_len = sizeof(uu);
386 uuid__generate_random(uu, &num);
388 uuid_unparse(uu, str);
391 memcpy(reply_buf, uu, sizeof(uu));
448 uuid_t uu; local
[all...]
H A Duuidgen.c41 uuid_t uu; local
64 uuid_generate_time(uu);
67 uuid_generate_random(uu);
70 uuid_generate(uu);
74 uuid_unparse(uu, str);
/external/compiler-rt/lib/builtins/
H A Dfp_lib.h124 } uu = { .ll = a }; local
129 if (uu.s.high){
130 word = uu.s.high;
134 word = uu.s.low;
/external/clang/test/Analysis/
H A Dunions.cpp64 IntOrString uu; local
65 uu.s = strdup("");
66 process(uu);
70 IntOrString uu; local
71 uu.s = strdup("");
75 IntOrString uu; local
76 uu.i = 4;
77 clang_analyzer_eval(uu.i == 4); // expected-warning{{TRUE}}
81 uu = vv;
83 clang_analyzer_eval(uu
87 IntOrString uu; local
99 IntOrString uu; local
[all...]
/external/clang/test/CodeGen/
H A Dcompound.c24 union uu { int a;}; void f(union uu p) { (void) p;} union
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_eval.c149 GLfloat uu = (u - map->u1) * map->du; local
154 _math_horner_bezier_curve(map->Points, data, uu,
168 GLfloat uu = (u - map->u1) * map->du; local
173 _math_horner_bezier_curve(map->Points, vertex, uu,
194 GLfloat uu = (u - map->u1) * map->du; local
202 uu, vv,
216 GLfloat uu = (u - map->u1) * map->du; local
226 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv,
251 _math_horner_bezier_surf(map->Points, vertex, uu, vv,
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_cwrs32.c99 opus_uint32 uu[KMAX+2U]; local
108 nc=ncwrs_urow(n,k,uu);
124 memcpy(u,uu,(k+2U)*sizeof(*u));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.cpp6852 UFormattable *uu = ufmt_getArrayItemByIndex(u, i, &valueStatus); local
6853 if(*Formattable::fromUFormattable(uu) != (array2[i])) {
6855 (const void*)Formattable::fromUFormattable(uu), (const void*)&(array2[i]));
6858 if(!testFormattableAsUFormattable("(sub item)",i,*Formattable::fromUFormattable(uu))) {

Completed in 5893 milliseconds

12