Searched defs:work (Results 1 - 25 of 87) sorted by relevance

1234

/external/clang/test/CodeGen/
H A D2003-11-01-C99-CompoundLiteral.c6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, }; local
/external/ceres-solver/internal/ceres/
H A Dlapack.cc61 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 Dtp.c6 * 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 Dtp.h23 struct flist_head work; member in struct:tp_data
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp12.cpp64 void work(int n) { // expected-note{{declared here}} function in struct:s1
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_fence.h26 struct list_head work; member in struct:nouveau_fence
H A Dnouveau_fence.c43 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 Dinflate9.h45 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/external/libvorbis/lib/
H A Dlpc.c142 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;
H A Dblock.c419 float *work=alloca(v->pcm_current*sizeof(*work)); local
427 work[j]=v->pcm[i][v->pcm_current-j-1];
430 vorbis_lpc_from_data(work,lpc,v->pcm_current-v->centerW,order);
435 _analysis_output("predataL",0,work,v->pcm_current-v->centerW,0,0,0);
437 _analysis_output("predataR",0,work,v->pcm_current-v->centerW,0,0,0);
439 _analysis_output("predata",0,work,v->pcm_current-v->centerW,0,0,0);
444 vorbis_lpc_predict(lpc,work+v->pcm_current-v->centerW-order,
446 work+v->pcm_current-v->centerW,
450 v->pcm[i][v->pcm_current-j-1]=work[
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DLevenbergMarquardtEstimator.java4 * 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 DLevenbergMarquardtOptimizer.java4 * 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 DPercentile.java4 * 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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inftrees.c23 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 DSkTaskGroup.cpp49 if (!gGlobal) { // If we have no threads, the work must already be done.
55 Work work; local
59 // Someone has picked up all the work (including ours). How nice of them!
63 gGlobal->fWork.pop(&work);
67 work.fn(work.arg);
68 sk_atomic_dec(work.pending); // Release pairs with the sk_acquire_load() just above.
113 Work work = { fn, arg, pending }; local
117 fWork.push(work);
128 Work work local
137 Work work; local
[all...]
/external/toybox/toys/lsb/
H A Dmd5sum.c133 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 Dpicture_rescale.c178 int32_t* const work,
187 work);
188 memset(work, 0, 2 * dst_width * num_channels * sizeof(*work));
212 int32_t* work; local
234 work = (int32_t*)WebPSafeMalloc(2ULL * width, sizeof(*work));
235 if (work == NULL) {
243 tmp.a, width, height, tmp.a_stride, work, 1);
250 tmp.y, width, height, tmp.y_stride, work,
174 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, int32_t* const work, int num_channels) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAToDFAConverter.java43 protected List work = new LinkedList(); field in class:NFAToDFAConverter
83 while ( work.size()>0 &&
86 DFAState d = (DFAState) work.get(0);
112 work.remove(0); // done with it; remove from work list
191 work.add(startState);
202 //System.out.println("work on DFA state "+d);
240 return; // no more work to do on this accept state
378 * Clearly, alt 3 is predicted with extra work since it tests 0..7
940 * becomes a stop state; don't add to work lis
[all...]
/external/drm_hwcomposer/
H A Dgl_compositor.cpp279 GLWorker::Work work; local
280 work.layers = composition->layers.data();
281 work.num_layers = composition->layers.size();
282 work.timeline_fd = composition->timeline_fd;
283 work.framebuffer = target->fb;
285 ret = priv_->worker.DoWork(&work);
287 if (work.timeline_fd >= 0) {
288 sw_sync_timeline_inc(work.timeline_fd, work.num_layers + 1);
289 close(work
[all...]
/external/libvncserver/common/
H A Dd3des.c153 unsigned long work[2]; local
155 scrunch(inblock, work);
156 desfunc(work, KnL);
157 unscrun(work, outblock);
336 register unsigned long fval, work, right, leftt; local
341 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
342 right ^= work;
343 leftt ^= (work << 4);
344 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
345 right ^= work;
[all...]
/external/openssh/
H A Dsmult_curve25519_ref.c124 static void mainloop(unsigned int work[64],const unsigned char e[32]) argument
145 for (j = 0;j < 32;++j) xzm1[j] = work[j];
173 mult(xzn1b + 32,r,work);
177 for (j = 0;j < 64;++j) work[j] = xzm[j];
251 unsigned int work[96]; local
258 for (i = 0;i < 32;++i) work[i] = p[i];
259 mainloop(work,e);
260 recip(work + 32,work + 32);
261 mult(work
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
328 leftt ^= (work << 4);
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
332 leftt ^= (work << 16);
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
335 leftt ^= work;
336 right ^= (work <<
403 u32 ek[32], work[2]; local
436 u32 work[2]; local
447 u32 work[2]; local
470 u32 work[2]; local
484 u32 work[2]; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
328 leftt ^= (work << 4);
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
332 leftt ^= (work << 16);
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
335 leftt ^= work;
336 right ^= (work <<
403 u32 ek[32], work[2]; local
436 u32 work[2]; local
447 u32 work[2]; local
470 u32 work[2]; local
484 u32 work[2]; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
328 leftt ^= (work << 4);
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
332 leftt ^= (work << 16);
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
335 leftt ^= work;
336 right ^= (work <<
403 u32 ek[32], work[2]; local
436 u32 work[2]; local
447 u32 work[2]; local
470 u32 work[2]; local
484 u32 work[2]; local
[all...]
/external/zlib/src/test/
H A Dinfcover.c519 /* allocate work areas */
621 unsigned short lens[16], work[16]; local
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
635 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);

Completed in 792 milliseconds

1234