Home
last modified time | relevance | path

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

12345678910>>...93

/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/compiler-rt/lib/asan/
Dasan_mac.cc237 void dispatch_async(dispatch_queue_t dq, void(^work)(void));
239 void(^work)(void));
241 void(^work)(void));
243 void(^work)(void));
244 void dispatch_source_set_event_handler(dispatch_source_t ds, void(^work)(void));
247 #define GET_ASAN_BLOCK(work) \ argument
253 work(); \
257 dispatch_queue_t dq, void(^work)(void)) {
259 GET_ASAN_BLOCK(work);
264 dispatch_group_t dg, dispatch_queue_t dq, void(^work)(void)) {
[all …]
/external/tremolo/Tremolo/
Dcodebook.c239 ogg_uint32_t *work; in _make_decode_table() local
249 s->dec_table=_ogg_malloc((s->entries*2+1)*sizeof(*work)); in _make_decode_table()
260 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1; in _make_decode_table()
262 work=calloc((s->entries*2+1),sizeof(*work)); in _make_decode_table()
263 if (!work) return 1; in _make_decode_table()
264 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype)) goto error_out; in _make_decode_table()
276 (((work[i] & 0x80000000UL) >> 24) | work[i]); in _make_decode_table()
281 (((work[i] & 0x80000000UL) >> 16) | work[i]); in _make_decode_table()
293 if(work[i]&0x80000000UL){ in _make_decode_table()
294 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/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/eigen/Eigen/src/misc/
Dlapacke.h2250 lapack_int ldc, float* work );
2253 lapack_int ldc, double* work );
2257 lapack_int ldc, lapack_complex_float* work );
2261 lapack_int ldc, lapack_complex_double* work );
4477 float* q, lapack_int* iq, float* work,
4482 double* q, lapack_int* iq, double* work,
4489 lapack_int ldc, float* work );
4494 double* c, lapack_int ldc, double* work );
4500 lapack_int ldc, float* work );
4506 lapack_int ldc, double* work );
[all …]
/external/skia/src/core/
DSkExecutor.cpp34 void add(std::function<void(void)> work) override { in add() argument
35 work(); in add()
70 virtual void add(std::function<void(void)> work) override { in add() argument
74 fWork.emplace_back(std::move(work)); in add()
90 std::function<void(void)> work; in do_work() local
94 work = std::move(fWork.back()); in do_work()
98 if (!work) { in do_work()
102 work(); in do_work()
/external/parameter-framework/asio-1.10.6/include/asio/impl/
Dio_service.hpp110 inline io_service::work::work(asio::io_service& io_service) in work() function in asio::io_service::work
116 inline io_service::work::work(const work& other) in work() function in asio::io_service::work
122 inline io_service::work::~work() in ~work()
127 inline asio::io_service& io_service::work::get_io_service() in get_io_service()
/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/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/elfutils/
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/libnl/doc/
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/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/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/syslinux/com32/lib/zlib/
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/webp/src/enc/
Dpicture_rescale_enc.c167 rescaler_t* const work, in RescalePlane() argument
173 num_channels, work); in RescalePlane()
197 rescaler_t* work; in WebPPictureRescale() local
213 work = (rescaler_t*)WebPSafeMalloc(2ULL * width, sizeof(*work)); in WebPPictureRescale()
214 if (work == NULL) { in WebPPictureRescale()
222 tmp.a, width, height, tmp.a_stride, work, 1); in WebPPictureRescale()
229 tmp.y, width, height, tmp.y_stride, work, 1); in WebPPictureRescale()
235 HALVE(width), HALVE(height), tmp.uv_stride, work, 1); in WebPPictureRescale()
239 HALVE(width), HALVE(height), tmp.uv_stride, work, 1); in WebPPictureRescale()
241 work = (rescaler_t*)WebPSafeMalloc(2ULL * width * 4, sizeof(*work)); in WebPPictureRescale()
[all …]
/external/pdfium/third_party/zlib_v128/
Dinftrees.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()

12345678910>>...93