/third_party/curl/lib/ |
D | asyn-thread.c | 188 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/ |
D | syslogd.c | 407 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/ |
D | pthread_setspecific.c | 8 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()
|
D | pthread_key_create.c | 31 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()
|
D | pthread_create.c | 247 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()
|
D | tss_set.c | 8 if (self->tsd[k] != x) { in tss_set() 9 self->tsd[k] = x; in tss_set()
|
D | pthread_getspecific.c | 8 return self->tsd[k]; in __pthread_getspecific() 14 return self->tsd; in pthread_gettsd()
|
/third_party/musl/src/thread/liteos_a/ |
D | pthread_create.c | 239 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/ |
D | pthread_create.c | 239 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/ |
D | pthread_create.c | 361 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/ |
D | pthread_create.c | 361 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/ |
D | ksh.txt | 89 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/ |
D | ksh.txt | 89 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/ |
D | panvk_vX_meta_copy.c | 101 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 …]
|
D | panvk_vX_meta_clear.c | 178 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()
|
D | panvk_vX_meta_blit.c | 111 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/ |
D | pan_blitter.h | 96 mali_ptr tsd, mali_ptr tiler, 127 mali_ptr tsd, mali_ptr tiler);
|
D | pan_blitter.c | 1078 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 …]
|
D | pan_indirect_dispatch.c | 188 void *tsd = dev->indirect_dispatch.descs->ptr.cpu + in GENX() local 190 pan_pack(tsd, LOCAL_STORAGE, ls) { in GENX()
|
/third_party/musl/include/ |
D | pthread_ffrt.h | 24 void pthread_settsd(void** tsd);
|
/third_party/musl/porting/liteos_m/user/src/internal/ |
D | pthread_impl.h | 41 void **tsd; member
|
/third_party/musl/porting/liteos_a/user/src/internal/ |
D | pthread_impl.h | 49 void **tsd; member
|
/third_party/musl/porting/liteos_m/user/src/thread/ |
D | pthread_create.c | 148 new->tsd = (void *)NULL; in __pthread_create()
|
/third_party/musl/porting/liteos_a/user/src/env/ |
D | __init_tls.c | 47 td->tsd = (void **)__pthread_tsd_main; in __init_tp()
|
/third_party/musl/porting/linux/user/src/internal/ |
D | pthread_impl.h | 70 void **tsd; member
|