Searched defs:thread_data (Results 1 - 11 of 11) sorted by relevance

/external/fio/t/
H A Dmemlock.c6 static struct thread_data { struct
12 struct thread_data *td = data;
H A Dread-to-pipe-async.c59 struct thread_data { struct
73 struct thread_data thread;
83 struct thread_data thread;
233 static void thread_exiting(struct thread_data *thread)
462 static void init_thread(struct thread_data *thread)
471 static void exit_thread(struct thread_data *thread,
/external/curl/lib/
H A Dnwlib.c162 libthreaddata_t *thread_data; local
167 thread_data = (libthreaddata_t *) NULL;
241 && !(err = NXKeyGetValue(key, (void **) &thread_data))
242 && !thread_data) {
250 thread_data = malloc(sizeof(libthreaddata_t));
252 if(thread_data) {
253 thread_data->_errno = 0;
254 thread_data->twentybytes = malloc(20);
256 if(!thread_data->twentybytes) {
257 free(thread_data);
[all...]
H A Dasyn-thread.c166 struct thread_data *td; /* for thread-self cleanup */
169 struct thread_data { struct
178 return &(((struct thread_data *)conn->async.os_specific)->tsd);
202 int init_thread_sync_data(struct thread_data * td,
269 struct thread_data *td = tsd->td;
309 struct thread_data *td = tsd->td;
342 struct thread_data *td = (struct thread_data*) async->os_specific;
382 struct thread_data *td = calloc(1, sizeof(struct thread_data));
[all...]
/external/google-breakpad/src/common/linux/tests/
H A Dcrash_generator.cc82 ThreadData* thread_data = reinterpret_cast<ThreadData*>(data); local
84 *(thread_data->thread_id_ptr) = thread_id;
85 int result = pthread_barrier_wait(thread_data->barrier);
283 ThreadData* thread_data = new ThreadData[num_threads];
302 thread_data[i].barrier = &thread_barrier;
303 thread_data[i].thread_id_ptr = GetThreadIdPointer(i);
304 if (pthread_create(&thread_data[i].thread, &thread_attributes,
305 thread_function, &thread_data[i]) != 0) {
319 delete[] thread_data;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_multi_thread.c272 EncWorkerData *thread_data; local
273 thread_data = &cpi->tile_thr_data[i];
274 thread_data->thread_id = i;
277 thread_data->tile_completion_status[tile_col] = 0;
H A Dvp9_ethread.c38 static int enc_worker_hook(EncWorkerData *const thread_data, void *unused) { argument
39 VP9_COMP *const cpi = thread_data->cpi;
47 for (t = thread_data->start; t < tile_rows * tile_cols;
52 vp9_encode_tile(cpi, thread_data->td, tile_row, tile_col);
95 EncWorkerData *thread_data = &cpi->tile_thr_data[i]; local
101 thread_data->cpi = cpi;
104 CHECK_MEM_ERROR(cm, thread_data->td,
105 vpx_memalign(32, sizeof(*thread_data->td)));
106 vp9_zero(*thread_data->td);
109 thread_data
146 EncWorkerData *const thread_data = (EncWorkerData *)worker->data1; local
175 EncWorkerData *thread_data; local
210 EncWorkerData *const thread_data = (EncWorkerData *)worker->data1; local
382 first_pass_worker_hook(EncWorkerData *const thread_data, MultiThreadHandle *multi_thread_ctxt) argument
453 EncWorkerData *thread_data; local
472 temporal_filter_worker_hook(EncWorkerData *const thread_data, MultiThreadHandle *multi_thread_ctxt) argument
536 EncWorkerData *thread_data; local
549 enc_row_mt_worker_hook(EncWorkerData *const thread_data, MultiThreadHandle *multi_thread_ctxt) argument
609 EncWorkerData *thread_data; local
644 EncWorkerData *const thread_data = (EncWorkerData *)worker->data1; local
[all...]
H A Dvp9_encoder.c2433 EncWorkerData *const thread_data = &cpi->tile_thr_data[t]; local
2440 vpx_free(thread_data->td->counts);
2441 vp9_free_pc_tree(thread_data->td);
2442 vpx_free(thread_data->td);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_priv.h101 struct lp_jit_thread_data thread_data; member in struct:lp_rasterizer_task
267 task->thread_data.raster_state.viewport_index = inputs->viewport_index;
280 &task->thread_data,
/external/libchrome/base/
H A Dtracked_objects.cc404 void ThreadData::OnThreadTermination(void* thread_data) { argument
405 DCHECK(thread_data); // TLS should *never* call us with a NULL.
408 reinterpret_cast<ThreadData*>(thread_data)->OnThreadTerminationCleanup();
442 for (ThreadData* thread_data = my_list; thread_data;
443 thread_data = thread_data->next()) {
444 thread_data->SnapshotExecutedTasks(current_profiling_phase,
474 for (ThreadData* thread_data = my_list; thread_data;
794 ThreadData* thread_data = thread_data_list; local
[all...]
/external/fio/
H A Dfio.h143 struct thread_data { struct
165 struct thread_data *parent;
500 extern struct thread_data *threads;
502 static inline void fio_ro_check(const struct thread_data *td, struct io_u *io_u)
509 static inline int should_fsync(struct thread_data *td)
528 extern void clear_io_state(struct thread_data *, int);
529 extern int fio_options_parse(struct thread_data *, char **, int);
532 extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
533 extern int fio_cmd_ioengine_option_parse(struct thread_data *, const char *, char *);
534 extern void fio_fill_default_options(struct thread_data *);
[all...]

Completed in 443 milliseconds