Searched refs:uu (Results 1 - 25 of 39) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dutil_uuid.c30 void smb_uuid_pack(const struct uuid uu, UUID_FLAT *ptr) argument
32 SIVAL(ptr->info, 0, uu.time_low);
33 SSVAL(ptr->info, 4, uu.time_mid);
34 SSVAL(ptr->info, 6, uu.time_hi_and_version);
35 memcpy(ptr->info+8, uu.clock_seq, 2);
36 memcpy(ptr->info+10, uu.node, 6);
39 void smb_uuid_unpack(const UUID_FLAT in, struct uuid *uu) argument
41 uu->time_low = IVAL(in.info, 0);
42 uu->time_mid = SVAL(in.info, 4);
43 uu
50 static struct uuid uu; local
56 smb_uuid_generate_random(struct uuid *uu) argument
67 smb_uuid_to_string(const struct uuid uu) argument
80 smb_uuid_string_static(const struct uuid uu) argument
93 smb_string_to_uuid(const char *in, struct uuid* uu) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/lib/
H A Dashldi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.high = (unsigned int) uu.s.low << -bm;
20 const unsigned int carries = (unsigned int) uu.s.low >> bm;
22 w.s.low = (unsigned int) uu.s.low << b;
23 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dlshrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.low = (unsigned int) uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
22 w.s.high = (unsigned int) uu.s.high >> b;
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
19 uu.s.high >> 31;
20 w.s.low = uu.s.high >> -bm;
22 const unsigned int carries = (unsigned int) uu.s.high << bm;
24 w.s.high = uu.s.high >> b;
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/uuid/
H A Dpack.c39 void uuid_pack(const struct uuid *uu, uuid_t ptr) argument
44 tmp = uu->time_low;
53 tmp = uu->time_mid;
58 tmp = uu->time_hi_and_version;
63 tmp = uu->clock_seq;
68 memcpy(out+10, uu->node, 6);
H A Dunpack.c39 void uuid_unpack(const uuid_t in, struct uuid *uu) argument
48 uu->time_low = tmp;
52 uu->time_mid = tmp;
56 uu->time_hi_and_version = tmp;
60 uu->clock_seq = tmp;
62 memcpy(uu->node, ptr, 6);
H A Dunparse.c52 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) argument
56 uuid_unpack(uu, &uuid);
64 void uuid_unparse_lower(const uuid_t uu, char *out) argument
66 uuid_unparse_x(uu, out, fmt_lower);
69 void uuid_unparse_upper(const uuid_t uu, char *out) argument
71 uuid_unparse_x(uu, out, fmt_upper);
74 void uuid_unparse(const uuid_t uu, char *out) argument
76 uuid_unparse_x(uu, out, FMT_DEFAULT);
H A Duuid.h68 /*void uuid_clear(uuid_t uu);*/
69 #define uuid_clear(uu) memset(uu, 0, sizeof(uu))
84 /*int uuid_is_null(const uuid_t uu);*/
85 #define uuid_is_null(uu) (!memcmp(uu, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", sizeof(uu)))
88 int uuid_parse(const char *in, uuid_t uu);
91 void uuid_unparse(const uuid_t uu, cha
[all...]
H A DuuidP.h59 void uuid_pack(const struct uuid *uu, uuid_t ptr);
60 void uuid_unpack(const uuid_t in, struct uuid *uu);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Duuid.c21 int e2p_is_null_uuid(void *uu) argument
26 for (i=0, cp = uu; i < 16; i++)
32 static void e2p_unpack_uuid(void *in, struct uuid *uu) argument
41 uu->time_low = tmp;
45 uu->time_mid = tmp;
49 uu->time_hi_and_version = tmp;
53 uu->clock_seq = tmp;
55 memcpy(uu->node, ptr, 6);
58 void e2p_uuid_to_str(void *uu, char *out) argument
62 e2p_unpack_uuid(uu,
71 e2p_uuid2str(void *uu) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Dashrdi3.c39 DIunion uu; local
44 uu.ll = u;
50 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1);
51 w.s.low = uu.s.high >> -bm;
55 USItype carries = (USItype)uu.s.high << bm;
56 w.s.high = uu.s.high >> b;
57 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashldi3.c39 DIunion uu; local
44 uu.ll = u;
50 w.s.high = (USItype)uu.s.low << -bm;
54 USItype carries = (USItype)uu.s.low >> bm;
55 w.s.low = (USItype)uu.s.low << b;
56 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c39 DIunion uu; local
44 uu.ll = u;
50 w.s.low = (USItype)uu.s.high >> -bm;
54 USItype carries = (USItype)uu.s.high << bm;
55 w.s.high = (USItype)uu.s.high >> b;
56 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/lib/
H A Dashrdi3.c40 DIunion uu; local
45 uu.ll = u;
50 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1);
51 w.s.low = uu.s.high >> -bm;
53 USItype carries = (USItype) uu.s.high << bm;
54 w.s.high = uu.s.high >> b;
55 w.s.low = ((USItype) uu.s.low >> b) | carries;
H A Dashldi3.c40 DIunion uu; local
45 uu.ll = u;
50 w.s.high = (USItype) uu.s.low << -bm;
52 USItype carries = (USItype) uu.s.low >> bm;
53 w.s.low = (USItype) uu.s.low << b;
54 w.s.high = ((USItype) uu.s.high << b) | carries;
H A Dlshrdi3.c54 DIunion uu; local
59 uu.ll = u;
64 w.s.low = (USItype) uu.s.high >> -bm;
66 USItype carries = (USItype) uu.s.high << bm;
67 w.s.high = (USItype) uu.s.high >> b;
68 w.s.low = ((USItype) uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/v850/lib/
H A Dashrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1);
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
58 w.s.high = uu.s.high >> b;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashldi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
57 w.s.high = (USItype)uu.s.high >> b;
58 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/lib/
H A Dashrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1);
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
58 w.s.high = uu.s.high >> b;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/lib/
H A Dashrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1);
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
58 w.s.high = uu.s.high >> b;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashldi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
57 w.s.high = (USItype)uu.s.high >> b;
58 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/lib/
H A Dashrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1);
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
58 w.s.high = uu.s.high >> b;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashldi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;

Completed in 66 milliseconds

12