/external/wpa_supplicant_8/src/crypto/ |
D | des-internal.c | 320 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/ |
D | d3des.c | 153 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/ |
D | DESEngine.java | 408 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/ |
D | cplus-dem.c | 70 #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/ |
D | Percentile.java | 275 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/ |
D | cxx-for-range.cpp | 4 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/compiler-rt/lib/asan/ |
D | asan_mac.cc | 204 void dispatch_async(dispatch_queue_t dq, void(^work)(void)); 206 void(^work)(void)); 208 void(^work)(void)); 210 void(^work)(void)); 211 void dispatch_source_set_event_handler(dispatch_source_t ds, void(^work)(void)); 214 #define GET_ASAN_BLOCK(work) \ argument 220 work(); \ 224 dispatch_queue_t dq, void(^work)(void)) { 226 GET_ASAN_BLOCK(work); 231 dispatch_group_t dg, dispatch_queue_t dq, void(^work)(void)) { [all …]
|
/external/fio/lib/ |
D | tp.c | 22 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/ |
D | codebook.c | 239 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/ |
D | nouveau_fence.c | 43 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/skia/src/core/ |
D | SkTaskGroup.cpp | 65 Work work; in Wait() local 76 work = gGlobal->fWork.back(); in Wait() 81 work.fn(); in Wait() 82 work.pending->fetch_add(-1, sk_memory_order_release); // Pairs with load above. in Wait() 126 Work work = { fn, pending }; in add() local 130 fWork.push_back(work); in add() 140 Work work = { [i, fn]() { fn(i); }, pending }; in batch() local 141 fWork.push_back(work); in batch() 149 Work work; in Loop() local 160 work = pool->fWork.back(); in Loop() [all …]
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_jpeg.cpp | 658 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/parameter-framework/asio-1.10.6/include/asio/impl/ |
D | io_service.hpp | 110 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/opencv3/3rdparty/zlib/ |
D | inftrees.c | 32 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/ |
D | inftrees.c | 32 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/eigen/ |
D | COPYING.GPL | 19 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/ |
D | COPYING | 19 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/bison/ |
D | NOTICE | 19 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 …]
|
D | COPYING | 19 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/ |
D | COPYING-v3 | 19 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/catapult/tracing/third_party/jszip/ |
D | LICENSE.markdown | 49 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/zlib/src/contrib/infback9/ |
D | inftree9.c | 32 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/webp/src/enc/ |
D | picture_rescale.c | 167 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/ |
D | inftrees.c | 38 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/boringssl/src/ssl/test/runner/curve25519/ |
D | mont25519_amd64.go | 35 var work [5][5]uint64 37 work[0] = *xr 38 setint(&work[1], 1) 39 setint(&work[2], 0) 40 work[3] = *xr 41 setint(&work[4], 1) 51 cswap(&work[1], uint64(swap)) 52 ladderstep(&work) 58 *xr = work[1] 59 *zr = work[2]
|