Home
last modified time | relevance | path

Searched refs:cores (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/skia/third_party/externals/swiftshader/src/System/
DCPUID.cpp101 int cores = 0; in coreCount() local
113 cores++; in coreCount()
119 cores = sysconf(_SC_NPROCESSORS_ONLN); in coreCount()
122 if(cores < 1) cores = 1; in coreCount()
123 if(cores > 16) cores = 16; in coreCount()
125 return cores; // FIXME: Number of physical cores in coreCount()
130 int cores = 0; in processAffinity() local
142 cores++; in processAffinity()
151 if(cores < 1) cores = 1; in processAffinity()
152 if(cores > 16) cores = 16; in processAffinity()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Common/
DCPUID.cpp39 int CPUID::cores = detectCoreCount(); member in sw::CPUID
232 int cores = 0; in detectCoreCount() local
244 cores++; in detectCoreCount()
250 cores = sysconf(_SC_NPROCESSORS_ONLN); in detectCoreCount()
253 if(cores < 1) cores = 1; in detectCoreCount()
254 if(cores > 16) cores = 16; in detectCoreCount()
256 return cores; // FIXME: Number of physical cores in detectCoreCount()
261 int cores = 0; in detectAffinity() local
273 cores++; in detectAffinity()
282 if(cores < 1) cores = 1; in detectAffinity()
[all …]
DCPUID.hpp61 static int cores; member in sw::CPUID
128 return cores; in coreCount()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
Dthread.cpp118 Thread::Affinity::Affinity(Allocator* allocator) : cores(allocator) {} in Affinity()
119 Thread::Affinity::Affinity(Affinity&& other) : cores(std::move(other.cores)) {} in Affinity()
121 : cores(other.cores, allocator) {} in Affinity()
125 : cores(allocator) { in Affinity()
126 cores.reserve(list.size()); in Affinity()
128 cores.push_back(core); in Affinity()
145 affinity.cores.emplace_back(std::move(core)); in all()
158 affinity.cores.emplace_back(std::move(core)); in all()
170 affinity.cores.emplace_back(std::move(core)); in all()
197 out.cores.reserve(count); in anyOf()
[all …]
/third_party/node/deps/npm/node_modules/is-core-module/test/
Dindex.js28 var cores = keys(data);
29 st.plan(cores.length);
31 for (var i = 0; i < cores.length; ++i) {
32 var mod = cores[i];
/third_party/mesa3d/.gitlab-ci/windows/
DDockerfile_build9 # When building, `--isolation=process` can leverage all cores and memory
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_external_buffer.txt65 cores such as the GPU, CPU, and DSP.
228 by other processing cores (e.g. DSP), and making those available to CPU
230 The GL implementation should guarantee that available writes by other cores
234 PROPOSED: The exact granularity with which available writes from other cores
/third_party/openGLES/extensions/EXT/
DEXT_external_buffer.txt65 cores such as the GPU, CPU, and DSP.
228 by other processing cores (e.g. DSP), and making those available to CPU
230 The GL implementation should guarantee that available writes by other cores
234 PROPOSED: The exact granularity with which available writes from other cores
/third_party/ninja/src/
Dutil.cc664 int cores = 0; in GetProcessorCount() local
675 cores += (core_mask & 1); in GetProcessorCount()
680 if (cores != 0) { in GetProcessorCount()
681 cpuCount = cores; in GetProcessorCount()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_ARM_shader_core_properties.adoc25 query the number of shader cores on the physical device.
DVK_ARM_shader_core_builtins.adoc22 It exposes properties for the number of shader cores, the maximum number of
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
Dthread.h119 containers::vector<Core, 32> cores; member
/third_party/openssl/doc/man3/
DOPENSSL_ia32cap.pod39 cores with shared cache;
82 actually shared between logical cores. This in turn affects the decision
/third_party/libdrm/freedreno/kgsl/
DREADME14 cores is via different other devices (/dev/kgsl-*). This is not
/third_party/skia/third_party/externals/spirv-tools/source/lint/
DCMakeLists.txt24 # Enable parallel builds across four cores for this lib.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/lint/
DCMakeLists.txt24 # Enable parallel builds across four cores for this lib.
/third_party/spirv-tools/source/lint/
DCMakeLists.txt24 # Enable parallel builds across four cores for this lib.
/third_party/openGLES/extensions/ARM/
DARM_mali_shader_binary.txt40 Mali graphics cores to use shaders precompiled with the Mali ESSL
/third_party/skia/third_party/externals/opengl-registry/extensions/ARM/
DARM_mali_shader_binary.txt40 Mali graphics cores to use shaders precompiled with the Mali ESSL
/third_party/node/doc/contributing/
Dbuilding-node-with-ninja.md32 # regardless of the number of cores on the current machine.
/third_party/spirv-tools/source/reduce/
DCMakeLists.txt79 # Enable parallel builds across four cores for this lib
/third_party/skia/third_party/externals/spirv-tools/source/reduce/
DCMakeLists.txt79 # Enable parallel builds across four cores for this lib
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/
DCMakeLists.txt79 # Enable parallel builds across four cores for this lib
/third_party/node/doc/contributing/maintaining/
Dmaintaining-the-build-files.md57 targets, the parallel tests will take up all the available cores, regardless
/third_party/node/deps/v8/infra/testing/
DREADME.md48 for `cpu`, `cores` and `os`.

1234