Home
last modified time | relevance | path

Searched refs:uu (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/external/clang/test/Analysis/
Dunions.cpp64 IntOrString uu; in test() local
65 uu.s = strdup(""); in test()
66 process(uu); in test()
70 IntOrString uu; in testPositive() local
71 uu.s = strdup(""); in testPositive()
75 IntOrString uu; in testCopy() local
76 uu.i = 4; in testCopy()
77 clang_analyzer_eval(uu.i == 4); // expected-warning{{TRUE}} in testCopy()
81 uu = vv; in testCopy()
83 clang_analyzer_eval(uu.i == 5); // expected-warning{{UNKNOWN}} in testCopy()
[all …]
/external/e2fsprogs/lib/e2p/
Duuid.c26 int e2p_is_null_uuid(void *uu) in e2p_is_null_uuid() argument
31 for (i=0, cp = uu; i < 16; i++) in e2p_is_null_uuid()
37 static void e2p_unpack_uuid(void *in, struct uuid *uu) in e2p_unpack_uuid() argument
46 uu->time_low = tmp; in e2p_unpack_uuid()
50 uu->time_mid = tmp; in e2p_unpack_uuid()
54 uu->time_hi_and_version = tmp; in e2p_unpack_uuid()
58 uu->clock_seq = tmp; in e2p_unpack_uuid()
60 memcpy(uu->node, ptr, 6); in e2p_unpack_uuid()
63 void e2p_uuid_to_str(void *uu, char *out) in e2p_uuid_to_str() argument
67 e2p_unpack_uuid(uu, &uuid); in e2p_uuid_to_str()
[all …]
/external/u-boot/arch/arc/lib/
Dlibgcc2.c14 const DWunion uu = {.ll = u}; in __ashldi3() local
20 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
22 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
24 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
37 const DWunion uu = {.ll = u}; in __ashrdi3() local
43 w.s.high = uu.s.high >> (W_TYPE_SIZE - 1); in __ashrdi3()
44 w.s.low = uu.s.high >> -bm; in __ashrdi3()
46 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
48 w.s.high = uu.s.high >> b; in __ashrdi3()
[all …]
/external/u-boot/arch/nios2/lib/
Dlibgcc.c56 const DWunion uu = {.ll = u}; in __ashldi3() local
63 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
67 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
69 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
70 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
82 const DWunion uu = {.ll = u}; in __ashrdi3() local
89 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
90 w.s.low = uu.s.high >> -bm; in __ashrdi3()
94 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
96 w.s.high = uu.s.high >> b; in __ashrdi3()
[all …]
/external/python/cpython2/Lib/test/
Dtest_uu.py11 import uu
26 uu.encode(inp, out, "t1")
30 uu.encode(inp, out, "t1", 0644)
36 uu.decode(inp, out)
44 uu.decode(inp, out)
51 uu.decode(inp, out)
53 except uu.Error, e:
60 uu.decode(inp, out)
62 except uu.Error, e:
78 uu.decode(inp, out, quiet=True)
[all …]
/external/python/cpython3/Lib/test/
Dtest_uu.py12 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 …]
/external/e2fsprogs/lib/uuid/
Dunparse.c52 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) in uuid_unparse_x() argument
56 uuid_unpack(uu, &uuid); in uuid_unparse_x()
64 void uuid_unparse_lower(const uuid_t uu, char *out) in uuid_unparse_lower() argument
66 uuid_unparse_x(uu, out, fmt_lower); in uuid_unparse_lower()
69 void uuid_unparse_upper(const uuid_t uu, char *out) in uuid_unparse_upper() argument
71 uuid_unparse_x(uu, out, fmt_upper); in uuid_unparse_upper()
74 void uuid_unparse(const uuid_t uu, char *out) in uuid_unparse() argument
76 uuid_unparse_x(uu, out, FMT_DEFAULT); in uuid_unparse()
Duuid.h70 void uuid_clear(uuid_t uu);
84 int uuid_is_null(const uuid_t uu);
87 int uuid_parse(const char *in, uuid_t uu);
90 void uuid_unparse(const uuid_t uu, char *out);
91 void uuid_unparse_lower(const uuid_t uu, char *out);
92 void uuid_unparse_upper(const uuid_t uu, char *out);
95 time_t uuid_time(const uuid_t uu, struct timeval *ret_tv);
96 int uuid_type(const uuid_t uu);
97 int uuid_variant(const uuid_t uu);
Dgen_uuid.c583 struct uuid uu; in uuid__generate_time() local
598 get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num); in uuid__generate_time()
599 uu.clock_seq |= 0x8000; in uuid__generate_time()
600 uu.time_mid = (uint16_t) clock_mid; in uuid__generate_time()
601 uu.time_hi_and_version = ((clock_mid >> 16) & 0x0FFF) | 0x1000; in uuid__generate_time()
602 memcpy(uu.node, node_id, 6); in uuid__generate_time()
603 uuid_pack(&uu, out); in uuid__generate_time()
610 THREAD_LOCAL struct uuid uu; in uuid_generate_time() local
624 uuid_unpack(out, &uu); in uuid_generate_time()
631 uu.time_low++; in uuid_generate_time()
[all …]
Dpack.c39 void uuid_pack(const struct uuid *uu, uuid_t ptr) in uuid_pack() argument
44 tmp = uu->time_low; in uuid_pack()
53 tmp = uu->time_mid; in uuid_pack()
58 tmp = uu->time_hi_and_version; in uuid_pack()
63 tmp = uu->clock_seq; in uuid_pack()
68 memcpy(out+10, uu->node, 6); in uuid_pack()
Dunpack.c39 void uuid_unpack(const uuid_t in, struct uuid *uu) in uuid_unpack() argument
48 uu->time_low = tmp; in uuid_unpack()
52 uu->time_mid = tmp; in uuid_unpack()
56 uu->time_hi_and_version = tmp; in uuid_unpack()
60 uu->clock_seq = tmp; in uuid_unpack()
62 memcpy(uu->node, ptr, 6); in uuid_unpack()
Duuid_time.c58 time_t uuid_time(const uuid_t uu, struct timeval *ret_tv) in uuid_time() argument
65 uuid_unpack(uu, &uuid); in uuid_time()
80 int uuid_type(const uuid_t uu) in uuid_type() argument
84 uuid_unpack(uu, &uuid); in uuid_type()
88 int uuid_variant(const uuid_t uu) in uuid_variant() argument
93 uuid_unpack(uu, &uuid); in uuid_variant()
Duuid.h.in70 void uuid_clear(uuid_t uu);
84 int uuid_is_null(const uuid_t uu);
87 int uuid_parse(const char *in, uuid_t uu);
90 void uuid_unparse(const uuid_t uu, char *out);
91 void uuid_unparse_lower(const uuid_t uu, char *out);
92 void uuid_unparse_upper(const uuid_t uu, char *out);
95 time_t uuid_time(const uuid_t uu, struct timeval *ret_tv);
96 int uuid_type(const uuid_t uu);
97 int uuid_variant(const uuid_t uu);
/external/e2fsprogs/misc/
Duuidd.c237 uuid_t uu; in server_loop() local
378 uuid__generate_time(uu, &num); in server_loop()
380 uuid_unparse(uu, str); in server_loop()
383 memcpy(reply_buf, uu, sizeof(uu)); in server_loop()
384 reply_len = sizeof(uu); in server_loop()
388 uuid__generate_random(uu, &num); in server_loop()
390 uuid_unparse(uu, str); in server_loop()
393 memcpy(reply_buf, uu, sizeof(uu)); in server_loop()
394 reply_len = sizeof(uu); in server_loop()
397 uuid__generate_time(uu, &num); in server_loop()
[all …]
Duuidgen.c42 uuid_t uu; in main() local
65 uuid_generate_time(uu); in main()
68 uuid_generate_random(uu); in main()
71 uuid_generate(uu); in main()
75 uuid_unparse(uu, str); in main()
/external/u-boot/arch/sh/lib/
Dashrdi3.c5 DWunion uu, w; in __ashrdi3() local
11 uu.ll = u; in __ashrdi3()
17 uu.s.high >> 31; in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
22 w.s.high = uu.s.high >> b; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c5 DWunion uu, w; in __lshrdi3() local
11 uu.ll = u; in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
20 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c5 DWunion uu, w; in __ashldi3() local
11 uu.ll = u; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
21 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
/external/u-boot/arch/mips/lib/
Dashrdi3.c5 DWunion uu, w; in __ashrdi3() local
11 uu.ll = u; in __ashrdi3()
17 uu.s.high >> 31; in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
22 w.s.high = uu.s.high >> b; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dashldi3.c5 DWunion uu, w; in __ashldi3() local
11 uu.ll = u; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
21 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
Dlshrdi3.c5 DWunion uu, w; in __lshrdi3() local
11 uu.ll = u; in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
20 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
/external/u-boot/arch/m68k/lib/
Dlshrdi3.c28 DIunion uu; in __lshrdi3() local
33 uu.ll = u; in __lshrdi3()
39 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
43 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
44 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
45 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c28 DIunion uu; in __ashldi3() local
33 uu.ll = u; in __ashldi3()
39 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
43 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
44 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
45 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
Dmuldi3.c60 DIunion uu, vv; in __muldi3() local
62 uu.ll = u, in __muldi3()
65 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3()
66 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
67 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
/external/u-boot/arch/microblaze/lib/
Dmuldi3.c65 DIunion uu, vv; in __muldi3() local
67 uu.ll = u, vv.ll = v; in __muldi3()
69 w.ll = __umulsidi3(uu.s.low, vv.s.low); in __muldi3()
70 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
71 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()

12345678910>>...16