Home
last modified time | relevance | path

Searched refs:tsd (Results 1 - 25 of 31) sorted by relevance

12

/third_party/curl/lib/
H A 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 in destroy_thread_sync_data()
229 struct thread_sync_data *tsd = &td->tsd; init_thread_sync_data() local
284 struct thread_sync_data *tsd = conn_thread_sync_data(data); getaddrinfo_complete() local
309 struct thread_sync_data *tsd = query_complete() local
452 struct thread_sync_data *tsd = (struct thread_sync_data *)arg; getaddrinfo_thread() local
505 struct thread_sync_data *tsd = (struct thread_sync_data *)arg; gethostbyname_thread() local
[all...]
/third_party/toybox/toys/pending/
H A 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; ts in syslogd_main()
[all...]
/third_party/musl/src/thread/
H A 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()
H A Dpthread_key_create.c39 if (!self->tsd) self->tsd = __pthread_tsd_main; in __pthread_key_create()
67 do td->tsd[k] = 0; in __pthread_key_delete()
87 void *val = self->tsd[i]; in __pthread_tsd_run_dtors()
89 self->tsd[i] = 0; in __pthread_tsd_run_dtors()
109 void *val = self->tsd[i]; in __pthread_tsd_run_dtors_ex1()
111 self->tsd[i] = 0; in __pthread_tsd_run_dtors_ex1()
H A Dpthread_create.c251 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
268 self->tsd = (void **)__pthread_tsd_main; in __pthread_create()
289 tsd = stack - __pthread_tsd_size; in __pthread_create()
290 stack = tsd - libc.tls_size; in __pthread_create()
302 if (!tsd) { in __pthread_create()
315 tsd = map + size - __pthread_tsd_size; in __pthread_create()
317 stack = tsd - libc.tls_size; in __pthread_create()
322 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
329 new->tsd = (void *)tsd; in __pthread_create()
[all...]
H A Dtss_set.c8 if (self->tsd[k] != x) { in tss_set()
9 self->tsd[k] = x; in tss_set()
H A Dpthread_getspecific.c8 return self->tsd[k]; in __pthread_getspecific()
14 return self->tsd; in pthread_gettsd()
/third_party/musl/porting/liteos_a/user/src/thread/
H 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/src/thread/liteos_a/
H 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/src/thread/linux/
H A Dpthread_create.c425 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit, *start_addr; in __pthread_create() local
445 self->tsd = (void **)__pthread_tsd_main; in __pthread_create()
466 tsd = stack - __pthread_tsd_size; in __pthread_create()
467 stack = tsd - libc.tls_size; in __pthread_create()
479 if (!tsd) { in __pthread_create()
499 tsd = map + size - __pthread_tsd_size; in __pthread_create()
501 stack = tsd - libc.tls_size; in __pthread_create()
506 new = __copy_tls(tsd - libc.tls_size); in __pthread_create()
515 new->tsd = (void *)tsd; in __pthread_create()
[all...]
/third_party/musl/porting/linux/user/src/thread/
H A 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()
[all...]
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_blitter.h96 mali_ptr tsd, mali_ptr tiler,
127 mali_ptr tsd, mali_ptr tiler);
H A Dpan_blitter.c1078 mali_ptr tsd, void *out, bool always_write) in pan_preload_emit_dcd()
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()
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()
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()
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()
1075 pan_preload_emit_dcd(struct pan_pool *pool, struct pan_fb_info *fb, bool zs, mali_ptr coordinates, mali_ptr tsd, void *out, bool always_write) pan_preload_emit_dcd() argument
1252 pan_preload_emit_pre_frame_dcd(struct pan_pool *desc_pool, struct pan_fb_info *fb, bool zs, mali_ptr coords, mali_ptr tsd) pan_preload_emit_pre_frame_dcd() argument
1318 pan_preload_emit_tiler_job(struct pan_pool *desc_pool, struct pan_scoreboard *scoreboard, struct pan_fb_info *fb, bool zs, mali_ptr coords, mali_ptr tsd) pan_preload_emit_tiler_job() argument
1353 pan_preload_fb_part(struct pan_pool *pool, struct pan_scoreboard *scoreboard, struct pan_fb_info *fb, bool zs, mali_ptr coords, mali_ptr tsd, mali_ptr tiler) pan_preload_fb_part() argument
1369 pan_preload_fb(struct pan_pool *pool, struct pan_scoreboard *scoreboard, struct pan_fb_info *fb, mali_ptr tsd, mali_ptr tiler, struct panfrost_ptr *jobs) pan_preload_fb() argument
1545 pan_blit(struct pan_blit_context *ctx, struct pan_pool *pool, struct pan_scoreboard *scoreboard, mali_ptr tsd, mali_ptr tiler) pan_blit() argument
[all...]
H A Dpan_indirect_dispatch.c188 void *tsd = dev->indirect_dispatch.descs->ptr.cpu + in pan_indirect_dispatch_init() local
190 pan_pack(tsd, LOCAL_STORAGE, ls) { in pan_indirect_dispatch_init()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_meta_clear.c178 mali_ptr vpd, mali_ptr tsd, mali_ptr rsd, in panvk_meta_clear_attachment_emit_dcd()
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()
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()
176 panvk_meta_clear_attachment_emit_dcd(struct pan_pool *pool, mali_ptr coords, mali_ptr push_constants, mali_ptr vpd, mali_ptr tsd, mali_ptr rsd, void *out) panvk_meta_clear_attachment_emit_dcd() argument
191 panvk_meta_clear_attachment_emit_tiler_job(struct pan_pool *desc_pool, struct pan_scoreboard *scoreboard, mali_ptr coords, mali_ptr push_constants, mali_ptr vpd, mali_ptr rsd, mali_ptr tsd, mali_ptr tiler) panvk_meta_clear_attachment_emit_tiler_job() argument
H A Dpanvk_vX_meta_copy.c101 mali_ptr vpd, mali_ptr tsd, mali_ptr rsd, in panvk_meta_copy_emit_dcd()
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()
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()
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, tile in panvk_meta_copy_buf2img() local
98 panvk_meta_copy_emit_dcd(struct pan_pool *pool, mali_ptr src_coords, mali_ptr dst_coords, mali_ptr texture, mali_ptr sampler, mali_ptr vpd, mali_ptr tsd, mali_ptr rsd, mali_ptr push_constants, void *out) panvk_meta_copy_emit_dcd() argument
121 panvk_meta_copy_emit_tiler_job(struct pan_pool *desc_pool, struct pan_scoreboard *scoreboard, mali_ptr src_coords, mali_ptr dst_coords, mali_ptr texture, mali_ptr sampler, mali_ptr push_constants, mali_ptr vpd, mali_ptr rsd, mali_ptr tsd, mali_ptr tiler) panvk_meta_copy_emit_tiler_job() argument
163 panvk_meta_copy_emit_compute_job(struct pan_pool *desc_pool, struct pan_scoreboard *scoreboard, const struct pan_compute_dim *num_wg, const struct pan_compute_dim *wg_sz, mali_ptr texture, mali_ptr sampler, mali_ptr push_constants, mali_ptr rsd, mali_ptr tsd) panvk_meta_copy_emit_compute_job() argument
1535 mali_ptr tsd = batch->tls.gpu; panvk_meta_copy_img2buf() local
1719 mali_ptr tsd = batch->tls.gpu; panvk_meta_copy_buf2buf() local
1873 mali_ptr tsd = batch->tls.gpu; panvk_meta_fill_buf() local
1926 mali_ptr tsd = batch->tls.gpu; panvk_meta_update_buf() local
[all...]
H A 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/musl/include/
H A Dpthread_ffrt.h24 void pthread_settsd(void** tsd);
/third_party/musl/porting/liteos_m/user/src/internal/
H A Dpthread_impl.h41 void **tsd; member
/third_party/musl/porting/liteos_m/user/src/thread/
H A Dpthread_create.c148 new->tsd = (void *)NULL; in __pthread_create()
/third_party/musl/src/env/
H A D__init_tls.c52 td->tsd = (void **)__pthread_tsd_main; in __init_tp()
/third_party/musl/porting/linux/user/src/internal/
H A Dpthread_impl.h70 void **tsd; member
/third_party/musl/porting/liteos_a/user/src/internal/
H A Dpthread_impl.h49 void **tsd; member
/third_party/musl/porting/liteos_a/user/src/env/
H A D__init_tls.c47 td->tsd = (void **)__pthread_tsd_main; in __init_tp()
/third_party/musl/src/internal/
H A Dpthread_impl.h57 void **tsd; member

Completed in 16 milliseconds

12