/glibc-2.36/misc/ ! |
D | insremque.c | 24 insque (void *elem, void *prev) in insque() argument 28 ((struct qelem *) elem)->q_forw = NULL; in insque() 29 ((struct qelem *) elem)->q_back = NULL; in insque() 34 ((struct qelem *) prev)->q_forw = (struct qelem *) elem; in insque() 36 next->q_back = (struct qelem *) elem; in insque() 37 ((struct qelem *) elem)->q_forw = next; in insque() 38 ((struct qelem *) elem)->q_back = (struct qelem *) prev; in insque() 45 remque (void *elem) in remque() argument 47 struct qelem *next = ((struct qelem *) elem)->q_forw; in remque() 48 struct qelem *prev = ((struct qelem *) elem)->q_back; in remque()
|
D | tst-tsearch.c | 259 void *elem; in mangle_tree() local 300 elem = tsearch (x + j, root, cmp_fn); in mangle_tree() 301 if (elem == 0 in mangle_tree() 317 elem = tfind (x + j, (void *const *) root, cmp_fn); in mangle_tree() 318 if (elem == NULL || tdelete (x + j, root, cmp_fn) == NULL) in mangle_tree()
|
/glibc-2.36/locale/programs/ ! |
D | ld-collate.c | 696 insert_weights (struct linereader *ldfile, struct element_t *elem, in insert_weights() argument 706 elem->file = ldfile->fname; in insert_weights() 707 elem->line = ldfile->lineno; in insert_weights() 709 elem->last = collate->cursor; in insert_weights() 710 elem->next = collate->cursor ? collate->cursor->next : NULL; in insert_weights() 712 collate->cursor->next->last = elem; in insert_weights() 714 collate->cursor->next = elem; in insert_weights() 718 collate->start = elem; in insert_weights() 721 elem->section = collate->current_section; in insert_weights() 724 collate->current_section->first = elem; in insert_weights() [all …]
|
D | ld-ctype.c | 911 size_t elem, cnt; in ctype_output() local 921 for (elem = 0; elem < nelems; ++elem) in ctype_output() 923 if (elem < _NL_ITEM_INDEX (_NL_CTYPE_EXTRA_MAP_1)) in ctype_output() 924 switch (elem) in ctype_output() 1030 for (cnt = elem - _NL_ITEM_INDEX (_NL_CTYPE_INDIGITS0_MB); in ctype_output() 1042 cnt = elem - _NL_ITEM_INDEX (_NL_CTYPE_OUTDIGIT0_MB); in ctype_output() 1051 for (cnt = elem - _NL_ITEM_INDEX (_NL_CTYPE_INDIGITS0_WC); in ctype_output() 1058 cnt = elem - _NL_ITEM_INDEX (_NL_CTYPE_OUTDIGIT0_WC); in ctype_output() 1096 size_t nr = elem - _NL_ITEM_INDEX (_NL_CTYPE_EXTRA_MAP_1); in ctype_output()
|
/glibc-2.36/sysdeps/nptl/ ! |
D | fork.h | 67 list_t *elem = (list_t *) (GL (dl_in_flight_stack) & ~(uintptr_t) 1); in reclaim_stacks() local 83 assert (l->next->prev == elem); in reclaim_stacks() 84 elem->next = l->next; in reclaim_stacks() 85 elem->prev = l; in reclaim_stacks() 86 l->next = elem; in reclaim_stacks() 92 elem->next->prev = elem->prev; in reclaim_stacks() 93 elem->prev->next = elem->next; in reclaim_stacks()
|
/glibc-2.36/nptl/ ! |
D | nptl-stack.c | 26 __nptl_stack_list_del (list_t *elem) in __nptl_stack_list_del() argument 28 GL (dl_in_flight_stack) = (uintptr_t) elem; in __nptl_stack_list_del() 32 list_del (elem); in __nptl_stack_list_del() 41 __nptl_stack_list_add (list_t *elem, list_t *list) in libc_hidden_def() 43 GL (dl_in_flight_stack) = (uintptr_t) elem | 1; in libc_hidden_def() 47 list_add (elem, list); in libc_hidden_def()
|
D | nptl-stack.h | 38 void __nptl_stack_list_del (list_t *elem); 43 void __nptl_stack_list_add (list_t *elem, list_t *list);
|
/glibc-2.36/include/ ! |
D | list.h | 53 list_del (list_t *elem) in list_del() argument 55 elem->next->prev = elem->prev; in list_del() 56 elem->prev->next = elem->next; in list_del()
|
/glibc-2.36/posix/ ! |
D | bug-regex5.c | 43 char elem[256]; in main() local 45 strncpy (elem, (const char *) (extra + idx + 1), extra[idx]); in main() 46 elem[extra[idx]] = '\0'; in main() 47 printf ("Found a collating element: %s\n", elem); in main()
|
D | fnmatch_loop.c | 480 int32_t elem; in FCT() local 495 for (elem = 0; elem < table_size; elem++) in FCT() 496 if (symb_table[2 * elem] != 0) in FCT() 498 idx = symb_table[2 * elem + 1]; in FCT() 529 if (elem < table_size) in FCT() 669 int32_t elem; in FCT() local 684 for (elem = 0; elem < table_size; elem++) in FCT() 685 if (symb_table[2 * elem] != 0) in FCT() 687 idx = symb_table[2 * elem + 1]; in FCT() 721 if (elem < table_size) in FCT()
|
D | regcomp.c | 83 static reg_errcode_t parse_bracket_element (bracket_elem_t *elem, 89 static reg_errcode_t parse_bracket_symbol (bracket_elem_t *elem, 2522 parse_dup_op (bin_tree_t *elem, re_string_t *regexp, re_dfa_t *dfa, in parse_dup_op() argument 2569 return elem; in parse_dup_op() 2594 if (__glibc_unlikely (elem == NULL)) in parse_dup_op() 2598 postorder (elem, free_tree, NULL); in parse_dup_op() 2605 tree = elem; in parse_dup_op() 2608 elem = duplicate_tree (elem, dfa); in parse_dup_op() 2609 tree = create_tree (dfa, tree, elem, CONCAT); in parse_dup_op() 2610 if (__glibc_unlikely (elem == NULL || tree == NULL)) in parse_dup_op() [all …]
|
D | register-atfork.c | 73 struct fork_handler *elem = fork_handler_list_at (fork_handlers, i); in libc_hidden_def() local 74 if (elem->dso_handle == dso_handle) in libc_hidden_def() 75 return elem; in libc_hidden_def()
|
D | regex_internal.c | 982 re_node_set_init_1 (re_node_set *set, Idx elem) in re_node_set_init_1() argument 992 set->elems[0] = elem; in re_node_set_init_1() 1284 re_node_set_insert (re_node_set *set, Idx elem) in re_node_set_insert() argument 1289 return __glibc_likely (re_node_set_init_1 (set, elem) == REG_NOERROR); in re_node_set_insert() 1297 set->elems[0] = elem; in re_node_set_insert() 1315 if (elem < set->elems[0]) in re_node_set_insert() 1322 for (idx = set->nelem; set->elems[idx - 1] > elem; idx--) in re_node_set_insert() 1324 DEBUG_ASSERT (set->elems[idx - 1] < elem); in re_node_set_insert() 1328 set->elems[idx] = elem; in re_node_set_insert() 1339 re_node_set_insert_last (re_node_set *set, Idx elem) in re_node_set_insert_last() argument [all …]
|
D | regexec.c | 3267 bitset_word_t elem, mask; in build_trtable() local 3373 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1; in build_trtable() 3374 elem; in build_trtable() 3375 mask <<= 1, elem >>= 1, ++ch) in build_trtable() 3376 if (__glibc_unlikely (elem & 1)) in build_trtable() 3404 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1; in build_trtable() 3405 elem; in build_trtable() 3406 mask <<= 1, elem >>= 1, ++ch) in build_trtable() 3407 if (__glibc_unlikely (elem & 1)) in build_trtable()
|
/glibc-2.36/malloc/ ! |
D | tst-calloc.c | 71 int elem = 1 + random () % 100; in random_test() local 72 int size = n * elem; in random_test() 74 ptrs[i] = (char *) calloc (n, elem); in random_test()
|
/glibc-2.36/iconv/ ! |
D | gconv_conf.c | 367 char *elem; in __gconv_get_path() local 423 elem = __strtok_r (gconv_path, ":", &gconv_path); in __gconv_get_path() 424 assert (elem != NULL); in __gconv_get_path() 428 if (elem[0] != '/') in __gconv_get_path() 434 strspace = __stpcpy (strspace, elem); in __gconv_get_path() 445 while ((elem = __strtok_r (NULL, ":", &gconv_path)) != NULL); in __gconv_get_path()
|
/glibc-2.36/rt/ ! |
D | aio_misc.c | 175 __aio_free_request (struct requestlist *elem) in __aio_free_request() argument 177 elem->running = no; in __aio_free_request() 178 elem->next_prio = freelist; in __aio_free_request() 179 freelist = elem; in __aio_free_request() 184 __aio_find_req (aiocb_union *elem) in __aio_find_req() argument 187 int fildes = elem->aiocb.aio_fildes; in __aio_find_req() 197 while (runp != NULL && runp->aiocbp != elem) in __aio_find_req()
|
/glibc-2.36/nscd/ ! |
D | mem.c | 80 size_t elem = start / BITS; in markrange() local 87 mark[elem] |= (ALLBITS >> (BITS - len)) << (start % BITS); in markrange() 91 mark[elem++] |= ALLBITS << (start % BITS); in markrange() 97 mark[elem++] = ALLBITS; in markrange() 102 mark[elem] |= ALLBITS >> (BITS - len); in markrange()
|
/glibc-2.36/sysdeps/generic/ ! |
D | aio_misc.h | 99 extern struct requestlist *__aio_find_req (aiocb_union *elem) attribute_hidden;
|
/glibc-2.36/manual/ ! |
D | lang.texi | 1223 For example, @code{offsetof (struct s, elem)} is the offset, in bytes, 1224 of the member @code{elem} in a @code{struct s}.
|
/glibc-2.36/ChangeLog.old/ ! |
D | ChangeLog.11 | 7169 * posix/fnmatch.c: Include "../locale/elem-hash.h". 7223 is 2 + elem + offset, not 2 + elem + offset + 2.
|
D | ChangeLog.10 | 2319 * locale/elem-hash.h: New file. 2320 * locale/Makefile (distribute): Add elem-hash.h.
|
D | ChangeLog.25 | 6302 * locale/elem-hash.h: Modified.
|
/glibc-2.36/benchtests/strcoll-inputs/ ! |
D | filelist#C | 14323 elem-hash.h
|
D | filelist#en_US.UTF-8 | 14323 elem-hash.h
|