Home
last modified time | relevance | path

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

/src/contrib/libpcap/pcap/
H A Dbpf.h119 #define BPF_ALIGNMENT sizeof(bpf_int32)
121 #define BPF_ALIGNMENT sizeof(long)
123 #define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))
/src/sbin/ipf/ipf/
H A Dbpf-ipf.h57 #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))
/src/sys/net/
H A Dbpf.h58 #define BPF_ALIGNMENT sizeof(long) macro
59 #define BPF_WORDALIGN(x) (((x) + (BPF_ALIGNMENT - 1)) & ~(BPF_ALIGNMENT - 1))
H A Dbpf.c2436 static char zeroes[BPF_ALIGNMENT]; in catchpacket()