Home
last modified time | relevance | path

Searched refs:tsd (Results 1 – 25 of 100) sorted by relevance

1234

/third_party/curl/lib/
Dasyn-thread.c188 struct thread_sync_data tsd; member
193 return &(data->state.async.tdata->tsd); in conn_thread_sync_data()
198 void destroy_thread_sync_data(struct thread_sync_data *tsd) in destroy_thread_sync_data() argument
200 if(tsd->mtx) { in destroy_thread_sync_data()
201 Curl_mutex_destroy(tsd->mtx); in destroy_thread_sync_data()
202 free(tsd->mtx); in destroy_thread_sync_data()
205 free(tsd->hostname); in destroy_thread_sync_data()
207 if(tsd->res) in destroy_thread_sync_data()
208 Curl_freeaddrinfo(tsd->res); in destroy_thread_sync_data()
215 if(tsd->sock_pair[1] != CURL_SOCKET_BAD) { in destroy_thread_sync_data()
[all …]
/third_party/toybox/toys/pending/
Dsyslogd.c407 struct unsocks *tsd; in syslogd_main() local
419 tsd = xzalloc(sizeof(struct unsocks)); in syslogd_main()
421 tsd->path = (toys.optflags & FLAG_p) ? TT.unix_socket : "/dev/log"; // DEFLOGSOCK in syslogd_main()
422 TT.lsocks = tsd; in syslogd_main()
427 tsd = xzalloc(sizeof(struct unsocks)); in syslogd_main()
428 tsd->path = temp; in syslogd_main()
429 tsd->next = TT.lsocks; in syslogd_main()
430 TT.lsocks = tsd; in syslogd_main()
439 for (tsd = TT.lsocks; tsd; tsd = tsd->next) { in syslogd_main()
440 tsd->sdu.sun_family = AF_UNIX; in syslogd_main()
[all …]
/third_party/musl/src/thread/
Dpthread_setspecific.c8 if (self->tsd[k] != x) { in pthread_setspecific()
9 self->tsd[k] = (void *)x; in pthread_setspecific()
15 void pthread_settsd(void** tsd) in pthread_settsd() argument
18 self->tsd = tsd; in pthread_settsd()
Dpthread_key_create.c31 if (!self->tsd) self->tsd = __pthread_tsd_main; in __pthread_key_create()
59 do td->tsd[k] = 0; in __pthread_key_delete()
79 void *val = self->tsd[i]; in __pthread_tsd_run_dtors()
81 self->tsd[i] = 0; in __pthread_tsd_run_dtors()
101 void *val = self->tsd[i]; in __pthread_tsd_run_dtors_ex1()
103 self->tsd[i] = 0; in __pthread_tsd_run_dtors_ex1()
Dpthread_create.c247 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
264 self->tsd = (void **)__pthread_tsd_main; in __pthread_create()
285 tsd = stack - __pthread_tsd_size; in __pthread_create()
286 stack = tsd - libc.tls_size; in __pthread_create()
298 if (!tsd) { in __pthread_create()
311 tsd = map + size - __pthread_tsd_size; in __pthread_create()
313 stack = tsd - libc.tls_size; in __pthread_create()
318 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
325 new->tsd = (void *)tsd; in __pthread_create()
Dtss_set.c8 if (self->tsd[k] != x) { in tss_set()
9 self->tsd[k] = x; in tss_set()
Dpthread_getspecific.c8 return self->tsd[k]; in __pthread_getspecific()
14 return self->tsd; in pthread_gettsd()
/third_party/musl/src/thread/liteos_a/
Dpthread_create.c239 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
266 tsd = stack - __pthread_tsd_size; in __pthread_create()
267 stack = tsd - libc.tls_size; in __pthread_create()
279 if (!tsd) { in __pthread_create()
292 tsd = map + size - __pthread_tsd_size; in __pthread_create()
294 stack = tsd - libc.tls_size; in __pthread_create()
299 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
306 new->tsd = (void *)tsd; in __pthread_create()
/third_party/musl/porting/liteos_a/user/src/thread/
Dpthread_create.c239 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
266 tsd = stack - __pthread_tsd_size; in __pthread_create()
267 stack = tsd - libc.tls_size; in __pthread_create()
279 if (!tsd) { in __pthread_create()
292 tsd = map + size - __pthread_tsd_size; in __pthread_create()
294 stack = tsd - libc.tls_size; in __pthread_create()
299 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
306 new->tsd = (void *)tsd; in __pthread_create()
/third_party/musl/src/thread/linux/
Dpthread_create.c361 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit, *start_addr; in __pthread_create() local
381 self->tsd = (void **)__pthread_tsd_main; in __pthread_create()
402 tsd = stack - __pthread_tsd_size; in __pthread_create()
403 stack = tsd - libc.tls_size; in __pthread_create()
415 if (!tsd) { in __pthread_create()
435 tsd = map + size - __pthread_tsd_size; in __pthread_create()
437 stack = tsd - libc.tls_size; in __pthread_create()
442 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
451 new->tsd = (void *)tsd; in __pthread_create()
/third_party/musl/porting/linux/user/src/thread/
Dpthread_create.c361 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit, *start_addr; in __pthread_create() local
381 self->tsd = (void **)__pthread_tsd_main; in __pthread_create()
402 tsd = stack - __pthread_tsd_size; in __pthread_create()
403 stack = tsd - libc.tls_size; in __pthread_create()
415 if (!tsd) { in __pthread_create()
435 tsd = map + size - __pthread_tsd_size; in __pthread_create()
437 stack = tsd - libc.tls_size; in __pthread_create()
442 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
451 new->tsd = (void *)tsd; in __pthread_create()
/third_party/skia/third_party/externals/icu/source/data/locales/
Dksh.txt89 one{"0 tsd"}
90 other{"0 tsd"}
91 zero{"0 tsd"}
94 one{"00 tsd"}
95 other{"00 tsd"}
96 zero{"00 tsd"}
99 one{"000 tsd"}
100 other{"000 tsd"}
101 zero{"000 tsd"}
/third_party/icu/icu4c/source/data/locales/
Dksh.txt89 one{"0 tsd"}
90 other{"0 tsd"}
91 zero{"0 tsd"}
94 one{"00 tsd"}
95 other{"00 tsd"}
96 zero{"00 tsd"}
99 one{"000 tsd"}
100 other{"000 tsd"}
101 zero{"000 tsd"}
/third_party/mesa3d/src/panfrost/vulkan/
Dpanvk_vX_meta_copy.c101 mali_ptr vpd, mali_ptr tsd, mali_ptr rsd, in panvk_meta_copy_emit_dcd() argument
105 cfg.thread_storage = tsd; in panvk_meta_copy_emit_dcd()
127 mali_ptr tsd, mali_ptr tiler) in panvk_meta_copy_emit_tiler_job() argument
133 texture, sampler, vpd, tsd, rsd, push_constants, in panvk_meta_copy_emit_tiler_job()
169 mali_ptr rsd, mali_ptr tsd) in panvk_meta_copy_emit_compute_job() argument
186 0, tsd, rsd, push_constants, in panvk_meta_copy_emit_compute_job()
700 mali_ptr tsd, tiler; in panvk_meta_copy_img2img() local
702 tsd = batch->tls.gpu; in panvk_meta_copy_img2img()
711 vpd, rsd, tsd, tiler); in panvk_meta_copy_img2img()
1123 mali_ptr tsd, tiler; in panvk_meta_copy_buf2img() local
[all …]
Dpanvk_vX_meta_clear.c178 mali_ptr vpd, mali_ptr tsd, mali_ptr rsd, in panvk_meta_clear_attachment_emit_dcd() argument
182 cfg.thread_storage = tsd; in panvk_meta_clear_attachment_emit_dcd()
196 mali_ptr tsd, mali_ptr tiler) in panvk_meta_clear_attachment_emit_tiler_job() argument
204 vpd, tsd, rsd, in panvk_meta_clear_attachment_emit_tiler_job()
300 mali_ptr tsd = batch->tls.gpu; in panvk_meta_clear_attachment() local
328 vpd, rsd, tsd, tiler); in panvk_meta_clear_attachment()
Dpanvk_vX_meta_blit.c111 mali_ptr tsd, tiler; in panvk_meta_blit() local
121 tsd = batch->tls.gpu; in panvk_meta_blit()
125 GENX(pan_blit)(&ctx, &cmdbuf->desc_pool.base, &batch->scoreboard, tsd, tiler); in panvk_meta_blit()
/third_party/mesa3d/src/panfrost/lib/
Dpan_blitter.h96 mali_ptr tsd, mali_ptr tiler,
127 mali_ptr tsd, mali_ptr tiler);
Dpan_blitter.c1078 mali_ptr tsd, void *out, bool always_write) in pan_preload_emit_dcd() argument
1113 cfg.thread_storage = tsd; in pan_preload_emit_dcd()
1199 cfg.shader.thread_storage = tsd; in pan_preload_emit_dcd()
1254 mali_ptr coords, mali_ptr tsd) in pan_preload_emit_pre_frame_dcd() argument
1281 pan_preload_emit_dcd(desc_pool, fb, zs, coords, tsd, dcd, always_write); in pan_preload_emit_pre_frame_dcd()
1321 mali_ptr coords, mali_ptr tsd) in pan_preload_emit_tiler_job() argument
1326 pan_preload_emit_dcd(desc_pool, fb, zs, coords, tsd, in pan_preload_emit_tiler_job()
1356 mali_ptr coords, mali_ptr tsd, mali_ptr tiler) in pan_preload_fb_part() argument
1361 pan_preload_emit_pre_frame_dcd(pool, fb, zs, coords, tsd); in pan_preload_fb_part()
1363 job = pan_preload_emit_tiler_job(pool, scoreboard, fb, zs, coords, tsd); in pan_preload_fb_part()
[all …]
Dpan_indirect_dispatch.c188 void *tsd = dev->indirect_dispatch.descs->ptr.cpu + in GENX() local
190 pan_pack(tsd, LOCAL_STORAGE, ls) { in GENX()
/third_party/musl/include/
Dpthread_ffrt.h24 void pthread_settsd(void** tsd);
/third_party/musl/porting/liteos_m/user/src/internal/
Dpthread_impl.h41 void **tsd; member
/third_party/musl/porting/liteos_a/user/src/internal/
Dpthread_impl.h49 void **tsd; member
/third_party/musl/porting/liteos_m/user/src/thread/
Dpthread_create.c148 new->tsd = (void *)NULL; in __pthread_create()
/third_party/musl/porting/liteos_a/user/src/env/
D__init_tls.c47 td->tsd = (void **)__pthread_tsd_main; in __init_tp()
/third_party/musl/porting/linux/user/src/internal/
Dpthread_impl.h70 void **tsd; member

1234