Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 611) sorted by relevance

12345678910>>...25

/glibc-2.36/nss/
Dnss_test.h55 #define GRP_ISLAST(g) ((g)->gr_name == NULL && (g)->gr_gid == 0) argument
188 print_group (struct group *g) in print_group() argument
192 printf (" group %u.%s (%s) :", g->gr_gid, g->gr_name, g->gr_passwd); in print_group()
193 if (g->gr_mem) in print_group()
194 for (j=0; g->gr_mem[j]; j++) in print_group()
195 printf ("%s%s", j==0 ? " " : ", ", g->gr_mem[j]); in print_group()
202 compare_groups (int i, struct group *g, struct group *e) in compare_groups() argument
208 if (g->gr_gid != e->gr_gid) in compare_groups()
212 g->gr_gid); in compare_groups()
217 if (g->gr_name == NULL) in compare_groups()
[all …]
Dtst-nss-test4.c87 struct group *g = NULL; in do_test() local
98 g = getgrgid (group_table[i].gr_gid); in do_test()
99 if (g) in do_test()
101 retval += compare_groups (i, g, & group_table[i]); in do_test()
102 if ((uintptr_t)g & align_mask) in do_test()
104 printf("FAIL: [%d] unaligned group %p\n", i, g); in do_test()
107 if ((uintptr_t)(g->gr_mem) & align_mask) in do_test()
109 printf("FAIL: [%d] unaligned member list %p\n", i, g->gr_mem); in do_test()
Dtst-nss-test3.c108 struct group *g = NULL; in do_test() local
119 for (g = getgrent () ; in do_test()
120 g != NULL && ! GRP_ISLAST(&group_table[i]); in do_test()
121 ++i, g = getgrent ()) in do_test()
123 retval += compare_groups (i, g, & group_table[i]); in do_test()
128 if (g) in do_test()
130 printf ("FAIL: [?] group entry %u.%s unexpected\n", g->gr_gid, g->gr_name); in do_test()
/glibc-2.36/nptl/
Dpthread_cond_wait.c78 __condvar_cancel_waiting (pthread_cond_t *cond, uint64_t seq, unsigned int g, in __condvar_cancel_waiting() argument
101 if (cond->__data.__g_size[g] + __PTHREAD_COND_MAX_GROUP_SIZE > 0) in __condvar_cancel_waiting()
103 cond->__data.__g_size[g]--; in __condvar_cancel_waiting()
119 if (cond->__data.__g_size[g] == 0) in __condvar_cancel_waiting()
129 cond->__data.__g_size[g]--; in __condvar_cancel_waiting()
148 __condvar_dec_grefs (pthread_cond_t *cond, unsigned int g, int private) in __condvar_dec_grefs() argument
152 if (atomic_fetch_add_release (cond->__data.__g_refs + g, -2) == 3) in __condvar_dec_grefs()
158 atomic_fetch_and_relaxed (cond->__data.__g_refs + g, ~(unsigned int) 1); in __condvar_dec_grefs()
159 futex_wake (cond->__data.__g_refs + g, INT_MAX, private); in __condvar_dec_grefs()
172 unsigned g = cbuffer->wseq & 1; in __condvar_cleanup_waiting() local
[all …]
Dtst-attr2.c86 size_t g; in do_test() local
87 if (pthread_attr_getguardsize (&a, &g) != 0) in do_test()
92 if (g != (size_t) sysconf (_SC_PAGESIZE)) in do_test()
95 g, sysconf (_SC_PAGESIZE)); in do_test()
105 if (pthread_attr_getguardsize (&a, &g) != 0) in do_test()
110 if (g != 0) in do_test()
112 printf ("guardsize set to zero but %zu returned\n", g); in do_test()
122 if (pthread_attr_getguardsize (&a, &g) != 0) in do_test()
127 if (g != 1) in do_test()
129 printf ("guardsize set to 1 but %zu returned\n", g); in do_test()
/glibc-2.36/grp/
Dtst_fgetgrent.c61 test_entry (const char *name, gid_t gid, struct group *g) in test_entry() argument
63 if (!g) in test_entry()
70 if ((g->gr_gid == gid) && (strcmp (g->gr_name, name) == 0)) in test_entry()
71 printf ("Ok: %s: %d\n", g->gr_name, g->gr_gid); in test_entry()
74 printf ("Error: %s: %d should be: %s: %d\n", g->gr_name, g->gr_gid, in test_entry()
84 struct group *g; in test_fgetgrent() local
89 g = fgetgrent (f); in test_fgetgrent()
90 test_entry ("one", 1, g); in test_fgetgrent()
91 g = fgetgrent (f); in test_fgetgrent()
92 test_entry ("two", 2, g); in test_fgetgrent()
[all …]
/glibc-2.36/elf/
Dtst-tls20.c178 is_mod_set (uint32_t g, uint32_t n) in is_mod_set() argument
180 return (1U << (n - 1)) & g; in is_mod_set()
184 print_gap (uint32_t g) in print_gap() argument
189 int nmods = nmodules (g); in print_gap()
191 printf ("%c", ((1 << (n - 1)) & g) == 0 ? 'G' : 'M'); in print_gap()
223 for (uint32_t g = 0; g < 64; g++) in do_test_dependency() local
225 print_gap (g); in do_test_dependency()
226 int nmods = nmodules (g); in do_test_dependency()
238 if (!is_mod_set (g, n)) in do_test_dependency()
301 for (uint32_t g = 0; g < 64; g++) in do_test_invalid_dependency() local
[all …]
Dunload3.c7 void *g = dlopen ("unload3mod1.so", RTLD_GLOBAL | RTLD_NOW); in main() local
9 if (g == NULL || h == NULL) in main()
11 printf ("dlopen unload3mod{1,2}.so failed: %p %p\n", g, h); in main()
15 dlclose (g); in main()
17 g = dlopen ("unload3mod3.so", RTLD_GLOBAL | RTLD_NOW); in main()
19 if (g == NULL || h == NULL) in main()
21 printf ("dlopen unload3mod{3,4}.so failed: %p %p\n", g, h); in main()
Dunload5.c7 void *g = dlopen ("unload3mod1.so", RTLD_GLOBAL | RTLD_NOW); in main() local
9 if (g == NULL || h == NULL) in main()
11 printf ("dlopen unload3mod{1,2}.so failed: %p %p\n", g, h); in main()
16 dlclose (g); in main()
18 g = dlopen ("unload3mod3.so", RTLD_GLOBAL | RTLD_NOW); in main()
20 if (g == NULL || h == NULL) in main()
22 printf ("dlopen unload3mod{3,4}.so failed: %p %p\n", g, h); in main()
Ddso-sort-tests-1.def19 output: i>h>g>f>e>d>c>b>a>{}<a<b<c<d<e<f<g<h<i
64 tst-bz15311: {+a;+e;+f;+g;+d;%d;-d;-g;-f;-e;-a};a->b->c->d;d=>[ba];c=>a;b=>e=>a;c=>f=>b;d=>g=>c
65 …rt=1): {+a[d>c>b>a>];+e[e>];+f[f>];+g[g>];+d[];%d(b(e(a()))a()g(c(a()f(b(e(a()))))));-d[];-g[];-f[…
66 …_sort=2): {+a[d>c>b>a>];+e[e>];+f[f>];+g[g>];+d[];%d(b(e(a()))a()g(c(a()f(b(e(a()))))));-d[];-g[];…
/glibc-2.36/posix/
Dglobtest.c29 glob_t g; in main() local
32 g.gl_offs = 0; in main()
60 g.gl_offs = 1; in main()
90 i = glob (argv[j], glob_flags, NULL, &g); in main()
106 if ((glob_flags & GLOB_DOOFFS) && g.gl_pathv[0] == NULL) in main()
107 g.gl_pathv[0] = (char *) "abc"; in main()
110 if (g.gl_pathv) in main()
112 for (i = 0; i < g.gl_offs + g.gl_pathc; ++i) in main()
114 g.gl_pathv[i] ? g.gl_pathv[i] : "(null)", in main()
Dbug-glob3.c9 glob_t g; in do_test() local
10 g.gl_pathc = 0; in do_test()
12 int r = glob ("", 0, NULL, &g); in do_test()
18 else if (g.gl_pathc != 0) in do_test()
24 r = glob ("", GLOB_NOCHECK, NULL, &g); in do_test()
30 else if (g.gl_pathc != 1) in do_test()
35 else if (strcmp (g.gl_pathv[0], "") != 0) in do_test()
/glibc-2.36/gshadow/
Dputsgent.c30 putsgent (const struct sgrp *g, FILE *stream) in putsgent() argument
34 if (g->sg_namp == NULL || !__nss_valid_field (g->sg_namp) in putsgent()
35 || !__nss_valid_field (g->sg_passwd) in putsgent()
36 || !__nss_valid_list_field (g->sg_adm) in putsgent()
37 || !__nss_valid_list_field (g->sg_mem)) in putsgent()
45 if (fprintf (stream, "%s:%s:", g->sg_namp, _S (g->sg_passwd)) < 0) in putsgent()
49 char **sp = g->sg_adm; in putsgent()
64 sp = g->sg_mem; in putsgent()
Dtst-gshadow.c51 struct sgrp *g; in do_test() local
52 while ((g = fgetsgent (fp)) != NULL) in do_test()
55 if (strcmp (g->sg_namp, data[seen].sg_namp) != 0) in do_test()
58 seen + 1, g->sg_namp, data[seen].sg_namp); in do_test()
61 if (strcmp (g->sg_passwd, data[seen].sg_passwd) != 0) in do_test()
64 seen + 1, g->sg_passwd, data[seen].sg_passwd); in do_test()
67 if (g->sg_adm == NULL) in do_test()
75 char **sp1 = g->sg_adm; in do_test()
100 if (g->sg_mem == NULL) in do_test()
108 char **sp1 = g->sg_mem; in do_test()
/glibc-2.36/nis/
Dnis_defaults.c131 int n, o, g, w; in searchaccess() local
147 n = o = g = w = 0; in searchaccess()
162 g = 1; in searchaccess()
168 o = g = w = 1; in searchaccess()
181 if (g) in searchaccess()
191 if (g) in searchaccess()
201 if (g) in searchaccess()
211 if (g) in searchaccess()
221 n = o = g = w = 0; in searchaccess()
234 if (g) in searchaccess()
[all …]
/glibc-2.36/localedata/locales/
Dnan_TW@latin62 %% a b c d e f g h i j k l m n o o͘ p q r s t u v w x y z ⁿ
97 "p<U00E0>i-g<U014D><U0358>";/
99 abmon "1g";/
100 "2g";/
101 "3g";/
102 "4g";/
103 "5g";/
104 "6g";/
105 "7g";/
106 "8g";/
[all …]
Dmt_MT63 % &[before 1]g<ġ<<<Ġ
64 % # DMS 200:2009 says that "għ" shall be treated as one letter.
65 % &[before 1]h<għ<<<gĦ<<<Għ<<<GĦ
82 collating-symbol <g-dot-above>
85 collating-symbol <g-h-stroke-digraph>
86 collating-element <g-h-stroke> from "g<U0127>"
87 collating-element <g-H-stroke> from "g<U0126>"
100 <g-dot-above>
102 <g-h-stroke-digraph>
110 <U0121> <g-dot-above>;"<BASE><BASE>";"<MIN><MIN>";IGNORE % ġ
[all …]
Duz_UZ76 <U0433> "<U0067>" % g= -> g
108 <U0493> "<U0067><U0027>" % g-= -> g'
116 <U0413> "<U0047>" % g= -> g
148 <U0492> "<U0047><U0027>" % g-= -> g'
176 % <gʻ=g‘=g''<<<Gʻ=G‘=G''
189 collating-symbol <g'-digraph>
191 collating-element <g-turned-comma> from "g<U02BB>"
199 % collating-element <g-left-single-quotation-mark> from "g<U2018>"
203 collating-element <g-double-apostrophe> from "g''"
220 <g'-digraph>
[all …]
/glibc-2.36/iconvdata/testdata/
DGBK5 ` a b c d e f g h i j k l m n o
10 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
22 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
34 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
46 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
58 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
70 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
82 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
94 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
106 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
[all …]
DSHIFT_JISX02135 ` a b c d e f g h i j k l m n o
9 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
21 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
33 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
45 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
57 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
69 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
81 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
93 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
105 �` �a �b �c �d �e �f �g �h �i �j �k �l �m �n �o
[all …]
/glibc-2.36/localedata/
Dtst-numeric.data33 C %g 1.23 1.23
34 C %g -1.23 -1.23
35 C %g 0 0
37 C %'g 123.45 123.45
38 C %'g -123.45 -123.45
39 C *%g* 1.23 *1.23*
40 C %9g 1.23 1.23
41 C %9g -1.23 -1.23
45 nn_NO.ISO-8859-1 %'g 123.45 123,45
46 nn_NO.ISO-8859-1 %'g -123.45 -123,45
/glibc-2.36/csu/
DMakefile35 $(start-installed-name) g$(start-installed-name) $(csu-dummies) \
37 omit-deps = $(patsubst %.o,%,$(start-installed-name) g$(start-installed-name) \
42 install-lib = $(start-installed-name) g$(start-installed-name) $(csu-dummies)
80 extra-objs += $(static-start-installed-name) g$(static-start-installed-name)
82 g$(static-start-installed-name))
83 install-lib += $(static-start-installed-name) g$(static-start-installed-name)
147 $(objpfx)g$(start-installed-name): \
148 $(objpfx)g%: $(objpfx)S% $(objpfx)gmon-start.os $(objpfx)static-reloc.os
154 $(objpfx)g$(static-start-installed-name): \
155 $(objpfx)g%: $(objpfx)% $(objpfx)gmon-start.o
[all …]
/glibc-2.36/stdio-common/
Dtst-printf.sh71 g-style == 0: "0"
72 g-style >= 1: "12.34"
73 g-style >= .1: "0.1234"
74 g-style < .1: "0.001234"
75 g-style big: "100000000000000000000"
185 g-style == 0: "0"
186 g-style >= 1: "12.34"
187 g-style >= .1: "0.1234"
188 g-style < .1: "0.001234"
189 g-style big: "100000000000000000000"
/glibc-2.36/intl/
Dhash-string.c33 unsigned long int hval, g; in __hash_string() local
42 g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4)); in __hash_string()
43 if (g != 0) in __hash_string()
45 hval ^= g >> (HASHWORDBITS - 8); in __hash_string()
46 hval ^= g; in __hash_string()
/glibc-2.36/locale/
Dstrlen-hash.h33 size_t hval, g; in hash_string() local
42 g = hval & ((size_t) 0xf << (HASHWORDBITS - 4)); in hash_string()
43 if (g != 0) in hash_string()
45 hval ^= g >> (HASHWORDBITS - 8); in hash_string()
46 hval ^= g; in hash_string()

12345678910>>...25