Home
last modified time | relevance | path

Searched refs:pgsize (Results 1 – 3 of 3) sorted by relevance

/third_party/openssl/crypto/
Dmem_sec.c386 size_t pgsize; in sh_init() local
440 pgsize = PAGE_SIZE; in sh_init()
442 pgsize = (size_t)tmppgsize; in sh_init()
445 pgsize = PAGE_SIZE; in sh_init()
447 sh.map_size = pgsize + sh.arena_size + pgsize; in sh_init()
465 sh.arena = (char *)(sh.map_result + pgsize); in sh_init()
473 if (mprotect(sh.map_result, pgsize, PROT_NONE) < 0) in sh_init()
477 aligned = (pgsize + sh.arena_size + (pgsize - 1)) & ~(pgsize - 1); in sh_init()
478 if (mprotect(sh.map_result + aligned, pgsize, PROT_NONE) < 0) in sh_init()
/third_party/ltp/testcases/kernel/controllers/memcg/stress/
Dmemcg_stress_test.sh34 local pgsize=`tst_getconf PAGESIZE`
39 [ "$pgsize" = "4096" ] && THREAD_SPARE_MB=1 || THREAD_SPARE_MB=8
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowskeyboard.c993 DWORD pgsize = 0; in UILess_GetCandidateList() local
1010 pgsize = SDL_min(count, idxlist[page + 1]) - pgstart; in UILess_GetCandidateList()
1012 pgsize = count - pgstart; in UILess_GetCandidateList()
1017 videodata->ime_candpgsize = SDL_min(pgsize, MAX_CANDLIST); in UILess_GetCandidateList()