mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8178499: Remove _ptr_ and _size_ infixes from align functions
Reviewed-by: rehn, tschatzl
This commit is contained in:
parent
0fcf645cff
commit
dbd3b5a79e
115 changed files with 454 additions and 462 deletions
|
@ -227,7 +227,7 @@ class CodeSection VALUE_OBJ_CLASS_SPEC {
|
|||
// Slop between sections, used only when allocating temporary BufferBlob buffers.
|
||||
static csize_t end_slop() { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
|
||||
|
||||
csize_t align_at_start(csize_t off) const { return (csize_t) align_size_up(off, alignment()); }
|
||||
csize_t align_at_start(csize_t off) const { return (csize_t) align_up(off, alignment()); }
|
||||
|
||||
// Mark a section frozen. Assign its remaining space to
|
||||
// the following section. It will never expand after this point.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue