Home | History | Annotate | Download | only in netfilter

Lines Matching refs:u_int32_t

35  u_int32_t chunkmap[256 / sizeof (u_int32_t)];
41 u_int32_t chunk_match_type;
45 u_int32_t flags;
46 u_int32_t invflags;
51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0)
53 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0)
55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; })