summaryrefslogtreecommitdiff
path: root/misc/lldb_rb/constants.py
blob: ec3050a399888bcd52200faa10232104f8b69790 (plain)
1
2
3
4
HEAP_PAGE_ALIGN_LOG = 16
HEAP_PAGE_ALIGN_MASK = (~(~0 << HEAP_PAGE_ALIGN_LOG))
HEAP_PAGE_ALIGN = (1 << HEAP_PAGE_ALIGN_LOG)
HEAP_PAGE_SIZE = HEAP_PAGE_ALIGN