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

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ethread.c34 static int enc_worker_hook(EncWorkerData *const thread_data, void *unused) { argument
35 VP9_COMP *const cpi = thread_data->cpi;
43 for (t = thread_data->start; t < tile_rows * tile_cols;
48 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
133 EncWorkerData *thread_data; local
171 EncWorkerData *const thread_data = (EncWorkerData*)worker->data1; local
190 EncWorkerData *const thread_data = (EncWorkerData*)worker->data1; local
[all...]
H A Dvp9_encoder.c2021 EncWorkerData *const thread_data = &cpi->tile_thr_data[t]; local
2028 vpx_free(thread_data->td->counts);
2029 vp9_free_pc_tree(thread_data->td);
2030 vpx_free(thread_data->td);
/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/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp440 ParseFreeBSDPrStatus(ThreadData *thread_data, DataExtractor &data, argument
457 thread_data->signo = data.GetU32(&offset); // pr_cursig
463 thread_data->gpregset = DataExtractor(data, offset, len);
467 ParseFreeBSDThrMisc(ThreadData *thread_data, DataExtractor &data) argument
470 thread_data->name = data.GetCStr(&offset, 20);
498 ThreadData *thread_data = new ThreadData(); local
518 assert(thread_data->gpregset.GetByteSize() > 0);
520 m_thread_data.push_back(*thread_data);
521 thread_data = new ThreadData();
538 ParseFreeBSDPrStatus(thread_data, note_dat
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc261 ThreadData* thread_data = static_cast<ThreadData*>(thread_object); local
262 AudioProcessing* ap = thread_data->ap;
281 if (thread_data->thread_num % 2 == 0) {
285 thread_data->error = true;
290 if (thread_data->thread_num % 2 == 1) {
300 thread_data->error = true;
317 std::vector<ThreadData*> thread_data(num_threads);
324 thread_data[i] = new ThreadData(i, apm_);
326 thread_data[i],
342 ASSERT_FALSE(thread_data[
[all...]
/external/fio/
H A Dfio.h100 struct thread_data { struct
409 extern struct thread_data *threads;
411 static inline void fio_ro_check(const struct thread_data *td, struct io_u *io_u)
418 static inline int should_fsync(struct thread_data *td)
437 extern void clear_io_state(struct thread_data *);
438 extern int fio_options_parse(struct thread_data *, char **, int, int);
440 extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
441 extern int fio_cmd_ioengine_option_parse(struct thread_data *, const char *, char *);
442 extern void fio_fill_default_options(struct thread_data *);
444 extern void fio_options_set_ioengine_opts(struct option *long_options, struct thread_data *t
[all...]
/external/linux-tools-perf/src/tools/perf/bench/
H A Dnuma.c43 struct thread_data { struct
135 struct thread_data *threads;
434 struct thread_data *td;
566 struct thread_data *td;
813 struct thread_data *td;
846 struct thread_data *td;
913 struct thread_data *td = g->threads + t;
1010 struct thread_data *td = __tdata;
1023 u8 *thread_data; local
1035 thread_data
[all...]

Completed in 2118 milliseconds