HomeSort by: relevance | last modified time | path
    Searched defs:ALIGNMENT_SIZE (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mpl/bind/dist/lib/isc/
mem.c 82 #define ALIGNMENT_SIZE sizeof(size_info)
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rbt.c 40 #define ALIGNMENT_SIZE 8U /* see lib/isc/mem.c */
806 (((uintptr_t)n & ~((uintptr_t)ALIGNMENT_SIZE - 1)) == (uintptr_t)n)
  /src/external/mpl/dhcp/bind/dist/lib/isc/
mem.c 65 #define ALIGNMENT_SIZE \
103 * This structure must be ALIGNMENT_SIZE bytes.
108 char bytes[ALIGNMENT_SIZE];
358 * round down to ALIGNMENT_SIZE
360 return (size & (~(ALIGNMENT_SIZE - 1)));
367 * enough to satisfy the request and be aligned on ALIGNMENT_SIZE
372 return (ALIGNMENT_SIZE);
374 return ((size + ALIGNMENT_SIZE - 1) & (~(ALIGNMENT_SIZE - 1)));
785 STATIC_ASSERT((ALIGNMENT_SIZE & (ALIGNMENT_SIZE - 1)) == 0
    [all...]

Completed in 33 milliseconds