/external/libgdx/gdx/src/com/badlogic/gdx/ |
D | InputMultiplexer.java | 25 private Array<InputProcessor> processors = new Array(4); field in InputMultiplexer 30 public InputMultiplexer (InputProcessor... processors) { in InputMultiplexer() argument 31 for (int i = 0; i < processors.length; i++) in InputMultiplexer() 32 this.processors.add(processors[i]); in InputMultiplexer() 37 processors.insert(index, processor); in addProcessor() 41 processors.removeIndex(index); in removeProcessor() 46 processors.add(processor); in addProcessor() 50 processors.removeValue(processor, true); in removeProcessor() 55 return processors.size; in size() 59 processors.clear(); in clear() [all …]
|
/external/squashfs-tools/squashfs-tools/ |
D | restore.c | 54 extern int processors; 96 for(i = 0; i < processors; i++) in restore_thrd() 98 for(i = 0; i < processors; i++) in restore_thrd() 108 for(i = 0; i < processors; i++) in restore_thrd() 110 for(i = 0; i < processors; i++) in restore_thrd() 129 for(i = 0; i < processors; i++) in restore_thrd() 131 for(i = 0; i < processors; i++) in restore_thrd()
|
D | unsquashfs.c | 52 int processors = -1; variable 2198 if(processors == -1) { in initialise_threads() 2201 size_t len = sizeof(processors); in initialise_threads() 2210 if(sysctl(mib, 2, &processors, &len, NULL, 0) == -1) { in initialise_threads() 2213 processors = 1; in initialise_threads() 2216 processors = sysconf(_SC_NPROCESSORS_ONLN); in initialise_threads() 2220 if(add_overflow(processors, 3) || in initialise_threads() 2221 multiply_overflow(processors + 3, sizeof(pthread_t))) in initialise_threads() 2224 thread = malloc((3 + processors) * sizeof(pthread_t)); in initialise_threads() 2334 for(i = 0; i < processors; i++) { in initialise_threads() [all …]
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
D | MainProcessor.java | 49 List<JarProcessor> processors = new ArrayList<JarProcessor>(); in MainProcessor() local 51 processors.add(ManifestProcessor.getInstance()); in MainProcessor() 53 processors.add(kp); in MainProcessor() 54 processors.add(new ZapProcessor(zapList)); in MainProcessor() 55 …processors.add(new JarTransformerChain(new RemappingClassTransformer[]{ new RemappingClassTransfor… in MainProcessor() 56 processors.add(new ResourceProcessor(pr)); in MainProcessor() 57 chain = new JarProcessorChain(processors.toArray(new JarProcessor[processors.size()])); in MainProcessor()
|
/external/skia/src/gpu/ |
D | GrProcOptInfo.cpp | 14 void GrProcOptInfo::calcWithInitialValues(const GrFragmentProcessor * const processors[], in calcWithInitialValues() argument 26 this->internalCalc(processors, cnt, false); in calcWithInitialValues() 33 void GrProcOptInfo::completeCalculations(const GrFragmentProcessor * const processors[], int cnt) { in completeCalculations() argument 34 this->internalCalc(processors, cnt, false); in completeCalculations() 37 void GrProcOptInfo::internalCalc(const GrFragmentProcessor* const processors[], in internalCalc() argument 46 const GrFragmentProcessor* processor = processors[i]; in internalCalc()
|
D | GrProcOptInfo.h | 36 void completeCalculations(const GrFragmentProcessor * const processors[], int cnt);
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/ |
D | Icu4jTransform.java | 30 import com.google.currysrc.processors.HidePublicClasses; 31 import com.google.currysrc.processors.InsertHeader; 32 import com.google.currysrc.processors.ModifyQualifiedNames; 33 import com.google.currysrc.processors.ModifyStringLiterals; 34 import com.google.currysrc.processors.RemoveJavaDocTags; 35 import com.google.currysrc.processors.RenamePackage; 36 import com.google.currysrc.processors.ReplaceSelectedJavadoc; 37 import com.google.currysrc.processors.ReplaceTextCommentScanner;
|
D | TranslateJcite.java | 23 import com.google.currysrc.processors.BaseModifyCommentScanner; 24 import com.google.currysrc.processors.BaseTagElementNodeScanner;
|
D | HideDraftProvisionalInternal.java | 19 import com.google.currysrc.processors.BaseJavadocTagJavadoc;
|
/external/llvm/lib/Target/ARM/ |
D | ARM.td | 98 // Some processors have FP multiply-accumulate instructions that don't 109 // Some processors benefit from using NEON instructions for scalar 122 /// processors. 131 // Some processors perform return stack prediction. CodeGen should avoid issue 233 "Cortex-A5 ARM processors", []>; 235 "Cortex-A7 ARM processors", []>; 237 "Cortex-A8 ARM processors", []>; 239 "Cortex-A9 ARM processors", []>; 241 "Cortex-A12 ARM processors", []>; 243 "Cortex-A15 ARM processors", []>; [all …]
|
/external/markdown/docs/ |
D | release-2.0.txt | 28 * The various processors and patterns are now stored with OrderedDicts rather 29 than lists. Any code adding processors and/or patterns into Python-Markdown 31 * The various types of processors available have been either combined, added, 32 or removed. Ensure that your processors match the currently supported types.
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-3.1 | 19 compression threads are created as there are available processors. 44 -processors <processors> 46 This specifies the number of processors used by Mksquashfs. 47 By default this is the number of available processors.
|
/external/llvm/test/CodeGen/X86/ |
D | x86-64-double-shifts-Oz-Os-O2.ll | 5 ; even for X86_64 processors that are known to have poor latency double 27 ; even for X86_64 processors that are known to have poor latency double 48 ; for size for X86_64 processors that are known to have poor latency double
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64.td | 95 "Cortex-A35 ARM processors", 103 "Cortex-A53 ARM processors", 111 "Cortex-A57 ARM processors",
|
/external/autotest/client/tests/perfmon/ |
D | control | 6 processors.
|
/external/compiler-rt/lib/builtins/arm/ |
D | softfloat-alias.list | 3 # aliased to the *vfp functions on arm processors
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/ |
D | BaseJavadocTagJavadoc.java | 16 package com.google.currysrc.processors;
|
D | ReplaceTextCommentScanner.java | 16 package com.google.currysrc.processors;
|
D | HidePublicClasses.java | 16 package com.google.currysrc.processors;
|
D | InsertHeader.java | 16 package com.google.currysrc.processors;
|
D | BaseTagElementNodeScanner.java | 16 package com.google.currysrc.processors;
|
/external/llvm/test/CodeGen/PowerPC/ |
D | pwr3-6x.ll | 1 ; Test basic support for some older processors.
|
/external/dagger2/ |
D | CHANGELOG.md | 12 more nicely with other processors, avoiding over-validating aspects that it doesn't 13 need, which may yet not have been generated by other processors in a different round
|
/external/valgrind/exp-bbv/tests/x86/ |
D | fldcw_check.S | 6 # instruction. On most x86 processors the retired_instruction
|
/external/valgrind/exp-bbv/tests/amd64-linux/ |
D | fldcw_check.S | 6 # instruction. On most x86 processors the retired_instruction
|