BLOCK_ALIGN      1056 src/alloc.c    verify (POWER_OF_2 (BLOCK_ALIGN));
BLOCK_ALIGN      1076 src/alloc.c      verify (BLOCK_ALIGN % sizeof (void *) == 0
BLOCK_ALIGN      1077 src/alloc.c    	  && POWER_OF_2 (BLOCK_ALIGN / sizeof (void *)));
BLOCK_ALIGN      1081 src/alloc.c      eassert (alignment == BLOCK_ALIGN
BLOCK_ALIGN      1102 src/alloc.c      (BLOCK_ALIGN - sizeof (struct ablocks *) - BLOCK_PADDING)
BLOCK_ALIGN      1191 src/alloc.c          verify (ABLOCKS_BYTES % BLOCK_ALIGN == 0);
BLOCK_ALIGN      1192 src/alloc.c          abase = base = aligned_alloc (BLOCK_ALIGN, ABLOCKS_BYTES);
BLOCK_ALIGN      1195 src/alloc.c          abase = pointer_align (base, BLOCK_ALIGN);
BLOCK_ALIGN      1243 src/alloc.c          eassert ((uintptr_t) abase % BLOCK_ALIGN == 0);
BLOCK_ALIGN      1265 src/alloc.c      eassert (0 == ((uintptr_t) val) % BLOCK_ALIGN);
BLOCK_ALIGN      1307 src/alloc.c          eassert ((uintptr_t) ABLOCKS_BASE (abase) % BLOCK_ALIGN == 0);
BLOCK_ALIGN      2563 src/alloc.c       ((struct float_block *) (((uintptr_t) (fptr)) & ~(BLOCK_ALIGN - 1))))
BLOCK_ALIGN      2566 src/alloc.c      ((((uintptr_t) (fptr)) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Float))
BLOCK_ALIGN      2654 src/alloc.c       ((struct cons_block *) ((uintptr_t) (fptr) & ~(BLOCK_ALIGN - 1))))
BLOCK_ALIGN      2657 src/alloc.c      (((uintptr_t) (fptr) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Cons))