Home
last modified time | relevance | path

Searched refs:work (Results 1 – 25 of 1471) sorted by relevance

12345678910>>...59

/external/wpa_supplicant_8/src/crypto/
Ddes-internal.c320 u32 work, right, leftt; in desfunc() local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
327 right ^= work; in desfunc()
328 leftt ^= (work << 4); in desfunc()
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
331 right ^= work; in desfunc()
332 leftt ^= (work << 16); in desfunc()
334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc()
335 leftt ^= work; in desfunc()
336 right ^= (work << 2); in desfunc()
[all …]
/external/libvncserver/common/
Dd3des.c153 unsigned long work[2]; in rfbDes() local
155 scrunch(inblock, work); in rfbDes()
156 desfunc(work, KnL); in rfbDes()
157 unscrun(work, outblock); in rfbDes()
336 register unsigned long fval, work, right, leftt; in desfunc() local
341 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
342 right ^= work; in desfunc()
343 leftt ^= (work << 4); in desfunc()
344 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
345 right ^= work; in desfunc()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DDESEngine.java408 int work, right, left; in desFunc() local
420 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; in desFunc()
421 right ^= work; in desFunc()
422 left ^= (work << 4); in desFunc()
423 work = ((left >>> 16) ^ right) & 0x0000ffff; in desFunc()
424 right ^= work; in desFunc()
425 left ^= (work << 16); in desFunc()
426 work = ((right >>> 2) ^ left) & 0x33333333; in desFunc()
427 left ^= work; in desFunc()
428 right ^= (work << 2); in desFunc()
[all …]
/external/valgrind/coregrind/m_demangle/
Dcplus-dem.c70 #define CURRENT_DEMANGLING_STYLE work->options
160 #define PRINT_ANSI_QUALIFIERS (work -> options & DMGL_ANSI)
161 #define PRINT_ARG_TYPES (work -> options & DMGL_PARAMS)
338 #define SCOPE_STRING(work) ((work->options & DMGL_JAVA) ? "." : "::") argument
364 demangle_template_template_parm (struct work_stuff *work,
368 demangle_template (struct work_stuff *work, const char **, string *,
653 struct work_stuff work[1]; in cplus_demangle_opname() local
659 memset ((char *) work, 0, sizeof (work)); in cplus_demangle_opname()
660 work->options = options; in cplus_demangle_opname()
668 if (do_type (work, &tem, &type)) in cplus_demangle_opname()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DPercentile.java275 double[] work; in evaluate() local
278 work = getDataRef(); in evaluate()
281 work = new double[length]; in evaluate()
282 System.arraycopy(values, begin, work, 0, length); in evaluate()
288 return select(work, pivotsHeap, 0); in evaluate()
291 return select(work, pivotsHeap, length - 1); in evaluate()
293 double lower = select(work, pivotsHeap, intPos - 1); in evaluate()
294 double upper = select(work, pivotsHeap, intPos); in evaluate()
309 private double select(final double[] work, final int[] pivotsHeap, final int k) { in select() argument
312 int end = work.length; in select()
[all …]
/external/clang/test/Analysis/
Dcxx-for-range.cpp4 extern void work();
9 work(); in testLoop()
10 work(); in testLoop()
13 work(); in testLoop()
14 work(); in testLoop()
39 work(); in testLoopOpaqueCollection()
40 work(); in testLoopOpaqueCollection()
43 work(); in testLoopOpaqueCollection()
44 work(); in testLoopOpaqueCollection()
74 work(); in testLoopOpaqueIterator()
[all …]
/external/fio/lib/
Dtp.c22 struct tp_work *work; in tp_flush_work() local
27 work = flist_entry(list->next, struct tp_work, list); in tp_flush_work()
28 flist_del(&work->list); in tp_flush_work()
30 prio = work->prio; in tp_flush_work()
34 work->fn(work); in tp_flush_work()
51 if (!tdat->thread_exit && flist_empty(&tdat->work)) in tp_thread()
54 if (!flist_empty(&tdat->work)) in tp_thread()
55 flist_splice_tail_init(&tdat->work, &work_list); in tp_thread()
71 void tp_queue_work(struct tp_data *tdat, struct tp_work *work) in tp_queue_work() argument
73 work->done = 0; in tp_queue_work()
[all …]
/external/tremolo/Tremolo/
Dcodebook.c233 ogg_uint32_t *work; in _make_decode_table() local
243 s->dec_table=_ogg_malloc((s->entries*2+1)*sizeof(*work)); in _make_decode_table()
254 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1; in _make_decode_table()
256 work=calloc((s->entries*2+1),sizeof(*work)); in _make_decode_table()
257 if (!work) return 1; in _make_decode_table()
258 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype)) goto error_out; in _make_decode_table()
270 (((work[i] & 0x80000000UL) >> 24) | work[i]); in _make_decode_table()
275 (((work[i] & 0x80000000UL) >> 16) | work[i]); in _make_decode_table()
287 if(work[i]&0x80000000UL){ in _make_decode_table()
288 if(work[i+1]&0x80000000UL){ in _make_decode_table()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_fence.c43 LIST_INITHEAD(&(*fence)->work); in nouveau_fence_new()
54 struct nouveau_fence_work *work, *tmp; in nouveau_fence_trigger_work() local
56 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) { in nouveau_fence_trigger_work()
57 work->func(work->data); in nouveau_fence_trigger_work()
58 LIST_DEL(&work->list); in nouveau_fence_trigger_work()
59 FREE(work); in nouveau_fence_trigger_work()
67 struct nouveau_fence_work *work; in nouveau_fence_work() local
74 work = CALLOC_STRUCT(nouveau_fence_work); in nouveau_fence_work()
75 if (!work) in nouveau_fence_work()
77 work->func = func; in nouveau_fence_work()
[all …]
/external/compiler-rt/lib/asan/
Dasan_mac.cc365 void dispatch_async(dispatch_queue_t dq, void(^work)(void));
367 void(^work)(void));
369 void(^work)(void));
371 void(^work)(void));
372 void dispatch_source_set_event_handler(dispatch_source_t ds, void(^work)(void));
375 #define GET_ASAN_BLOCK(work) \ argument
381 work(); \
385 dispatch_queue_t dq, void(^work)(void)) {
387 GET_ASAN_BLOCK(work);
392 dispatch_group_t dg, dispatch_queue_t dq, void(^work)(void)) {
[all …]
/external/skia/src/core/
DSkTaskGroup.cpp55 Work work; in Wait() local
63 gGlobal->fWork.pop(&work); in Wait()
67 work.fn(work.arg); in Wait()
68 sk_atomic_dec(work.pending); // Release pairs with the sk_acquire_load() just above. in Wait()
113 Work work = { fn, arg, pending }; in add() local
117 fWork.push(work); in add()
128 Work work = { fn, (char*)arg + i*stride, pending }; in batch() local
129 batch[i] = work; in batch()
137 Work work; in Loop() local
147 pool->fWork.pop(&work); in Loop()
[all …]
/external/opencv/otherlibs/highgui/
Dgrfmt_jpeg.cpp658 int workspace[64], *work = workspace; in aan_idct8x8() local
662 for( i = 8; i > 0; i--, src += 8, work += 8 ) in aan_idct8x8()
682 work[7] = x3; work[6] = x0; in aan_idct8x8()
683 work[5] = x1; work[4] = x2; in aan_idct8x8()
696 x2 = work[7]; in aan_idct8x8()
698 work[7] = x1; work[0] = x2; in aan_idct8x8()
700 x2 = work[6]; in aan_idct8x8()
702 work[1] = x1; work[6] = x4; in aan_idct8x8()
704 x1 = work[5]; x2 = work[4]; in aan_idct8x8()
708 work[2] = x4; work[5] = x0; in aan_idct8x8()
[all …]
/external/webp/src/enc/
Dpicture_rescale.c178 int32_t* const work, in RescalePlane() argument
187 work); in RescalePlane()
188 memset(work, 0, 2 * dst_width * num_channels * sizeof(*work)); in RescalePlane()
212 int32_t* work; in WebPPictureRescale() local
234 work = (int32_t*)WebPSafeMalloc(2ULL * width, sizeof(*work)); in WebPPictureRescale()
235 if (work == NULL) { in WebPPictureRescale()
243 tmp.a, width, height, tmp.a_stride, work, 1); in WebPPictureRescale()
250 tmp.y, width, height, tmp.y_stride, work, 1); in WebPPictureRescale()
256 HALVE(width), HALVE(height), tmp.uv_stride, work, 1); in WebPPictureRescale()
260 HALVE(width), HALVE(height), tmp.uv_stride, work, 1); in WebPPictureRescale()
[all …]
/external/zlib/src/
Dinftrees.c32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument
38 unsigned short FAR *work;
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[sym]]);
225 here.val = base[work[sym]];
256 len = lens[work[sym]];
/external/zlib/src/contrib/infback9/
Dinftree9.c32 int inflate_table9(type, lens, codes, table, bits, work) in inflate_table9() argument
38 unsigned short FAR *work;
141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
177 base = extra = work; /* dummy value--not used */
213 if ((int)(work[sym]) < end) {
215 this.val = work[sym];
217 else if ((int)(work[sym]) > end) {
218 this.op = (unsigned char)(extra[work[sym]]);
219 this.val = base[work[sym]];
249 len = lens[work[sym]];
/external/bison/
DNOTICE19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
DCOPYING19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/external/dnsmasq/
DCOPYING-v319 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/external/elfutils/src/
DCOPYING19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/external/eigen/
DCOPYING.GPL19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/jszip/
DLICENSE.markdown49 any other work released this way by its authors. You can apply it to
110 "The Program" refers to any copyrightable work licensed under this
114 To "modify" a work means to copy from or adapt all or part of the work
116 exact copy. The resulting work is called a "modified version" of the
117 earlier work or a work "based on" the earlier work.
119 A "covered work" means either the unmodified Program or a work based
122 To "propagate" a work means to do anything with it that, without
129 To "convey" a work means any kind of propagation that enables other
136 tells the user that there is no warranty for the work (except to the
138 work under this License, and how to view a copy of this License. If
[all …]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
Dfx_zlib_inftrees.c38 unsigned short FAR *work) in inflate_table() argument
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
183 base = extra = work; /* dummy value--not used */ in inflate_table()
219 if ((int)(work[sym]) < end) { in inflate_table()
221 here.val = work[sym]; in inflate_table()
223 else if ((int)(work[sym]) > end) { in inflate_table()
224 here.op = (unsigned char)(extra[work[sym]]); in inflate_table()
225 here.val = base[work[sym]]; in inflate_table()
256 len = lens[work[sym]]; in inflate_table()
/external/openssh/
Dsmult_curve25519_ref.c124 static void mainloop(unsigned int work[64],const unsigned char e[32]) in mainloop()
145 for (j = 0;j < 32;++j) xzm1[j] = work[j]; in mainloop()
173 mult(xzn1b + 32,r,work); in mainloop()
177 for (j = 0;j < 64;++j) work[j] = xzm[j]; in mainloop()
251 unsigned int work[96]; in crypto_scalarmult_curve25519() local
258 for (i = 0;i < 32;++i) work[i] = p[i]; in crypto_scalarmult_curve25519()
259 mainloop(work,e); in crypto_scalarmult_curve25519()
260 recip(work + 32,work + 32); in crypto_scalarmult_curve25519()
261 mult(work + 64,work,work + 32); in crypto_scalarmult_curve25519()
262 freeze(work + 64); in crypto_scalarmult_curve25519()
[all …]
/external/bison/doc/
Dgpl-3.0.texi25 applies also to any other work released this way by its authors. You
89 ``The Program'' refers to any copyrightable work licensed under this
93 To ``modify'' a work means to copy from or adapt all or part of the work
95 an exact copy. The resulting work is called a ``modified version'' of
96 the earlier work or a work ``based on'' the earlier work.
98 A ``covered work'' means either the unmodified Program or a work based
101 To ``propagate'' a work means to do anything with it that, without
108 To ``convey'' a work means any kind of propagation that enables other
116 tells the user that there is no warranty for the work (except to the
118 work under this License, and how to view a copy of this License. If
[all …]
/external/toybox/toys/lsb/
Dmd5sum.c133 unsigned work; in sha1_transform() local
135 work = *rot[2] ^ *rot[3]; in sha1_transform()
136 if (!i) work = (work & *rot[1]) ^ *rot[3]; in sha1_transform()
138 if (i==2) work = ((*rot[1]|*rot[2])&*rot[3])|(*rot[1]&*rot[2]); in sha1_transform()
139 else work ^= *rot[1]; in sha1_transform()
143 work += block[count] = (rol(block[count],24)&0xFF00FF00) in sha1_transform()
146 work += block[count&15] = rol(block[(count+13)&15] in sha1_transform()
148 *rot[4] += work + rol(*rot[0],5) + rconsts[i]; in sha1_transform()

12345678910>>...59