Home
last modified time | relevance | path

Searched refs:BPF_ALIGNMENT (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/libpcap/pcap/
H A Dbpf.h121 #define BPF_ALIGNMENT sizeof(bpf_int32)
123 #define BPF_ALIGNMENT sizeof(long)
125 #define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))
/freebsd/sbin/ipf/ipf/
H A Dbpf-ipf.h54 * even multiple of BPF_ALIGNMENT.
57 #define BPF_ALIGNMENT sizeof(bpf_int32) macro
59 #define BPF_ALIGNMENT sizeof(long) macro
61 #define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))
/freebsd/sys/net/
H A Dbpf.h57 #define BPF_ALIGNMENT sizeof(long) macro
58 #define BPF_WORDALIGN(x) (((x) + (BPF_ALIGNMENT - 1)) & ~(BPF_ALIGNMENT - 1))
H A Dbpf.c2577 static char zeroes[BPF_ALIGNMENT]; in catchpacket()