OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:g_cpuCount
(Results
1 - 3
of
3
) sorted by null
/external/webp/src/dsp/
cpu-features.c
25
static int
g_cpuCount
;
230
g_cpuCount
= 1;
241
g_cpuCount
= count_cpuinfo_field(cpuinfo, cpuinfo_len, "processor");
242
if (
g_cpuCount
== 0) {
243
g_cpuCount
= count_cpuinfo_field(cpuinfo, cpuinfo_len, "Processor");
244
if (
g_cpuCount
== 0) {
245
g_cpuCount
= 1;
249
D("found cpuCount = %d\n",
g_cpuCount
);
395
return
g_cpuCount
;
/external/webrtc/src/system_wrappers/source/android/
cpu-features.c
25
static int
g_cpuCount
;
230
g_cpuCount
= 1;
241
g_cpuCount
= count_cpuinfo_field(cpuinfo, cpuinfo_len, "processor");
242
if (
g_cpuCount
== 0) {
243
g_cpuCount
= count_cpuinfo_field(cpuinfo, cpuinfo_len, "Processor");
244
if (
g_cpuCount
== 0) {
245
g_cpuCount
= 1;
249
D("found cpuCount = %d\n",
g_cpuCount
);
395
return
g_cpuCount
;
/ndk/sources/android/cpufeatures/
cpu-features.c
74
static int
g_cpuCount
;
568
g_cpuCount
= 1;
591
g_cpuCount
= get_cpu_count();
592
if (
g_cpuCount
== 0) {
593
g_cpuCount
= 1;
596
D("found cpuCount = %d\n",
g_cpuCount
);
847
return
g_cpuCount
;
864
g_cpuCount
= (cpu_count <= 0 ? 1 : cpu_count);
[
all
...]
Completed in 46 milliseconds