Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 97) sorted by relevance

1234

/glibc-2.36/posix/
Dwordexp.c49 const char *words, size_t *offset, int flags,
53 size_t *max_length, const char *words,
57 const char *words, size_t *offset, int flags,
182 const char *words, size_t *offset) in parse_backslash() argument
186 switch (words[1 + *offset]) in parse_backslash()
197 *word = w_addchar (*word, word_length, max_length, words[1 + *offset]); in parse_backslash()
210 const char *words, size_t *offset) in parse_qtd_backslash() argument
214 switch (words[1 + *offset]) in parse_qtd_backslash()
228 *word = w_addchar (*word, word_length, max_length, words[1 + *offset]); in parse_qtd_backslash()
236 *word = w_addchar (*word, word_length, max_length, words[*offset]); in parse_qtd_backslash()
[all …]
Dwordexp-test.c38 const char *words; member
223 command_line_test (const char *words) in command_line_test() argument
227 int retval = wordexp (words, &we, 0); in command_line_test()
272 ts.words = "~root "; in do_test()
282 ts.words = "${var#~root}x"; in do_test()
296 ts.words = "~ ~/foo"; in do_test()
313 ts.words = "~"; in do_test()
338 at_page_end (const char *words) in at_page_end() argument
340 const size_t words_size = strlen (words) + 1; in at_page_end()
345 memcpy (ntf.buffer, words, words_size); in at_page_end()
[all …]
/glibc-2.36/string/
Dtst-strlen.c19 size_t words; in do_test() local
21 for (words = 0; words < 4; ++words) in do_test()
24 memset (buf, 'a', words * 4); in do_test()
28 buf[words * 4 + 0] = (last & 1) != 0 ? 'b' : '\0'; in do_test()
29 buf[words * 4 + 1] = (last & 2) != 0 ? 'c' : '\0'; in do_test()
30 buf[words * 4 + 2] = (last & 4) != 0 ? 'd' : '\0'; in do_test()
31 buf[words * 4 + 3] = (last & 8) != 0 ? 'e' : '\0'; in do_test()
32 buf[words * 4 + 4] = '\0'; in do_test()
34 if (strlen (buf) != words * 4 + lens[last]) in do_test()
38 base, words, last, in do_test()
[all …]
/glibc-2.36/benchtests/
Dbench-strcoll.c112 char **words; member
121 list->words = malloc (size * sizeof (char *)); in new_word_list()
122 assert (list->words != NULL); in new_word_list()
137 list->words[n++] = strdup (word); in str_word_list()
152 copy->words[i] = strdup (list->words[i]); in copy_word_list()
162 free (list->words[i]); in free_word_list()
164 free (list->words); in free_word_list()
192 qsort (tests[i]->words, tests[i]->size, sizeof (char *), compare_words); in bench_list()
/glibc-2.36/resolv/
Dinet_ntop.c110 u_int words[NS_IN6ADDRSZ / NS_INT16SZ]; in inet_ntop6() local
118 memset(words, '\0', sizeof words); in inet_ntop6()
120 words[i / 2] = (src[i] << 8) | src[i + 1]; in inet_ntop6()
126 if (words[i] == 0) { in inet_ntop6()
163 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) { in inet_ntop6()
169 tp += SPRINTF((tp, "%x", words[i])); in inet_ntop6()
/glibc-2.36/scripts/
Dgen-as-const.py94 words = line.split(maxsplit=1)
99 if words[0] == '--':
101 name = words[0]
102 value = words[1] if len(words) > 1 else words[0]
/glibc-2.36/stdlib/
Dtst-arc4random-stats.c92 uint32_t words[arc4random_key_size / 4]; in generate_arc4random() local
93 _Static_assert (sizeof (words) == arc4random_key_size, "sizeof (words)"); in generate_arc4random()
95 for (int i = 0; i < array_length (words); ++i) in generate_arc4random()
96 words[i] = arc4random (); in generate_arc4random()
97 memcpy (key, &words, arc4random_key_size); in generate_arc4random()
/glibc-2.36/sysdeps/sparc/sparc32/
Dq_neg.c27 UWtype words[4]; in _Q_neg() member
33 c.words[0] ^= (((UWtype)1) << (W_TYPE_SIZE - 1)); in _Q_neg()
35 c.words[1] ^= (((UWtype)1) << (W_TYPE_SIZE - 1)); in _Q_neg()
37 c.words[3] ^= (((UWtype)1) << (W_TYPE_SIZE - 1)); in _Q_neg()
/glibc-2.36/sysdeps/unix/sysv/linux/sparc/sparc64/
Dwordexp.c21 #define wordexp(words, pwordexp, flags) \ argument
22 __new_wordexp (words, pwordexp, flags)
41 __old_wordexp (const char *words, old_wordexp_t *pwordexp, int flags) in __old_wordexp() argument
50 result = __new_wordexp (words, &we, flags); in __old_wordexp()
/glibc-2.36/sysdeps/unix/sysv/linux/ia64/
Dwordexp.c21 #define wordexp(words, pwordexp, flags) \ argument
22 __new_wordexp (words, pwordexp, flags)
41 __old_wordexp (const char *words, old_wordexp_t *pwordexp, int flags) in __old_wordexp() argument
50 result = __new_wordexp (words, &we, flags); in __old_wordexp()
/glibc-2.36/sysdeps/powerpc/powerpc32/
Dsysdep.h67 # define EALIGN(name, alignt, words) \
76 EALIGN_W_##words; \
79 # define EALIGN(name, alignt, words) \
83 EALIGN_W_##words; \
/glibc-2.36/crypt/
Dmd5-block.c17 const md5_uint32 *words = buffer; in __md5_process_block() local
19 const md5_uint32 *endp = words + nwords; in __md5_process_block()
34 while (words < endp) in __md5_process_block()
52 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ in __md5_process_block()
53 ++words; \ in __md5_process_block()
Dsha256-block.c8 const uint32_t *words = buffer; in __sha256_process_block() local
53 W[t] = SWAP (*words); in __sha256_process_block()
54 ++words; in __sha256_process_block()
Dsha512-block.c8 const uint64_t *words = buffer; in __sha512_process_block() local
60 W[t] = SWAP (*words); in __sha512_process_block()
61 ++words; in __sha512_process_block()
/glibc-2.36/sysdeps/powerpc/powerpc32/power4/multiarch/
Dmempcpy-power7.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemset-power6.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemset-power7.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dstrncmp-power7.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemcpy-a2.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemcpy-cell.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemcpy-power6.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemcpy-power7.S22 #define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemset-ppc32.S23 # define EALIGN(name, alignt, words) \ argument
27 EALIGN_W_##words; \
Dstrncmp-ppc32.S22 # define EALIGN(name, alignt, words) \ argument
26 EALIGN_W_##words; \
Dmemcpy-ppc32.S23 # define EALIGN(name, alignt, words) \ argument
27 EALIGN_W_##words; \

1234