Home
last modified time | relevance | path

Searched refs:processors (Results 1 – 25 of 157) sorted by relevance

1234567

/external/libgdx/gdx/src/com/badlogic/gdx/
DInputMultiplexer.java25 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/
Drestore.c54 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()
Dunsquashfs.c52 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/
DMainProcessor.java49 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()
55processors.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/
DGrProcOptInfo.cpp14 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()
DGrProcOptInfo.h36 void completeCalculations(const GrFragmentProcessor * const processors[], int cnt);
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
DIcu4jTransform.java30 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;
DTranslateJcite.java23 import com.google.currysrc.processors.BaseModifyCommentScanner;
24 import com.google.currysrc.processors.BaseTagElementNodeScanner;
DHideDraftProvisionalInternal.java19 import com.google.currysrc.processors.BaseJavadocTagJavadoc;
/external/llvm/lib/Target/ARM/
DARM.td98 // 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/
Drelease-2.0.txt28 * 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/
DREADME-3.119 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/
Dx86-64-double-shifts-Oz-Os-O2.ll5 ; 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/
DAArch64.td95 "Cortex-A35 ARM processors",
103 "Cortex-A53 ARM processors",
111 "Cortex-A57 ARM processors",
/external/autotest/client/tests/perfmon/
Dcontrol6 processors.
/external/compiler-rt/lib/builtins/arm/
Dsoftfloat-alias.list3 # aliased to the *vfp functions on arm processors
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
DBaseJavadocTagJavadoc.java16 package com.google.currysrc.processors;
DReplaceTextCommentScanner.java16 package com.google.currysrc.processors;
DHidePublicClasses.java16 package com.google.currysrc.processors;
DInsertHeader.java16 package com.google.currysrc.processors;
DBaseTagElementNodeScanner.java16 package com.google.currysrc.processors;
/external/llvm/test/CodeGen/PowerPC/
Dpwr3-6x.ll1 ; Test basic support for some older processors.
/external/dagger2/
DCHANGELOG.md12 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/
Dfldcw_check.S6 # instruction. On most x86 processors the retired_instruction
/external/valgrind/exp-bbv/tests/amd64-linux/
Dfldcw_check.S6 # instruction. On most x86 processors the retired_instruction

1234567