HomeSort by: relevance | last modified time | path
    Searched refs:PAGESIZE (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/cddl/osnet/sys/sys/
param.h 39 #define PAGESIZE PAGE_SIZE
41 #define PAGESIZE getpagesize()
systm.h 72 #define PAGESIZE PAGE_SIZE
73 #define PAGEOFFSET (PAGESIZE - 1)
  /src/external/gpl2/libmalloc/dist/
getpagesize.h 34 #ifdef PAGESIZE
35 #define getpagesize() PAGESIZE
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/thread/
types.d 50 static immutable size_t PAGESIZE;
63 PAGESIZE = info.dwPageSize;
64 assert(PAGESIZE < int.max);
70 PAGESIZE = cast(size_t)sysconf(_SC_PAGESIZE);
fiber.d 603 // the PAGESIZE is still 4k, however on AArch64 it is 16k.
626 this( void function() fn, size_t sz = PAGESIZE * defaultStackPages,
627 size_t guardPageSize = PAGESIZE ) nothrow
654 this( void delegate() dg, size_t sz = PAGESIZE * defaultStackPages,
655 size_t guardPageSize = PAGESIZE ) nothrow
970 // adjust alloc size to a multiple of PAGESIZE
971 sz += PAGESIZE - 1;
972 sz -= sz % PAGESIZE;
osthread.d 1118 // use >PAGESIZE to avoid stack overflow (e.g. in an syscall)
2867 // stack size must be a multiple of PAGESIZE
2868 sz = ((sz + PAGESIZE - 1) & ~(PAGESIZE - 1));
  /src/external/gpl3/binutils/dist/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /src/external/gpl3/binutils.old/dist/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /src/external/gpl3/gcc/dist/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /src/external/gpl3/gcc.old/dist/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /src/external/gpl3/gdb/dist/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /src/external/gpl3/gdb.old/dist/libiberty/
getpagesize.c 41 # ifdef PAGESIZE
42 # define GNU_OUR_PAGESIZE PAGESIZE
43 # else /* no PAGESIZE */
60 # endif /* PAGESIZE */
  /src/external/bsd/openldap/dist/tests/scripts/
test025-limits 761 PAGESIZE="$SLAPD_PAGE_SIZE"
762 if test "$PAGESIZE" -le 0 ; then
772 PAGESIZE=5
776 echo "Testing regular search limits with pagedResults control (page size $PAGESIZE)"
782 -E '!pr='$PAGESIZE'/noprompt' '(objectClass=*)' >$SEARCHOUT 2>&1
806 -E '!pr='$PAGESIZE'/noprompt' '(objectClass=*)' > $SEARCHOUT 2>&1
850 -E '!pr='$PAGESIZE'/noprompt' '(objectClass=*)' > $SEARCHOUT 2>&1
879 -E '!pr='$PAGESIZE'/noprompt' '(objectClass=*)' > $SEARCHOUT 2>&1
912 -E '!pr='$PAGESIZE'/noprompt' '(objectClass=*)' > $SEARCHOUT 2>&1
952 -E '!pr='$PAGESIZE'/noprompt' '(objectClass=*)' > $SEARCHOUT 2>&
    [all...]
  /src/external/gpl2/lvm2/dist/test/
t-pvcreate-usage.sh 13 PAGESIZE=$(getconf PAGESIZE)
92 #check_pv_field_ $dev1 pe_start $(($(getconf PAGESIZE)/1024))".00k"
108 # metadata area start is aligned according to pagesize
109 # pagesize should be 64k or 4k ...
110 if [ $PAGESIZE -eq 65536 ] ; then
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/
gc.d 665 psize = psz * PAGESIZE;
670 if (size <= PAGESIZE / 2 || alwaysMalloc)
712 alloc_size = newsz * PAGESIZE;
788 debug (MEMSTOMP) memset(pool.baseAddr + (pagenum + psz) * PAGESIZE, 0xF0, sz * PAGESIZE);
797 return (psz + sz) * PAGESIZE;
902 auto size = npages * PAGESIZE;
1350 stats.freeSize += PAGESIZE;
1352 stats.usedSize += PAGESIZE;
1369 const bitbase = pn * PAGESIZE / 16
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/
os.d 174 // (req_size + PAGESIZE) is allocated, and the pointer is rounded up
175 // to PAGESIZE alignment, there will be space for a void* at the end
176 // after PAGESIZE bytes used by the GC.
183 const size_t PAGE_MASK = PAGESIZE - 1;
188 p = cast(byte *) malloc(nbytes + PAGESIZE);
191 q = p + ((PAGESIZE - ((cast(size_t) p & PAGE_MASK))) & PAGE_MASK);
296 const pageSize = sysconf(_SC_PAGESIZE);
298 return pageSize * pages;
pooltable.d 186 enum PAGESIZE = 4096;
262 pool.baseAddr = cast(byte*)(i++ * NPAGES * PAGESIZE);
263 pool.topAddr = pool.baseAddr + NPAGES * PAGESIZE;
  /src/external/gpl3/gdb.old/dist/sim/arm/
armvirt.c 49 #undef PAGESIZE /* Cleanup system headers. */
51 #define PAGESIZE 64 * 1024
79 pageptr = (ARMword *) malloc (PAGESIZE);
115 pageptr = (ARMword *) malloc (PAGESIZE);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
lifetime.d 32 PAGESIZE = 4096,
33 BIGLENGTHMASK = ~(PAGESIZE - 1),
39 MAXMEDSIZE = (PAGESIZE / 2) - MEDPAD
226 The allocated block looks like this for blocks < PAGESIZE:
235 a block with 512 to pagesize/2 bytes has a 16-bit length.
237 For blocks >= pagesize, the length is a size_t and is at the beginning of the
302 else if (info.size < PAGESIZE)
375 if (info.size < PAGESIZE)
408 if (info.size < PAGESIZE)
820 else if (info.size < PAGESIZE)
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dmu.c 1401 ASSERT3U(db->db_size, >=, PAGESIZE);
1413 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1415 thiscpy = MIN(PAGESIZE, tocpy - copied);
1420 bufoff += PAGESIZE;
1459 ASSERT3U(db->db_size, >=, PAGESIZE);
1471 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1473 thiscpy = MIN(PAGESIZE, tocpy - copied);
1478 bufoff += PAGESIZE;
1516 ASSERT3U(db->db_size, >=, PAGESIZE);
1528 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
    [all...]
zfs_vnops.c 547 for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
549 int nbytes = imin(PAGESIZE - off, len);
599 for (start = uio->uio_loffset; len > 0; start += PAGESIZE) {
600 int bytes = MIN(PAGESIZE, len);
609 if (bytes != PAGESIZE && error == 0)
610 bzero(va + bytes, PAGESIZE - bytes);
645 * NOTE: We will always "break up" the IO into PAGESIZE uiomoves when
666 for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
668 uint64_t bytes = MIN(PAGESIZE - off, len);
749 for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
    [all...]
arc.c 1688 while (hsize * zfs_arc_average_blocksize < (uint64_t)physmem * PAGESIZE)
3907 n = PAGESIZE * (-needfree);
3918 n = PAGESIZE * ((int64_t)freemem - zfs_arc_free_target);
3932 n = PAGESIZE * (freemem - lotsfree - needfree - desfree);
3945 n = PAGESIZE * (availrmem - swapfs_minfree - swapfs_reserve -
3960 n = PAGESIZE * (availrmem - pages_pp_maximum -
6236 if ((((uint64_t)physmem * PAGESIZE) < (1ULL << 32)) &&
6247 if (((uint64_t)physmem * PAGESIZE) < (256 + 128 + 64) * (1 << 20)) {
  /src/external/cddl/osnet/dist/lib/libzpool/common/sys/
zfs_context.h 368 #define kmem_size() (physmem * PAGESIZE)
583 #define ptob(x) ((x) * PAGESIZE)
  /src/external/cddl/osnet/dist/uts/common/sys/
cpuvar.h 296 #define INTR_STACK_SIZE MAX(DEFAULTSTKSZ, PAGESIZE)
  /src/external/cddl/osnet/dist/uts/intel/dtrace/
fasttrap_isa.c 278 size_t first = MIN(len, PAGESIZE - (pc & PAGEOFFSET));
921 limit = USD_GETLIMIT(desc) * (desc->sd_gran ? PAGESIZE : 1);

Completed in 32 milliseconds

1 2