Home
last modified time | relevance | path

Searched refs:head (Results 1 – 19 of 19) sorted by relevance

/third_party/ulib/jemalloc/test/unit/
A Dql.c39 list_head_t head; in TEST_BEGIN() local
41 ql_new(&head); in TEST_BEGIN()
96 list_head_t head; in TEST_BEGIN() local
100 ql_new(&head); in TEST_BEGIN()
111 list_head_t head; in TEST_BEGIN() local
115 ql_new(&head); in TEST_BEGIN()
130 list_head_t head; in TEST_BEGIN() local
134 ql_new(&head); in TEST_BEGIN()
145 list_head_t head; in TEST_BEGIN() local
149 ql_new(&head); in TEST_BEGIN()
[all …]
/third_party/ulib/musl/src/exit/
A Datexit.c14 } builtin, *head; variable
26 for (; head; head = head->next, slot = COUNT) { in __funcs_on_exit()
28 func = head->f[slot]; in __funcs_on_exit()
29 arg = head->a[slot]; in __funcs_on_exit()
56 if (!head) in __cxa_atexit()
57 head = &builtin; in __cxa_atexit()
66 new_fl->next = head; in __cxa_atexit()
67 head = new_fl; in __cxa_atexit()
72 head->f[slot] = func; in __cxa_atexit()
73 head->a[slot] = arg; in __cxa_atexit()
/third_party/ulib/musl/third_party/smoothsort/
A Dqsort.c89 ar[0] = head; in sift()
91 rt = head - width; in sift()
99 head = lf; in sift()
103 head = rt; in sift()
121 ar[0] = head; in trinkle()
128 rt = head - width; in trinkle()
136 head = stepson; in trinkle()
159 head = base; in qsort()
166 while (head < high) { in qsort()
188 head += width; in qsort()
[all …]
/third_party/uapp/fsck-msdosfs/
A Dfat.c416 if (fat[p].head != head) in clearchain()
459 for (head = CLUST_FIRST; head < boot->NumClusters; head++) { in checkfat()
469 fat[p].head != head; in checkfat()
471 fat[p].head = head; in checkfat()
484 for (head = CLUST_FIRST; head < boot->NumClusters; head++) { in checkfat()
486 if (fat[head].head != head) in checkfat()
510 if (head == fat[n].head) { in checkfat()
517 head, fat[n].head, n); in checkfat()
534 fat[p].head = head; in checkfat()
666 for (head = CLUST_FIRST; head < boot->NumClusters; head++) { in checklost()
[all …]
A Ddir.c393 if (dir->head < CLUST_FIRST || dir->head >= boot->NumClusters) in checksize()
450 cl = dir->head; in readDosDirSection()
686 dirent.head = 0; in readDosDirSection()
703 || fat[dirent.head].head != dirent.head) { in readDosDirSection()
711 dirent.head); in readDosDirSection()
742 if (dirent.head >= CLUST_FIRST && dirent.head < boot->NumClusters) in readDosDirSection()
765 if (dirent.head != dir->head) { in readDosDirSection()
769 dirent.head = dir->head; in readDosDirSection()
797 } else if (dirent.head != dir->parent->head) { in readDosDirSection()
801 dirent.head = dir->parent->head; in readDosDirSection()
[all …]
A Ddosfs.h86 cl_t head; /* pointer to start of chain */ member
123 cl_t head; /* cluster no */ member
/third_party/ulib/musl/src/stdio/
A Dofl_add.c4 FILE** head = __ofl_lock(); in __ofl_add() local
5 f->next = *head; in __ofl_add()
6 if (*head) in __ofl_add()
7 (*head)->prev = f; in __ofl_add()
8 *head = f; in __ofl_add()
A Dfclose.c11 FILE** head = __ofl_lock(); in fclose() local
16 if (*head == f) in fclose()
17 *head = f->next; in fclose()
/third_party/ulib/jemalloc/src/
A Dtsd.c167 tsd_init_check_recursion(tsd_init_head_t *head, tsd_init_block_t *block) in tsd_init_check_recursion() argument
173 malloc_mutex_lock(TSDN_NULL, &head->lock); in tsd_init_check_recursion()
174 ql_foreach(iter, &head->blocks, link) { in tsd_init_check_recursion()
176 malloc_mutex_unlock(TSDN_NULL, &head->lock); in tsd_init_check_recursion()
183 ql_tail_insert(&head->blocks, block, link); in tsd_init_check_recursion()
184 malloc_mutex_unlock(TSDN_NULL, &head->lock); in tsd_init_check_recursion()
189 tsd_init_finish(tsd_init_head_t *head, tsd_init_block_t *block) in tsd_init_finish() argument
191 malloc_mutex_lock(TSDN_NULL, &head->lock); in tsd_init_finish()
192 ql_remove(&head->blocks, block, link); in tsd_init_finish()
193 malloc_mutex_unlock(TSDN_NULL, &head->lock); in tsd_init_finish()
/third_party/ulib/musl/src/internal/
A Dthreads_impl.h43 tcbhead_t head; member
73 tcbhead_t head; member
78 #define PTHREAD_TP_OFFSET offsetof(struct pthread, head)
86 static_assert(TP_OFFSETOF(head) == 0,
91 offsetof(struct pthread, head)) == ABI_TCBHEAD_SIZE,
97 static_assert(TP_OFFSETOF(head.dtv) == 8, "dtv misplaced in struct pthread");
/third_party/ulib/musl/src/regex/
A Dglob.c145 static void freelist(struct match* head) { in freelist() argument
147 for (match = head->next; match; match = next) { in freelist()
160 struct match head = {.next = NULL}, *tail = &head; in glob() local
188 freelist(&head); in glob()
192 for (cnt = 0, tail = head.next; tail; tail = tail->next, cnt++) in glob()
196 tail = &head; in glob()
207 freelist(&head); in glob()
215 freelist(&head); in glob()
221 for (i = 0, tail = head.next; i < cnt; tail = tail->next, i++) in glob()
/third_party/ulib/musl/src/thread/
A D__tls_get_addr.c7 if (v[0] <= (size_t)self->head.dtv[0]) in __tls_get_addr()
8 return (char*)self->head.dtv[v[0]] + v[1] + DTP_OFFSET; in __tls_get_addr()
A Dallocate.c88 td->head.dtv = dtv; in copy_tls()
216 td->head.tp = (uintptr_t)pthread_to_tp(td); in __allocate_thread()
/third_party/ulib/jemalloc/include/jemalloc/internal/
A Dtsd_externs.h14 void *tsd_init_check_recursion(tsd_init_head_t *head,
16 void tsd_init_finish(tsd_init_head_t *head, tsd_init_block_t *block);
A Dph.h83 a_type *head = NULL; \
105 head = tail = phn0; \
137 phn0 = head; \
141 head = phn_next_get(a_type, a_field, \
153 if (head == NULL) \
158 phn0 = head; \
/third_party/ulib/musl/include/bits/aarch64/
A Dsignal.h32 struct _aarch64_ctx head; member
38 struct _aarch64_ctx head; member
/third_party/ulib/musl/ldso/
A Ddynlink.c470 ctx = type == REL_COPY ? dso_next(head) : head; in do_relocs()
493 if (head == &ldso) in do_relocs()
812 if (dso == head) { in log_dso()
1627 memcpy(newdtv, self->head.dtv, ((size_t)self->head.dtv[0] + 1) * sizeof(void*)); in __tls_get_new()
1629 self->head.dtv = newdtv; in __tls_get_new()
1752 head = &ldso; in __dls2()
1856 head = tail = &app; in dls3()
1908 debug.r_map = &head->l_map; in dls3()
2217 return head; in dlopen()
2294 p = head; in do_dlsym()
[all …]
/third_party/ulib/ngunwind/src/dwarf/
A DGparser.c620 unsigned short head; in rs_new() local
622 head = cache->lru_head; in rs_new()
623 rs = cache->buckets + head; in rs_new()
627 cache->buckets[cache->lru_tail].lru_chain = head; in rs_new()
628 cache->lru_tail = head; in rs_new()
/third_party/lib/acpica/
A Dchanges.txt5924 tree head. ACPICA BZ 776.
7718 could be corrupted if the interrupt being removed was at the head of the

Completed in 41 milliseconds