/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/ |
D | ArchUtilsTest.java | 26 import org.apache.commons.lang3.arch.Processor; 27 import org.apache.commons.lang3.arch.Processor.Arch; 28 import org.apache.commons.lang3.arch.Processor.Type; 44 private void assertEqualsArchNotNull(final Processor.Arch arch, final Processor processor) { in assertEqualsArchNotNull() argument 46 assertNotNull(processor); in assertEqualsArchNotNull() 47 assertEquals(arch, processor.getArch()); in assertEqualsArchNotNull() 50 private void assertEqualsTypeNotNull(final Processor.Type type, final Processor processor) { in assertEqualsTypeNotNull() argument 52 assertNotNull(processor); in assertEqualsTypeNotNull() 53 assertEquals(type, processor.getType()); in assertEqualsTypeNotNull() 56 private void assertNotEqualsArchNotNull(final Processor.Arch arch, final Processor processor) { in assertNotEqualsArchNotNull() argument [all …]
|
/external/google-breakpad/ |
D | Makefile.am | 97 includepdir = $(includedir)/$(PACKAGE)/processor 98 includep_HEADERS = $(top_srcdir)/src/processor/*.h 165 # Not specific to processor, client or tools 173 # processor library, tools and tests 183 src/processor/microdump_stackwalk \ 184 src/processor/minidump_dump \ 185 src/processor/minidump_stackwalk 192 src/processor/address_map_unittest \ 193 src/processor/basic_source_line_resolver_unittest \ 194 src/processor/cfi_frame_info_unittest \ [all …]
|
D | Makefile.in | 149 # processor library, tools and tests 155 @DISABLE_PROCESSOR_FALSE@ src/processor/microdump_stackwalk \ 156 @DISABLE_PROCESSOR_FALSE@ src/processor/minidump_dump \ 157 @DISABLE_PROCESSOR_FALSE@ src/processor/minidump_stackwalk 163 @DISABLE_PROCESSOR_FALSE@ src/processor/address_map_unittest \ 164 @DISABLE_PROCESSOR_FALSE@ src/processor/basic_source_line_resolver_unittest \ 165 @DISABLE_PROCESSOR_FALSE@ src/processor/cfi_frame_info_unittest \ 166 @DISABLE_PROCESSOR_FALSE@ src/processor/contained_range_map_unittest \ 167 @DISABLE_PROCESSOR_FALSE@ src/processor/disassembler_x86_unittest \ 168 @DISABLE_PROCESSOR_FALSE@ src/processor/exploitability_unittest \ [all …]
|
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/ |
D | ArchUtils.java | 22 import org.apache.commons.lang3.arch.Processor; 36 private static final Map<String, Processor> ARCH_TO_PROCESSOR; 54 final Processor processor = new Processor(Processor.Arch.BIT_64, Processor.Type.AARCH_64); in init_Aarch_64Bit() local 55 addProcessors(processor, "aarch64"); in init_Aarch_64Bit() 59 final Processor processor = new Processor(Processor.Arch.BIT_32, Processor.Type.X86); in init_X86_32Bit() local 60 addProcessors(processor, "x86", "i386", "i486", "i586", "i686", "pentium"); in init_X86_32Bit() 64 final Processor processor = new Processor(Processor.Arch.BIT_64, Processor.Type.X86); in init_X86_64Bit() local 65 addProcessors(processor, "x86_64", "amd64", "em64t", "universal"); in init_X86_64Bit() 69 final Processor processor = new Processor(Processor.Arch.BIT_32, Processor.Type.IA_64); in init_IA64_32Bit() local 70 addProcessors(processor, "ia64_32", "ia64n"); in init_IA64_32Bit() [all …]
|
/external/cpuinfo/src/riscv/linux/ |
D | init.c | 26 * Parses the core cpus list for each processor. This function is called once 27 * per-processor, with the IDs of all other processors in the core list. 29 * The 'processor_[start|count]' are populated in the processor's 'core' 32 * The 'core_leader_id' of each processor is set to the smallest ID in it's 41 uint32_t processor, in core_cpus_parser() argument 48 /* If the processor already has a leader, use it. */ in core_cpus_parser() 49 if (bitmask_all(processors[processor].flags, CPUINFO_LINUX_FLAG_CORE_CLUSTER)) { in core_cpus_parser() 50 processor_start = processors[processor].core_leader_id; in core_cpus_parser() 58 * The first valid processor observed is the smallest ID in the in core_cpus_parser() 68 * If the cluster flag has not been set, assign the processor start. If in core_cpus_parser() [all …]
|
/external/dagger2/java/dagger/hilt/processor/ |
D | BUILD | 28 "//java/dagger/hilt/android/processor/internal/androidentrypoint:processor_lib", 29 "//java/dagger/hilt/android/processor/internal/bindvalue:bind_value_processor_lib", 30 "//java/dagger/hilt/android/processor/internal/customtestapplication:processor_lib", 31 "//java/dagger/hilt/android/processor/internal/viewmodel:processor_lib", 32 "//java/dagger/hilt/android/processor/internal/viewmodel:validation_plugin_lib", 33 "//java/dagger/hilt/processor/internal/aggregateddeps:processor_lib", 34 "//java/dagger/hilt/processor/internal/aliasof:processor_lib", 35 "//java/dagger/hilt/processor/internal/definecomponent:processor_lib", 36 "//java/dagger/hilt/processor/internal/earlyentrypoint:processor_lib", 37 "//java/dagger/hilt/processor/internal/generatesrootinput:processor_lib", [all …]
|
/external/cpuinfo/src/linux/ |
D | processors.c | 150 uint32_t cpuinfo_linux_get_processor_cur_frequency(uint32_t processor) { in cpuinfo_linux_get_processor_cur_frequency() argument 153 …nprintf(cur_frequency_filename, FREQUENCY_FILENAME_SIZE, CUR_FREQUENCY_FILENAME_FORMAT, processor); in cpuinfo_linux_get_processor_cur_frequency() 155 …fo_log_warning("failed to format filename for current frequency of processor %" PRIu32, processor); in cpuinfo_linux_get_processor_cur_frequency() 162 "parsed currrent frequency value of %" PRIu32 " KHz for logical processor %" PRIu32 " from %s", in cpuinfo_linux_get_processor_cur_frequency() 164 processor, in cpuinfo_linux_get_processor_cur_frequency() 169 "failed to parse current frequency for processor %" PRIu32 " from %s", in cpuinfo_linux_get_processor_cur_frequency() 170 processor, in cpuinfo_linux_get_processor_cur_frequency() 176 uint32_t cpuinfo_linux_get_processor_max_frequency(uint32_t processor) { in cpuinfo_linux_get_processor_max_frequency() argument 179 …nprintf(max_frequency_filename, FREQUENCY_FILENAME_SIZE, MAX_FREQUENCY_FILENAME_FORMAT, processor); in cpuinfo_linux_get_processor_max_frequency() 181 …puinfo_log_warning("failed to format filename for max frequency of processor %" PRIu32, processor); in cpuinfo_linux_get_processor_max_frequency() [all …]
|
/external/googleapis/google/cloud/documentai/v1beta3/ |
D | processor.proto | 33 // A processor version is an implementation of a processor. Each processor 35 // by the customer. A processor can only have one default version at a time. 40 …pattern: "projects/{project}/locations/{location}/processors/{processor}/processorVersions/{proces… 43 // Information about the upcoming deprecation of this processor version. 45 // The time at which this processor version will be deprecated. 48 // If set, the processor version that will be used as a replacement. 55 // The possible states of the processor version. 57 // The processor version is in an unspecified state. 60 // The processor version is deployed and can be used for processing. 63 // The processor version is being deployed. [all …]
|
/external/googleapis/google/cloud/documentai/v1/ |
D | processor.proto | 33 // A processor version is an implementation of a processor. Each processor 35 // by the customer. A processor can only have one default version at a time. 40 …pattern: "projects/{project}/locations/{location}/processors/{processor}/processorVersions/{proces… 43 // Information about the upcoming deprecation of this processor version. 45 // The time at which this processor version will be deprecated. 48 // If set, the processor version that will be used as a replacement. 54 // The possible states of the processor version. 56 // The processor version is in an unspecified state. 59 // The processor version is deployed and can be used for processing. 62 // The processor version is being deployed. [all …]
|
/external/dagger2/java/dagger/hilt/android/processor/ |
D | BUILD | 29 "//java/dagger/hilt/processor:artifact-lib-shared", 36 artifact_name = "Hilt Android Processor", 39 "//java/dagger/hilt/android/processor/internal:android_classnames", 40 "//java/dagger/hilt/android/processor/internal/androidentrypoint:android_generators", 41 "//java/dagger/hilt/android/processor/internal/androidentrypoint:metadata", 42 "//java/dagger/hilt/android/processor/internal/androidentrypoint:processor_lib", 43 "//java/dagger/hilt/android/processor/internal/bindvalue:bind_value_processor_lib", 44 "//java/dagger/hilt/android/processor/internal/customtestapplication:processor_lib", 45 "//java/dagger/hilt/android/processor/internal/viewmodel:validation_plugin_lib", 46 "//java/dagger/hilt/android/processor/internal/viewmodel:processor_lib", [all …]
|
/external/google-cloud-java/java-document-ai/proto-google-cloud-document-ai-v1/src/main/proto/google/cloud/documentai/v1/ |
D | processor.proto | 33 // A processor version is an implementation of a processor. Each processor 35 // by the customer. At a time, a processor can only have one default version 36 // version. So the processor's behavior (when processing documents) is defined 41 …pattern: "projects/{project}/locations/{location}/processors/{processor}/processorVersions/{proces… 44 // Information about the upcoming deprecation of this processor version. 46 // The time at which this processor version will be deprecated. 49 // If set, the processor version that will be used as a replacement. 56 // The possible states of the processor version. 58 // The processor version is in an unspecified state. 61 // The processor version is deployed and can be used for processing. [all …]
|
D | document_processor_service.proto | 28 import "google/cloud/documentai/v1/processor.proto"; 45 pattern: "projects/{project}/locations/{location}/processors/{processor}/humanReviewConfig" 53 // processor's definition. Processors are built using state-of-the-art Google 93 // Fetches processor types. Note that we do not use ListProcessorTypes here 103 // Lists the processor types that exist. 112 // Gets a processor type detail. 128 // Gets a processor detail. 129 rpc GetProcessor(GetProcessorRequest) returns (Processor) { 136 // Trains a new processor version. 152 // Gets a processor version detail. [all …]
|
/external/google-cloud-java/java-document-ai/proto-google-cloud-document-ai-v1beta3/src/main/proto/google/cloud/documentai/v1beta3/ |
D | processor.proto | 33 // A processor version is an implementation of a processor. Each processor 35 // by the customer. At a time, a processor can only have one default version 36 // version. So the processor's behavior (when processing documents) is defined 41 …pattern: "projects/{project}/locations/{location}/processors/{processor}/processorVersions/{proces… 44 // Information about the upcoming deprecation of this processor version. 46 // The time at which this processor version will be deprecated. 49 // If set, the processor version that will be used as a replacement. 56 // The possible states of the processor version. 58 // The processor version is in an unspecified state. 61 // The processor version is deployed and can be used for processing. [all …]
|
D | document_processor_service.proto | 28 import "google/cloud/documentai/v1beta3/processor.proto"; 44 pattern: "projects/{project}/locations/{location}/processors/{processor}/humanReviewConfig" 52 // processor's definition. Processors are built using state-of-the-art Google 92 // Fetches processor types. Note that we do not use ListProcessorTypes here 102 // Lists the processor types that exist. 111 // Gets a processor type detail. 127 // Gets a processor detail. 128 rpc GetProcessor(GetProcessorRequest) returns (Processor) { 135 // Trains a new processor version. 151 // Gets a processor version detail. [all …]
|
/external/dagger2/java/dagger/hilt/processor/internal/root/ |
D | BUILD | 16 # Annotation processor for Hilt. 25 processor_class = "dagger.hilt.processor.internal.root.ComponentTreeDepsProcessor", 45 "//java/dagger/hilt/android/processor/internal/androidentrypoint:android_generators", 46 "//java/dagger/hilt/android/processor/internal/androidentrypoint:metadata", 47 "//java/dagger/hilt/processor/internal:base_processor", 48 "//java/dagger/hilt/processor/internal:classnames", 49 "//java/dagger/hilt/processor/internal:compiler_options", 50 "//java/dagger/hilt/processor/internal:component_descriptor", 51 "//java/dagger/hilt/processor/internal:component_names", 52 "//java/dagger/hilt/processor/internal:processor_errors", [all …]
|
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Protocol/ |
D | Cpu.h | 4 This code abstracts the DXE core from processor implementation details. 32 /// The type of processor INIT. 40 EFI_CPU_INTERRUPT_HANDLER that is called when a processor interrupt occurs. 43 … occurred on the processor.This parameter is processor architecture specific. 44 @param SystemContext A pointer to the processor context when 45 the interrupt occurred on the processor. 59 from the processor's data cache. If Start is not aligned to a cache line 65 this function can just return EFI_SUCCESS. If the processor does not support 69 @param Start The beginning physical address to flush from the processor's data 71 @param Length The number of bytes to flush from the processor's data cache. This [all …]
|
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Protocol/ |
D | Cpu.h | 4 This code abstracts the DXE core from processor implementation details. 32 /// The type of processor INIT. 40 EFI_CPU_INTERRUPT_HANDLER that is called when a processor interrupt occurs. 43 … occurred on the processor.This parameter is processor architecture specific. 44 @param SystemContext A pointer to the processor context when 45 the interrupt occurred on the processor. 59 from the processor's data cache. If Start is not aligned to a cache line 65 this function can just return EFI_SUCCESS. If the processor does not support 69 @param Start The beginning physical address to flush from the processor's data 71 @param Length The number of bytes to flush from the processor's data cache. This [all …]
|
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Protocol/ |
D | Cpu.h | 4 This code abstracts the DXE core from processor implementation details. 32 /// The type of processor INIT. 40 EFI_CPU_INTERRUPT_HANDLER that is called when a processor interrupt occurs. 43 … occurred on the processor.This parameter is processor architecture specific. 44 @param SystemContext A pointer to the processor context when 45 the interrupt occurred on the processor. 59 from the processor's data cache. If Start is not aligned to a cache line 65 this function can just return EFI_SUCCESS. If the processor does not support 69 @param Start The beginning physical address to flush from the processor's data 71 @param Length The number of bytes to flush from the processor's data cache. This [all …]
|
/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Protocol/ |
D | Cpu.h | 4 This code abstracts the DXE core from processor implementation details. 38 /// The type of processor INIT. 46 EFI_CPU_INTERRUPT_HANDLER that is called when a processor interrupt occurs. 49 … occurred on the processor.This parameter is processor architecture specific. 50 @param SystemContext A pointer to the processor context when 51 the interrupt occurred on the processor. 65 from the processor's data cache. If Start is not aligned to a cache line 71 this function can just return EFI_SUCCESS. If the processor does not support 75 @param Start The beginning physical address to flush from the processor's data 77 @param Length The number of bytes to flush from the processor's data cache. This [all …]
|
/external/cpuinfo/src/arm/linux/ |
D | cpuinfo.c | 22 cpuinfo_log_warning("Processor number in /proc/cpuinfo is ignored: string is empty"); in parse_processor_number() 31 "non-decimal suffix %.*s in /proc/cpuinfo processor number is ignored", in parse_processor_number() 108 struct cpuinfo_arm_linux_processor processor[restrict static 1]) { in parse_features() 113 processor->flags |= CPUINFO_ARM_LINUX_VALID_FEATURES | CPUINFO_ARM_LINUX_VALID_PROCESSOR; in parse_features() 128 processor->features |= CPUINFO_ARM_LINUX_FEATURE_FP; in parse_features() 137 processor->features |= CPUINFO_ARM_LINUX_FEATURE_SWP; in parse_features() 146 processor->features2 |= CPUINFO_ARM_LINUX_FEATURE2_AES; in parse_features() 148 processor->features |= CPUINFO_ARM_LINUX_FEATURE_AES; in parse_features() 152 processor->features |= CPUINFO_ARM_LINUX_FEATURE_SWP; in parse_features() 154 processor->features |= CPUINFO_ARM_LINUX_FEATURE_FPA; in parse_features() [all …]
|
/external/cpuinfo/src/x86/ |
D | init.c | 14 void cpuinfo_x86_init_processor(struct cpuinfo_x86_processor* processor) { in cpuinfo_x86_init_processor() argument 17 const enum cpuinfo_vendor vendor = processor->vendor = in cpuinfo_x86_init_processor() 29 processor->cpuid = leaf1.eax; in cpuinfo_x86_init_processor() 32 const enum cpuinfo_uarch uarch = processor->uarch = cpuinfo_x86_decode_uarch(vendor, &model_info); in cpuinfo_x86_init_processor() 49 &processor->cache, in cpuinfo_x86_init_processor() 50 &processor->tlb.itlb_4KB, in cpuinfo_x86_init_processor() 51 &processor->tlb.itlb_2MB, in cpuinfo_x86_init_processor() 52 &processor->tlb.itlb_4MB, in cpuinfo_x86_init_processor() 53 &processor->tlb.dtlb0_4KB, in cpuinfo_x86_init_processor() 54 &processor->tlb.dtlb0_2MB, in cpuinfo_x86_init_processor() [all …]
|
/external/cpuinfo/test/cpuinfo/ |
D | galaxy-a8-2016-duos.log | 1 processor : 0 2 model name : ARMv7 Processor rev 1 (v7l) 11 processor : 1 12 model name : ARMv7 Processor rev 1 (v7l) 21 processor : 2 22 model name : ARMv7 Processor rev 1 (v7l) 31 processor : 3 32 model name : ARMv7 Processor rev 1 (v7l) 41 processor : 4 42 model name : ARMv7 Processor rev 1 (v7l) [all …]
|
D | galaxy-s9-us.armeabi.log | 1 Processor : AArch64 Processor rev 13 (aarch64) 2 processor : 0 3 model name : ARMv8 Processor rev 12 (v8l) 12 processor : 1 13 model name : ARMv8 Processor rev 12 (v8l) 22 processor : 2 23 model name : ARMv8 Processor rev 12 (v8l) 32 processor : 3 33 model name : ARMv8 Processor rev 12 (v8l) 42 processor : 4 [all …]
|
D | oppo-r15.armeabi.log | 1 Processor : AArch64 Processor rev 4 (aarch64) 2 processor : 0 3 model name : ARMv8 Processor rev 4 (v8l) 12 processor : 1 13 model name : ARMv8 Processor rev 4 (v8l) 22 processor : 2 23 model name : ARMv8 Processor rev 4 (v8l) 32 processor : 3 33 model name : ARMv8 Processor rev 4 (v8l) 42 processor : 4 [all …]
|
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/arch/ |
D | Processor.java | 20 * The {@link Processor} represents a microprocessor and defines 25 public class Processor { class 41 * A 32-bit processor architecture. 46 * A 64-bit processor architecture. 51 * An unknown-bit processor architecture. 139 * Constructs a {@link Processor} object with the given 142 * @param arch The processor architecture. 143 * @param type The processor type. 145 public Processor(final Arch arch, final Type type) { in Processor() method in Processor 151 * Gets the processor architecture as an {@link Arch} enum. [all …]
|