Home
last modified time | relevance | path

Searched refs:ALIGNBYTES (Results 1 – 8 of 8) sorted by relevance

/dragonfly/contrib/dhcpcd/src/
H A Ddhcpcd.h104 #ifndef ALIGNBYTES
105 #define ALIGNBYTES (sizeof(int) - 1) macro
108 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) & ~ALIGNBYTES)
/dragonfly/lib/libc/net/
H A Dgetifaddrs.c58 #ifndef ALIGNBYTES
63 #define ALIGNBYTES XXX macro
66 #define ALIGN(p) (((u_long)(p) + ALIGNBYTES) &~ ALIGNBYTES)
140 ALIGNBYTES; in getifaddrs()
/dragonfly/sys/sys/
H A Dparam.h407 #ifndef ALIGNBYTES
408 #define ALIGNBYTES __ALIGNBYTES macro
/dragonfly/usr.sbin/nscd/agents/
H A Dgroup.c53 desired_size = ALIGNBYTES + sizeof(struct group) + sizeof(char *); in group_marshal_func()
67 desired_size += ALIGNBYTES + (mem_size + 1) * sizeof(char *); in group_marshal_func()
H A Dservices.c56 desired_size = ALIGNBYTES + sizeof(struct servent) + sizeof(char *); in services_marshal_func()
69 desired_size += ALIGNBYTES + sizeof(char *) * in services_marshal_func()
/dragonfly/crypto/openssh/
H A Ddefines.h753 # define ALIGNBYTES (sizeof(int) - 1) macro
754 # define ALIGN(p) (((unsigned)p + ALIGNBYTES) & ~ALIGNBYTES)
/dragonfly/lib/libc/stdio/
H A Dfindfp.c99 g = (struct glue *)malloc(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE)); in moreglue()
/dragonfly/usr.bin/telnet/
H A Dcommands.c2771 static char buf[1024 + ALIGNBYTES]; /*XXX*/ in sourceroute()