/external/clang/test/CodeGen/ |
H A D | 2003-11-01-C99-CompoundLiteral.c | 6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, }; local
|
/external/parameter-framework/asio/include/asio/impl/ |
H A D | io_service.hpp | 110 inline io_service::work::work(asio::io_service& io_service) function in class:asio::io_service::work 116 inline io_service::work::work(const work& other) function in class:asio::io_service::work 122 inline io_service::work::~work() 127 inline asio::io_service& io_service::work::get_io_service()
|
/external/parameter-framework/asio-1.10.6/include/asio/impl/ |
H A D | io_service.hpp | 110 inline io_service::work::work(asio::io_service& io_service) function in class:asio::io_service::work 116 inline io_service::work::work(const work& other) function in class:asio::io_service::work 122 inline io_service::work::~work() 127 inline asio::io_service& io_service::work::get_io_service()
|
/external/ceres-solver/internal/ceres/ |
H A D | lapack.cc | 61 double* work, 123 double work; 133 &work, 143 return static_cast<int>(work); 152 double* work, 176 work, 147 SolveInPlaceUsingQR( int num_rows, int num_cols, const double* in_lhs, int work_size, double* work, double* rhs_and_solution, string* message) argument
|
/external/fio/lib/ |
H A D | tp.c | 6 * work. 22 struct tp_work *work; local 27 work = flist_entry(list->next, struct tp_work, list); 28 flist_del(&work->list); 30 prio = work->prio; 34 work->fn(work); 51 if (!tdat->thread_exit && flist_empty(&tdat->work)) 54 if (!flist_empty(&tdat->work)) 55 flist_splice_tail_init(&tdat->work, 71 tp_queue_work(struct tp_data *tdat, struct tp_work *work) argument [all...] |
H A D | tp.h | 23 struct flist_head work; member in struct:tp_data
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
H A D | p12.cpp | 64 void work(int n) { // expected-note{{declared here}} function in struct:s1
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/ |
H A D | toplevel.mk | 175 work := $(strip $(shell $(CAT) $(TOP_DIR)/include/freetype/freetype.h)) macro 176 work := $(subst |,x,$(work)) macro 177 work := $(subst $(space),|,$(work)) macro 178 work := $(subst \#define|FREETYPE_MAJOR|,$(space),$(work)) macro 179 work := $(word 2,$(work)) macro 180 major := $(subst |,$(space),$(work)) 183 work := $(subst \\#define|FREETYPE_MINOR|,$(space),$(work)) macro 184 work := $(word 2,$(work)) macro 188 work := $(subst \\#define|FREETYPE_PATCH|,$(space),$(work)) macro 189 work := $(word 2,$(work)) macro [all...] |
/external/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_fence.h | 26 struct list_head work; member in struct:nouveau_fence
|
H A D | nouveau_fence.c | 43 LIST_INITHEAD(&(*fence)->work); 54 struct nouveau_fence_work *work, *tmp; local 56 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) { 57 work->func(work->data); 58 LIST_DEL(&work->list); 59 FREE(work); 67 struct nouveau_fence_work *work; local 74 work [all...] |
/external/zlib/src/contrib/infback9/ |
H A D | inflate9.h | 45 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
|
/external/libchrome/base/threading/ |
H A D | simple_thread.cc | 133 // If we were empty, signal that we have work now. 139 Delegate* work = NULL; local 149 work = delegates_.front(); 152 // Signal to any other threads that we're currently out of work. 158 if (!work) 161 work->Run();
|
H A D | simple_thread.h | 149 // convenient when you have a lot of small work that you want done 150 // multi-threaded, but don't want to spawn a thread for each small bit of work. 152 // You just call AddWork() to add a delegate to the list of work to be done. 153 // JoinAll() will make sure that all outstanding work is processed, and wait 164 // Start up all of the underlying threads, and start processing work if we 168 // Make sure all outstanding work is finished, and wait for and destroy all 174 void AddWork(Delegate* work, int repeat_count); 175 void AddWork(Delegate* work) { argument 176 AddWork(work, 1); 188 WaitableEvent dry_; // Not signaled when there is no work t [all...] |
/external/libvorbis/lib/ |
H A D | lpc.c | 142 float *work=alloca(sizeof(*work)*(m+n)); local 146 work[i]=0.f; 149 work[i]=prime[i]; 156 y-=work[o++]*coeff[--p]; 158 data[i]=work[o]=y;
|
/external/parameter-framework/asio/include/asio/ |
H A D | io_service.hpp | 110 * @par Stopping the io_service from running out of work 113 * returning when there is no more work to do. For example, the io_service may 116 * creating an object of type asio::io_service::work: 119 * asio::io_service::work work(io_service); 128 * be allowed to finish normally, the work object may be explicitly destroyed. 131 * auto_ptr<asio::io_service::work> work( 132 * new asio::io_service::work(io_service)); 134 * work 605 class io_service::work class in class:asio::io_service [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/ |
H A D | io_service.hpp | 110 * @par Stopping the io_service from running out of work 113 * returning when there is no more work to do. For example, the io_service may 116 * creating an object of type asio::io_service::work: 119 * asio::io_service::work work(io_service); 128 * be allowed to finish normally, the work object may be explicitly destroyed. 131 * auto_ptr<asio::io_service::work> work( 132 * new asio::io_service::work(io_service)); 134 * work 605 class io_service::work class in class:asio::io_service [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
H A D | LevenbergMarquardtEstimator.java | 4 * this work for additional information regarding copyright ownership. 29 * <p>This implementation <em>should</em> work even for over-determined systems 493 * @param work1 work array 494 * @param work2 work array 495 * @param work3 work array 670 * @param work work array 673 double[] lmDiag, double[] work) { 683 work[j] = qy[j]; 725 final double temp = cos * work[ 672 determineLMDirection(double[] qy, double[] diag, double[] lmDiag, double[] work) argument [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
H A D | LevenbergMarquardtOptimizer.java | 4 * this work for additional information regarding copyright ownership. 32 * <p>This implementation <em>should</em> work even for over-determined systems 500 * @param work1 work array 501 * @param work2 work array 502 * @param work3 work array 671 * @param work work array 674 double[] lmDiag, double[] work) { 684 work[j] = qy[j]; 726 final double temp = cos * work[ 673 determineLMDirection(double[] qy, double[] diag, double[] lmDiag, double[] work) argument [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
H A D | Percentile.java | 4 * this work for additional information regarding copyright ownership. 275 double[] work; 278 work = getDataRef(); 281 work = new double[length]; 282 System.arraycopy(values, begin, work, 0, length); 288 return select(work, pivotsHeap, 0); 291 return select(work, pivotsHeap, length - 1); 293 double lower = select(work, pivotsHeap, intPos - 1); 294 double upper = select(work, pivotsHeap, intPos); 299 * Select the k<sup>th</sup> smallest element from work arra 309 select(final double[] work, final int[] pivotsHeap, final int k) argument 359 medianOf3(final double[] work, final int begin, final int end) argument 396 partition(final double[] work, final int begin, final int end, final int pivot) argument 433 insertionSort(final double[] work, final int begin, final int end) argument [all...] |
/external/boringssl/src/crypto/curve25519/ |
H A D | x25519-x86_64.c | 17 void x25519_x86_64_ladderstep(fe25519 *work); 179 fe25519 work[5]; local 181 work[0] = *xr; 182 fe25519_setint(work + 1, 1); 183 fe25519_setint(work + 2, 0); 184 work[3] = *xr; 185 fe25519_setint(work + 4, 1); 196 x25519_x86_64_work_cswap(work + 1, swap); 197 x25519_x86_64_ladderstep(work); 203 *xr = work[ [all...] |
/external/pdfium/third_party/zlib_v128/ |
H A D | inftrees.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least 24 lens shorts, which is used as a work area. type is the type of code 38 unsigned short FAR *work) 96 table. The sorted table is work[], with that space being provided by 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; 183 base = extra = work; /* dummy value--not used */ 219 if ((int)(work[sym]) < end) { 221 here.val = work[sym]; 223 else if ((int)(work[sym]) > end) { 224 here.op = (unsigned char)(extra[work[sy 32 inflate_table( codetype type, unsigned short FAR *lens, unsigned codes, code FAR * FAR *table, unsigned FAR *bits, unsigned short FAR *work) argument [all...] |
/external/skia/src/core/ |
H A D | SkTaskGroup.cpp | 58 if (!gGlobal) { // If we have no threads, the work must already be done. 65 Work work; local 67 // We're stealing work opportunistically, 68 // so we never call fWorkAvailable.wait(), which could sleep us if there's no work. 72 // Someone has picked up all the work (including ours). How nice of them! 76 work = gGlobal->fWork.back(); 81 work.fn(); 82 work.pending->fetch_add(-1, sk_memory_order_release); // Pairs with load above. 126 Work work = { fn, pending }; local 130 fWork.push_back(work); 140 Work work = { [i, fn]() { fn(i); }, pending }; local 149 Work work; local [all...] |
/external/toybox/toys/lsb/ |
H A D | md5sum.c | 133 unsigned work; local 135 work = *rot[2] ^ *rot[3]; 136 if (!i) work = (work & *rot[1]) ^ *rot[3]; 138 if (i==2) work = ((*rot[1]|*rot[2])&*rot[3])|(*rot[1]&*rot[2]); 139 else work ^= *rot[1]; 143 work += block[count] = (rol(block[count],24)&0xFF00FF00) 146 work += block[count&15] = rol(block[(count+13)&15] 148 *rot[4] += work + rol(*rot[0],5) + rconsts[i];
|
/external/webp/src/enc/ |
H A D | picture_rescale.c | 167 rescaler_t* const work, 173 num_channels, work); 197 rescaler_t* work; local 213 work = (rescaler_t*)WebPSafeMalloc(2ULL * width, sizeof(*work)); 214 if (work == NULL) { 222 tmp.a, width, height, tmp.a_stride, work, 1); 229 tmp.y, width, height, tmp.y_stride, work, 1); 235 HALVE(width), HALVE(height), tmp.uv_stride, work, 1); 239 HALVE(width), HALVE(height), tmp.uv_stride, work, 163 RescalePlane(const uint8_t* src, int src_width, int src_height, int src_stride, uint8_t* dst, int dst_width, int dst_height, int dst_stride, rescaler_t* const work, int num_channels) argument [all...] |
/external/webp/src/utils/ |
H A D | rescaler.c | 25 int num_channels, rescaler_t* const work) { 66 wrk->irow = work; 67 wrk->frow = work + num_channels * dst_width; 68 memset(work, 0, 2 * dst_width * num_channels * sizeof(*work)); 22 WebPRescalerInit(WebPRescaler* const wrk, int src_width, int src_height, uint8_t* const dst, int dst_width, int dst_height, int dst_stride, int num_channels, rescaler_t* const work) argument
|