BLOCK_ALIGN      1095 src/alloc.c    verify (POWER_OF_2 (BLOCK_ALIGN));
BLOCK_ALIGN      1115 src/alloc.c      verify (BLOCK_ALIGN % sizeof (void *) == 0
BLOCK_ALIGN      1116 src/alloc.c    	  && POWER_OF_2 (BLOCK_ALIGN / sizeof (void *)));
BLOCK_ALIGN      1120 src/alloc.c      eassert (alignment == BLOCK_ALIGN
BLOCK_ALIGN      1141 src/alloc.c      (BLOCK_ALIGN - sizeof (struct ablocks *) - BLOCK_PADDING)
BLOCK_ALIGN      1240 src/alloc.c          verify (ABLOCKS_BYTES % BLOCK_ALIGN == 0);
BLOCK_ALIGN      1241 src/alloc.c          abase = base = aligned_alloc (BLOCK_ALIGN, ABLOCKS_BYTES);
BLOCK_ALIGN      1244 src/alloc.c          abase = pointer_align (base, BLOCK_ALIGN);
BLOCK_ALIGN      1293 src/alloc.c          eassert ((uintptr_t) abase % BLOCK_ALIGN == 0);
BLOCK_ALIGN      1316 src/alloc.c      eassert (0 == ((uintptr_t) val) % BLOCK_ALIGN);
BLOCK_ALIGN      1362 src/alloc.c          eassert ((uintptr_t) ABLOCKS_BASE (abase) % BLOCK_ALIGN == 0);
BLOCK_ALIGN      2698 src/alloc.c       ((struct float_block *) (((uintptr_t) (fptr)) & ~(BLOCK_ALIGN - 1))))
BLOCK_ALIGN      2701 src/alloc.c      ((((uintptr_t) (fptr)) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Float))
BLOCK_ALIGN      2810 src/alloc.c       ((struct cons_block *) ((uintptr_t) (fptr) & ~(BLOCK_ALIGN - 1))))
BLOCK_ALIGN      2813 src/alloc.c      (((uintptr_t) (fptr) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Cons))