/external/wpa_supplicant_8/src/crypto/ |
D | des-internal.c | 326 u32 work, right, leftt; in desfunc() local 332 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 333 right ^= work; in desfunc() 334 leftt ^= (work << 4); in desfunc() 336 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 337 right ^= work; in desfunc() 338 leftt ^= (work << 16); in desfunc() 340 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 341 leftt ^= work; in desfunc() 342 right ^= (work << 2); in desfunc() [all …]
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
D | des.c | 328 u32 work, right, leftt; in desfunc() local 334 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 335 right ^= work; in desfunc() 336 leftt ^= (work << 4); in desfunc() 338 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 339 right ^= work; in desfunc() 340 leftt ^= (work << 16); in desfunc() 342 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 343 leftt ^= work; in desfunc() 344 right ^= (work << 2); in desfunc() [all …]
|
/external/wpa_supplicant/ |
D | des.c | 328 u32 work, right, leftt; in desfunc() local 334 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 335 right ^= work; in desfunc() 336 leftt ^= (work << 4); in desfunc() 338 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 339 right ^= work; in desfunc() 340 leftt ^= (work << 16); in desfunc() 342 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 343 leftt ^= work; in desfunc() 344 right ^= (work << 2); in desfunc() [all …]
|
/external/qemu/ |
D | d3des.c | 144 unsigned long work[2]; in des() local 146 scrunch(inblock, work); in des() 147 desfunc(work, KnL); in des() 148 unscrun(work, outblock); in des() 324 register unsigned long fval, work, right, leftt; in desfunc() local 329 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 330 right ^= work; in desfunc() 331 leftt ^= (work << 4); in desfunc() 332 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 333 right ^= work; in desfunc() [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/ |
D | DESEngine.java | 407 int work, right, left; in desFunc() local 419 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; in desFunc() 420 right ^= work; in desFunc() 421 left ^= (work << 4); in desFunc() 422 work = ((left >>> 16) ^ right) & 0x0000ffff; in desFunc() 423 right ^= work; in desFunc() 424 left ^= (work << 16); in desFunc() 425 work = ((right >>> 2) ^ left) & 0x33333333; in desFunc() 426 left ^= work; in desFunc() 427 right ^= (work << 2); in desFunc() [all …]
|
/external/valgrind/main/coregrind/m_demangle/ |
D | cplus-dem.c | 70 #define CURRENT_DEMANGLING_STYLE work->options 162 #define PRINT_ANSI_QUALIFIERS (work -> options & DMGL_ANSI) 163 #define PRINT_ARG_TYPES (work -> options & DMGL_PARAMS) 340 #define SCOPE_STRING(work) ((work->options & DMGL_JAVA) ? "." : "::") argument 366 demangle_template_template_parm (struct work_stuff *work, 370 demangle_template (struct work_stuff *work, const char **, string *, 657 struct work_stuff work[1]; in cplus_demangle_opname() local 663 memset ((char *) work, 0, sizeof (work)); in cplus_demangle_opname() 664 work->options = options; in cplus_demangle_opname() 672 if (do_type (work, &tem, &type)) in cplus_demangle_opname() [all …]
|
/external/kernel-headers/original/linux/ |
D | completion.h | 18 #define COMPLETION_INITIALIZER(work) \ argument 19 { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) } 21 #define COMPLETION_INITIALIZER_ONSTACK(work) \ argument 22 ({ init_completion(&work); work; }) 24 #define DECLARE_COMPLETION(work) \ argument 25 struct completion work = COMPLETION_INITIALIZER(work) 33 # define DECLARE_COMPLETION_ONSTACK(work) \ argument 34 struct completion work = COMPLETION_INITIALIZER_ONSTACK(work) 36 # define DECLARE_COMPLETION_ONSTACK(work) DECLARE_COMPLETION(work) argument
|
D | workqueue.h | 24 struct work_struct work; member 64 extern int FASTCALL(queue_work(struct workqueue_struct *wq, struct work_struct *work)); 65 extern int FASTCALL(queue_delayed_work(struct workqueue_struct *wq, struct work_struct *work, unsig… 67 struct work_struct *work, unsigned long delay); 70 extern int FASTCALL(schedule_work(struct work_struct *work)); 71 extern int FASTCALL(schedule_delayed_work(struct work_struct *work, unsigned long delay)); 73 extern int schedule_delayed_work_on(int cpu, struct work_struct *work, unsigned long delay); 80 void cancel_rearming_delayed_work(struct work_struct *work); 91 static inline int cancel_delayed_work(struct work_struct *work) in cancel_delayed_work() argument 95 ret = del_timer_sync(&work->timer); in cancel_delayed_work() [all …]
|
/external/tremolo/Tremolo/ |
D | codebook.c | 219 ogg_uint32_t *work; in _make_decode_table() local 229 s->dec_table=_ogg_malloc((s->entries*2+1)*sizeof(*work)); in _make_decode_table() 240 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1; in _make_decode_table() 242 work=alloca((s->entries*2+1)*sizeof(*work)); in _make_decode_table() 243 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype))return 1; in _make_decode_table() 255 (((work[i] & 0x80000000UL) >> 24) | work[i]); in _make_decode_table() 260 (((work[i] & 0x80000000UL) >> 16) | work[i]); in _make_decode_table() 272 if(work[i]&0x80000000UL){ in _make_decode_table() 273 if(work[i+1]&0x80000000UL){ in _make_decode_table() 275 out[top]=(work[i]>>8 & 0x7f)|0x80; in _make_decode_table() [all …]
|
D | dsp.c | 73 v->work=(ogg_int32_t **)_ogg_malloc(vi->channels*sizeof(*v->work)); in vorbis_dsp_init() 76 v->work[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>1)* in vorbis_dsp_init() 77 sizeof(*v->work[i])); in vorbis_dsp_init() 100 if(v->work){ in vorbis_dsp_clear() 102 if(v->work[i])_ogg_free(v->work[i]); in vorbis_dsp_clear() 103 _ogg_free(v->work); in vorbis_dsp_clear() 154 v->lW,v->W,v->work[i],v->mdctright[i], in vorbis_dsp_pcmout() 229 mdct_shift_right(ci->blocksizes[vd->lW],vd->work[i],vd->mdctright[i]); in vorbis_dsp_synthesis()
|
/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/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/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/qemu/distrib/zlib-1.2.3/ |
D | inftrees.c | 32 int 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; 184 base = extra = work; /* dummy value--not used */ 219 if ((int)(work[sym]) < end) { 221 this.val = work[sym]; 223 else if ((int)(work[sym]) > end) { 224 this.op = (unsigned char)(extra[work[sym]]); 225 this.val = base[work[sym]]; 256 len = lens[work[sym]];
|
/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/chrome/browser/sync/glue/ |
D | database_model_worker.cc | 14 void DatabaseModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { in DoWorkAndWaitUntilDone() argument 17 work->Run(); in DoWorkAndWaitUntilDone() 23 work, &done))) { in DoWorkAndWaitUntilDone() 30 void DatabaseModelWorker::CallDoWorkAndSignalTask(Callback0::Type* work, in CallDoWorkAndSignalTask() argument 33 work->Run(); in CallDoWorkAndSignalTask()
|
D | password_model_worker.cc | 24 void PasswordModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { in DoWorkAndWaitUntilDone() argument 28 work, &done)); in DoWorkAndWaitUntilDone() 32 void PasswordModelWorker::CallDoWorkAndSignalTask(Callback0::Type* work, in CallDoWorkAndSignalTask() argument 34 work->Run(); in CallDoWorkAndSignalTask()
|
D | history_model_worker.cc | 19 WorkerTask(Callback0::Type* work, WaitableEvent* done) in WorkerTask() argument 20 : work_(work), done_(done) {} in WorkerTask() 46 void HistoryModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { in DoWorkAndWaitUntilDone() argument 48 scoped_refptr<WorkerTask> task(new WorkerTask(work, &done)); in DoWorkAndWaitUntilDone()
|
/external/dropbear/libtomcrypt/src/ciphers/ |
D | des.c | 1407 ulong32 work, right, leftt; in desfunc() local 1414 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 1415 right ^= work; in desfunc() 1416 leftt ^= (work << 4); in desfunc() 1418 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 1419 right ^= work; in desfunc() 1420 leftt ^= (work << 16); in desfunc() 1422 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 1423 leftt ^= work; in desfunc() 1424 right ^= (work << 2); in desfunc() [all …]
|
/external/markdown/tests/misc/ |
D | em-around-links.txt | 4 great folks* - This *does* work as expected. 6 great folks_ - This *does* work as expected. 8 great folks - This *does* work as expected. 10 great folks_ - This *does* work as expected. 13 great folks_ - This *does* work as expected.
|
/external/qemu/distrib/sdl-1.2.12/ |
D | COPYING | 75 combined work, a derivative of the original library. The ordinary 111 "work based on the library" and a "work that uses the library". The 128 The "Library", below, refers to any such software library or work 129 which has been distributed under these terms. A "work based on the 130 Library" means either the Library or any derivative work under 131 copyright law: that is to say, a work containing the Library or a 136 "Source code" for a work means the preferred form of the work for 145 such a program is covered only if its contents constitute a work based 163 of it, thus forming a work based on the Library, and copy and 164 distribute such modifications or work under the terms of Section 1 [all …]
|
/external/webkit/ |
D | NOTICE | 123 a textual and legal sense, the linked executable is a combined work, a 144 "work based on the library" and a "work that uses the library". The 164 The "Library", below, refers to any such software library or work 165 which has been distributed under these terms. A "work based on the 166 Library" means either the Library or any derivative work under 167 copyright law: that is to say, a work containing the Library or a 172 "Source code" for a work means the preferred form of the work for 181 such a program is covered only if its contents constitute a work based 199 of it, thus forming a work based on the Library, and copy and 200 distribute such modifications or work under the terms of Section 1 [all …]
|
/external/qemu-pc-bios/bochs/ |
D | COPYING | 75 combined work, a derivative of the original library. The ordinary 111 "work based on the library" and a "work that uses the library". The 128 The "Library", below, refers to any such software library or work 129 which has been distributed under these terms. A "work based on the 130 Library" means either the Library or any derivative work under 131 copyright law: that is to say, a work containing the Library or a 136 "Source code" for a work means the preferred form of the work for 145 such a program is covered only if its contents constitute a work based 163 of it, thus forming a work based on the Library, and copy and 164 distribute such modifications or work under the terms of Section 1 [all …]
|
/external/webkit/Tools/mangleme/ |
D | LICENSE | 75 combined work, a derivative of the original library. The ordinary 111 "work based on the library" and a "work that uses the library". The 128 The "Library", below, refers to any such software library or work 129 which has been distributed under these terms. A "work based on the 130 Library" means either the Library or any derivative work under 131 copyright law: that is to say, a work containing the Library or a 136 "Source code" for a work means the preferred form of the work for 145 such a program is covered only if its contents constitute a work based 163 of it, thus forming a work based on the Library, and copy and 164 distribute such modifications or work under the terms of Section 1 [all …]
|
/external/webkit/Source/WebCore/ |
D | LICENSE-LGPL-2.1 | 75 combined work, a derivative of the original library. The ordinary 111 "work based on the library" and a "work that uses the library". The 128 The "Library", below, refers to any such software library or work 129 which has been distributed under these terms. A "work based on the 130 Library" means either the Library or any derivative work under 131 copyright law: that is to say, a work containing the Library or a 136 "Source code" for a work means the preferred form of the work for 145 such a program is covered only if its contents constitute a work based 163 of it, thus forming a work based on the Library, and copy and 164 distribute such modifications or work under the terms of Section 1 [all …]
|