/bionic/libc/kernel/common/linux/netfilter/ |
xt_sctp.h | 39 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 52 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 54 #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; }) 56 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ipt_sctp.h | 37 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 52 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 54 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/development/ndk/platforms/android-3/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/external/iptables/include/linux/netfilter/ |
xt_sctp.h | 24 __u32 chunkmap[256 / sizeof (__u32)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:xt_sctp_info 40 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 42 (chunkmap)[type / bytes(__u32)] |= \ 46 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 48 (chunkmap)[type / bytes(__u32)] &= \ 52 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 54 ((chunkmap)[type / bytes (__u32)] & \ 58 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 59 memset((chunkmap), 0, sizeof(chunkmap)) [all...] |
/external/kernel-headers/original/linux/netfilter/ |
xt_sctp.h | 25 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:xt_sctp_info 41 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 43 chunkmap[type / bytes(u_int32_t)] |= \ 47 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 49 chunkmap[type / bytes(u_int32_t)] &= \ 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 55 (chunkmap[type / bytes (u_int32_t)] & \ 59 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 62 for (i = 0; i < ELEMCOUNT(chunkmap); i++) \ 63 chunkmap[i] = 0; [all...] |
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_sctp.h | 23 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:ipt_sctp_info 39 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 41 chunkmap[type / bytes(u_int32_t)] |= \ 45 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 47 chunkmap[type / bytes(u_int32_t)] &= \ 51 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 53 (chunkmap[type / bytes (u_int32_t)] & \ 57 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 60 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 61 chunkmap[i] = 0; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/ |
xt_sctp.h | 22 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:xt_sctp_info 38 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 40 chunkmap[type / bytes(u_int32_t)] |= \ 44 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 46 chunkmap[type / bytes(u_int32_t)] &= \ 50 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 52 (chunkmap[type / bytes (u_int32_t)] & \ 56 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 59 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 60 chunkmap[i] = 0; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 23 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:ipt_sctp_info 39 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 41 chunkmap[type / bytes(u_int32_t)] |= \ 45 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 47 chunkmap[type / bytes(u_int32_t)] &= \ 51 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 53 (chunkmap[type / bytes (u_int32_t)] & \ 57 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 60 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 61 chunkmap[i] = 0; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_sctp.h | 22 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:xt_sctp_info 38 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 40 chunkmap[type / bytes(u_int32_t)] |= \ 44 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 46 chunkmap[type / bytes(u_int32_t)] &= \ 50 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 52 (chunkmap[type / bytes (u_int32_t)] & \ 56 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 59 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 60 chunkmap[i] = 0; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 23 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:ipt_sctp_info 39 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 41 chunkmap[type / bytes(u_int32_t)] |= \ 45 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 47 chunkmap[type / bytes(u_int32_t)] &= \ 51 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 53 (chunkmap[type / bytes (u_int32_t)] & \ 57 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 60 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 61 chunkmap[i] = 0; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_sctp.h | 22 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:xt_sctp_info 38 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 40 chunkmap[type / bytes(u_int32_t)] |= \ 44 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 46 chunkmap[type / bytes(u_int32_t)] &= \ 50 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 52 (chunkmap[type / bytes (u_int32_t)] & \ 56 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 59 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 60 chunkmap[i] = 0; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 23 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member in struct:ipt_sctp_info 39 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ 41 chunkmap[type / bytes(u_int32_t)] |= \ 45 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ 47 chunkmap[type / bytes(u_int32_t)] &= \ 51 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ 53 (chunkmap[type / bytes (u_int32_t)] & \ 57 #define SCTP_CHUNKMAP_RESET(chunkmap) \ 60 for (i = 0; i < ARRAY_SIZE(chunkmap); i++) \ 61 chunkmap[i] = 0; [all...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/netfilter/ |
xt_sctp.h | 35 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:xt_sctp_info 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; }) 57 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ELEMCOUNT(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/netfilter_ipv4/ |
ipt_sctp.h | 33 u_int32_t chunkmap[256 / sizeof (u_int32_t)]; member in struct:ipt_sctp_info 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; }) 55 #define SCTP_CHUNKMAP_RESET(chunkmap) do { int i; for (i = 0; i < ARRAY_SIZE(chunkmap); i++) chunkmap[i] = 0; } while (0 [all...] |