HomeSort by relevance Sort by last modified time
    Searched refs:thread_index (Results 1 - 21 of 21) sorted by null

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 98 volatile uptr thread_index; member in struct:__sanitizer::AdvancedCallbackArgument
105 : thread_index(0),
115 &callback_argument->thread_index, 1);
126 __sync_fetch_and_add(&callback_argument->thread_index,
127 kThreadCount - callback_argument->thread_index);
175 while (__sync_fetch_and_add(&argument.thread_index, 0) < kStopWorldAfter)
182 while (__sync_fetch_and_add(&argument.thread_index, 0) < kThreadCount)
  /external/chromium_org/cc/resources/
picture_pile_impl.h 30 PicturePileImpl* GetCloneForDrawingOnThread(unsigned thread_index) const;
126 const PicturePileImpl* other, unsigned thread_index);
128 PicturePileImpl(const PicturePileImpl* other, unsigned thread_index);
picture_pile_base.h 30 PicturePileBase(const PicturePileBase* other, unsigned thread_index);
66 PictureInfo CloneForThread(int thread_index) const;
raster_worker_pool.cc 76 void RunAnalysisOnThread(unsigned thread_index) {
86 picture_pile_->GetCloneForDrawingOnThread(thread_index);
101 bool RunRasterOnThread(unsigned thread_index,
122 picture_pile_->GetCloneForDrawingOnThread(thread_index);
200 virtual bool RunOnWorkerThread(unsigned thread_index,
205 RunAnalysisOnThread(thread_index); variable
206 return RunRasterOnThread(thread_index, buffer, size, stride);
266 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {
300 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {
picture_pile_impl.cc 43 const PicturePileImpl* other, unsigned thread_index) {
44 return make_scoped_refptr(new PicturePileImpl(other, thread_index));
57 const PicturePileImpl* other, unsigned thread_index)
58 : PicturePileBase(other, thread_index),
66 unsigned thread_index) const {
67 CHECK_GT(clones_for_drawing_.clones_.size(), thread_index);
68 return clones_for_drawing_.clones_[thread_index].get();
worker_pool_perftest.cc 24 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {}
37 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {
picture_pile_base.cc 72 unsigned thread_index)
88 picture_map_[it->first] = it->second.CloneForThread(thread_index);
299 int thread_index) const {
302 info.picture_ = picture_->GetCloneForDrawingOnThread(thread_index);
worker_pool.h 26 virtual void RunOnWorkerThread(unsigned thread_index) = 0;
picture.h 55 unsigned thread_index) const;
image_raster_worker_pool.cc 32 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {
37 task_->RunOnWorkerThread(thread_index,
raster_worker_pool_perftest.cc 23 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {}
worker_pool.cc 311 int thread_index = next_thread_index_++; local
343 task->RunOnWorkerThread(thread_index);
picture.cc 180 unsigned thread_index) const {
183 CHECK_GT(clones_.size(), thread_index);
184 return clones_[thread_index];
raster_worker_pool.h 35 virtual bool RunOnWorkerThread(unsigned thread_index,
raster_worker_pool_unittest.cc 38 virtual bool RunOnWorkerThread(unsigned thread_index,
pixel_buffer_raster_worker_pool.cc 36 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {
44 needs_upload_ = task_->RunOnWorkerThread(thread_index,
worker_pool_unittest.cc 25 virtual void RunOnWorkerThread(unsigned thread_index) OVERRIDE {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast.c 505 task->query->count[task->thread_index] += task->vis_counter;
809 debug_printf("thread %d waiting for work\n", task->thread_index);
815 if (task->thread_index == 0) {
831 debug_printf("thread %d doing work\n", task->thread_index);
841 if (task->thread_index == 0) {
847 debug_printf("thread %d done working\n", task->thread_index);
899 task->thread_index = i;
lp_rast_priv.h 95 unsigned thread_index; member in struct:lp_rasterizer_task
198 task->color_tiles[buf] = lp_swizzled_cbuf[task->thread_index][buf];
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast.c 505 task->query->count[task->thread_index] += task->vis_counter;
809 debug_printf("thread %d waiting for work\n", task->thread_index);
815 if (task->thread_index == 0) {
831 debug_printf("thread %d doing work\n", task->thread_index);
841 if (task->thread_index == 0) {
847 debug_printf("thread %d done working\n", task->thread_index);
899 task->thread_index = i;
lp_rast_priv.h 95 unsigned thread_index; member in struct:lp_rasterizer_task
198 task->color_tiles[buf] = lp_swizzled_cbuf[task->thread_index][buf];

Completed in 678 milliseconds