HomeSort by relevance Sort by last modified time
    Searched refs:PAGESIZE (Results 101 - 125 of 135) sorted by null

1 2 3 45 6

  /prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/include/
limits.h 108 #ifndef PAGESIZE
110 #define PAGESIZE PAGE_SIZE
  /prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/include/
limits.h 108 #ifndef PAGESIZE
110 #define PAGESIZE PAGE_SIZE
  /prebuilts/ndk/r11/platforms/android-9/arch-arm/usr/include/
limits.h 108 #ifndef PAGESIZE
110 #define PAGESIZE PAGE_SIZE
  /prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/include/
limits.h 108 #ifndef PAGESIZE
110 #define PAGESIZE PAGE_SIZE
  /prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/
limits.h 108 #ifndef PAGESIZE
110 #define PAGESIZE PAGE_SIZE
  /toolchain/binutils/binutils-2.25/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /external/ltp/testcases/kernel/controllers/memcg/functional/
memcg_lib.sh 32 PAGESIZE=$(getconf PAGESIZE)
34 tst_brkm TBROK "getconf PAGESIZE failed"
316 # Test limit_in_bytes will be aligned to PAGESIZE
336 if [ \( $(($PAGESIZE*($1/$PAGESIZE))) -eq $limit \) \
337 -o \( $(($PAGESIZE*(($1+$PAGESIZE-1)/$PAGESIZE))) -eq $limit \) ]; then
407 tst_resm TINFO "Running memcg_process --mmap-anon -s $PAGESIZE"
    [all...]
  /external/ltp/testcases/kernel/syscalls/mprotect/
mprotect03.c 51 #ifndef PAGESIZE
52 #define PAGESIZE 4096
85 * mmap the PAGESIZE bytes as read only.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_mmap.py 8 PAGESIZE = mmap.PAGESIZE
29 f.write('\0'* PAGESIZE)
31 f.write('\0'* (PAGESIZE-3) )
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
39 self.assertEqual(m.find('foo'), PAGESIZE)
41 self.assertEqual(len(m), 2*PAGESIZE)
52 m[PAGESIZE +3: PAGESIZE +3+3] = 'bar'
57 self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0')
    [all...]
  /external/python/cpython2/Lib/test/
test_mmap.py 8 PAGESIZE = mmap.PAGESIZE
29 f.write('\0'* PAGESIZE)
31 f.write('\0'* (PAGESIZE-3) )
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
39 self.assertEqual(m.find('foo'), PAGESIZE)
41 self.assertEqual(len(m), 2*PAGESIZE)
52 m[PAGESIZE +3: PAGESIZE +3+3] = 'bar'
57 self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_mmap.py 8 PAGESIZE = mmap.PAGESIZE
29 f.write('\0'* PAGESIZE)
31 f.write('\0'* (PAGESIZE-3) )
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
39 self.assertEqual(m.find('foo'), PAGESIZE)
41 self.assertEqual(len(m), 2*PAGESIZE)
52 m[PAGESIZE +3: PAGESIZE +3+3] = 'bar'
57 self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_mmap.py 8 PAGESIZE = mmap.PAGESIZE
29 f.write('\0'* PAGESIZE)
31 f.write('\0'* (PAGESIZE-3) )
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
39 self.assertEqual(m.find('foo'), PAGESIZE)
41 self.assertEqual(len(m), 2*PAGESIZE)
52 m[PAGESIZE +3: PAGESIZE +3+3] = 'bar'
57 self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mmap.py 8 PAGESIZE = mmap.PAGESIZE
29 f.write('\0'* PAGESIZE)
31 f.write('\0'* (PAGESIZE-3) )
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
39 self.assertEqual(m.find('foo'), PAGESIZE)
41 self.assertEqual(len(m), 2*PAGESIZE)
52 m[PAGESIZE +3: PAGESIZE +3+3] = 'bar'
57 self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mmap.py 8 PAGESIZE = mmap.PAGESIZE
29 f.write('\0'* PAGESIZE)
31 f.write('\0'* (PAGESIZE-3) )
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
39 self.assertEqual(m.find('foo'), PAGESIZE)
41 self.assertEqual(len(m), 2*PAGESIZE)
52 m[PAGESIZE +3: PAGESIZE +3+3] = 'bar'
57 self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0'
    [all...]
  /external/valgrind/none/tests/solaris/
mmap_noreserve.c 18 void *addr = mmap(0, PAGESIZE, PROT_READ | PROT_WRITE, flags, -1, 0);
  /external/iproute2/doc/
Makefile 13 PAGESIZE=a4
  /external/ltp/testcases/commands/du/
du01.sh 77 page_size=$(getconf PAGESIZE)
  /external/ltp/testcases/kernel/controllers/memcg/control/
memcg_control_test.sh 44 PAGE_SIZE=$(getconf PAGESIZE)
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
UsbHcMem.c 46 PageNumber = sizeof(USBHC_MEM_BLOCK)/PAGESIZE +1;
68 PageNumber = (Block->BitsLen)/PAGESIZE +1;
292 PageNumber = sizeof(USBHC_MEM_POOL)/PAGESIZE +1;
EhcPeim.h 45 #define PAGESIZE 4096
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
UsbHcMem.c 47 PageNumber = sizeof(USBHC_MEM_BLOCK)/PAGESIZE +1;
69 PageNumber = (Block->BitsLen)/PAGESIZE +1;
295 PageNumber = sizeof(USBHC_MEM_POOL)/PAGESIZE +1;
OhcPeim.h 46 #define PAGESIZE 4096
  /external/python/cpython2/Lib/multiprocessing/
heap.py 94 def __init__(self, size=mmap.PAGESIZE):
117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
heap.py 94 def __init__(self, size=mmap.PAGESIZE):
117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
heap.py 94 def __init__(self, size=mmap.PAGESIZE):
117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)

Completed in 2208 milliseconds

1 2 3 45 6