OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sysconf
(Results
26 - 50
of
1334
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webrtc/webrtc/base/
systeminfo.cc
70
number_of_cores = static_cast<int>(
sysconf
(_SC_NPROCESSORS_ONLN));
183
memory = static_cast<int64_t>(
sysconf
(_SC_PHYS_PAGES)) *
184
static_cast<int64_t>(
sysconf
(_SC_PAGESIZE));
186
LOG(LS_WARNING) << "
sysconf
(_SC_PHYS_PAGES) failed."
187
<< "
sysconf
(_SC_PHYS_PAGES) " <<
sysconf
(_SC_PHYS_PAGES)
188
<< "
sysconf
(_SC_PAGESIZE) " <<
sysconf
(_SC_PAGESIZE);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
11-1.c
11
*
sysconf
() when passed _SC_PAGESIZE or _SC_PAGE_SIZE.
15
*
sysconf
(), or is considered invalid by the implementation.
48
page_size =
sysconf
(_SC_PAGE_SIZE);
/external/compiler-rt/test/asan/TestCases/Posix/
large_allocator_unpoisons_on_free.cc
27
const long kPageSize =
sysconf
(_SC_PAGESIZE);
/external/fio/os/
os-aix.h
42
long mem =
sysconf
(_SC_AIX_REALMEM);
/external/ltp/testcases/open_posix_testsuite/conformance/behavior/timers/
1-1.c
28
scTIMER_MAX =
sysconf
(_SC_TIMER_MAX);
2-1.c
21
scTIMER_MAX =
sysconf
(_SC_TIMER_MAX);
/external/python/cpython3/Lib/test/subprocessdata/
fd_status.py
18
_MAXFD = os.
sysconf
("SC_OPEN_MAX")
/external/valgrind/memcheck/tests/
memalign_test.c
11
unsigned long pszB =
sysconf
(_SC_PAGE_SIZE);
/external/valgrind/tests/
sys_mman.h
23
long pagesz =
sysconf
(_SC_PAGE_SIZE);
/external/libvpx/libvpx/vp8/common/generic/
systemdependent.c
42
core_count = (int)
sysconf
(_SC_NPROCESSORS_ONLN);
44
core_count = (int)
sysconf
(_SC_NPROC_ONLN);
/external/ltp/testcases/kernel/syscalls/getpagesize/
getpagesize01.c
76
ret_sysconf =
sysconf
(_SC_PAGESIZE);
79
"Checking whether getpagesize returned same as
sysconf
");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlock/
10-1.c
28
page_size =
sysconf
(_SC_PAGESIZE);
30
perror("An error occurs when calling
sysconf
()");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlockall/
3-7.c
31
page_size =
sysconf
(_SC_PAGESIZE);
33
perror("An error occurs when calling
sysconf
()");
3-6.c
39
page_size =
sysconf
(_SC_PAGESIZE);
41
perror("An error occurs when calling
sysconf
()");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munlock/
11-1.c
28
page_size =
sysconf
(_SC_PAGESIZE);
30
perror("An error occurs when calling
sysconf
()");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munlockall/
5-1.c
58
memlock =
sysconf
(_SC_MEMLOCK);
60
perror("An errno occurs when calling
sysconf
().\n");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/
6-1.c
29
#define STACKSIZE PTHREAD_STACK_MIN -
sysconf
(_SC_PAGE_SIZE)
62
if (posix_memalign(&stack_addr,
sysconf
(_SC_PAGE_SIZE),
/external/tensorflow/tensorflow/core/common_runtime/
mkl_cpu_allocator_test.cc
40
(uint64)
sysconf
(_SC_PHYS_PAGES) * (uint64)
sysconf
(_SC_PAGESIZE);
/libcore/ojluni/src/main/native/
DatagramDispatcher.c
64
// Android-changed : Use
sysconf
for IOV_MAX.
76
// Android-changed : Use
sysconf
for IOV_MAX.
78
iov_max =
sysconf
(_SC_IOV_MAX);
120
// Android-changed : Use
sysconf
for IOV_MAX.
122
iov_max =
sysconf
(_SC_IOV_MAX);
/external/linux-kselftest/tools/testing/selftests/vm/
transhuge-stress.c
67
ram =
sysconf
(_SC_PHYS_PAGES);
68
if (ram > SIZE_MAX /
sysconf
(_SC_PAGESIZE) / 4)
71
ram *=
sysconf
(_SC_PAGESIZE);
/toolchain/binutils/binutils-2.27/libiberty/
physmem.c
87
double pages =
sysconf
(_SC_PHYS_PAGES);
88
double pagesize =
sysconf
(_SC_PAGESIZE);
112
double pagesize =
sysconf
(_SC_PAGESIZE);
191
double pages =
sysconf
(_SC_AVPHYS_PAGES);
192
double pagesize =
sysconf
(_SC_PAGESIZE);
218
double pagesize =
sysconf
(_SC_PAGESIZE);
/cts/tests/tests/security/jni/
android_security_cts_CharDeviceTest.cpp
35
int page_size =
sysconf
(_SC_PAGE_SIZE);
73
int page_size =
sysconf
(_SC_PAGE_SIZE);
/external/libchrome/base/
sys_info_linux.cc
24
long pages =
sysconf
(pages_name);
25
long page_size =
sysconf
(_SC_PAGESIZE);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_read/
9-1.c
53
if (
sysconf
(_SC_ASYNCHRONOUS_IO) < 200112L
54
||
sysconf
(_SC_AIO_MAX) == -1)
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_write/
7-1.c
53
if (
sysconf
(_SC_ASYNCHRONOUS_IO) < 200112L
54
||
sysconf
(_SC_AIO_MAX) == -1)
Completed in 1098 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>