/external/fio/arch/ |
H A D | arch-aarch64.h | 20 static inline int arch_ffz(unsigned long bitmask) argument 23 if (~bitmask == 0) /* ffz() in lib/ffz.h does this. */ 29 "r"(~bitmask));
|
H A D | arch-ia64.h | 32 static inline unsigned long arch_ffz(unsigned long bitmask) argument 34 return ia64_popcnt(bitmask & (~bitmask - 1));
|
H A D | arch-x86.h | 38 static inline unsigned long arch_ffz(unsigned long bitmask) argument 40 __asm__("bsfl %1,%0" :"=r" (bitmask) :"r" (~bitmask)); 41 return bitmask;
|
H A D | arch-ppc.h | 36 static inline int __ilog2(unsigned long bitmask) argument 40 asm ("cntlzw %0,%1" : "=r" (lz) : "r" (bitmask)); 44 static inline int arch_ffz(unsigned long bitmask) argument 46 if ((bitmask = ~bitmask) == 0) 48 return __ilog2(bitmask & -bitmask);
|
H A D | arch-x86_64.h | 45 static inline unsigned long arch_ffz(unsigned long bitmask) argument 47 __asm__("bsf %1,%0" :"=r" (bitmask) :"r" (~bitmask)); 48 return bitmask;
|
H A D | arch.h | 67 #define ffz(bitmask) arch_ffz(bitmask)
|
/external/srtp/crypto/replay/ |
H A D | rdb.c | 54 * bitmask a bit-buffer, containing the most recently entered 63 v128_set_to_zero(&rdb->bitmask); 83 /* otherwise, the index appears within the window, so check the bitmask */ 84 if (v128_get_bit(&rdb->bitmask, (index - rdb->window_start)) == 1) 110 v128_set_bit(&rdb->bitmask, delta); 117 v128_left_shift(&rdb->bitmask, delta); 118 v128_set_bit(&rdb->bitmask, rdb_bits_in_bitmask - 1);
|
H A D | rdbx.c | 82 * A rdbx_t consists of a xtd_seq_num_t and a bitmask. The index is highest 83 * sequence number that has been received, and the bitmask indicates 85 * highest bit in the bitmask corresponds to the index in the bitmask. 199 if (bitvector_alloc(&rdbx->bitmask, ws) != 0) 213 bitvector_dealloc(&rdbx->bitmask); 228 bitvector_set_to_zero(&rdbx->bitmask); 264 return bitvector_get_length(&rdbx->bitmask); 277 } else if ((int)(bitvector_get_length(&rdbx->bitmask) - 1) + delta < 0) { 278 /* if delta is lower than the bitmask, i [all...] |
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
H A D | ebt_mark_m.h | 12 __u8 bitmask; member in struct:ebt_mark_m_info
|
H A D | ebt_log.h | 17 __u32 bitmask; member in struct:ebt_log_info
|
H A D | ebt_vlan.h | 16 __u8 bitmask; /* Args bitmask bit 1=1 - ID arg, member in struct:ebt_vlan_info 18 __u8 invflags; /* Inverse bitmask bit 1=1 - inversed ID arg,
|
H A D | ebt_among.h | 51 int bitmask; member in struct:ebt_among_info
|
H A D | ebt_ip.h | 38 __u8 bitmask; member in struct:ebt_ip_info
|
H A D | ebt_ip6.h | 38 __u8 bitmask; member in struct:ebt_ip6_info
|
/external/fio/lib/ |
H A D | ffz.h | 38 static inline int ffz(unsigned long bitmask) argument 40 return __ffs(~bitmask);
|
/external/iptables/extensions/ |
H A D | libxt_physdev.c | 51 info->bitmask |= XT_PHYSDEV_OP_IN; 58 info->bitmask |= XT_PHYSDEV_OP_OUT; 61 info->bitmask |= XT_PHYSDEV_OP_ISIN; 66 info->bitmask |= XT_PHYSDEV_OP_ISOUT; 73 info->bitmask |= XT_PHYSDEV_OP_BRIDGED; 90 if (info->bitmask & XT_PHYSDEV_OP_ISIN) 93 if (info->bitmask & XT_PHYSDEV_OP_IN) 97 if (info->bitmask & XT_PHYSDEV_OP_ISOUT) 100 if (info->bitmask & XT_PHYSDEV_OP_OUT) 103 if (info->bitmask [all...] |
H A D | libxt_ipvs.c | 81 data->bitmask |= XT_IPVS_DIR; 84 data->bitmask |= XT_IPVS_DIR; 103 data->bitmask |= 1 << cb->entry->id; 115 if (info->bitmask & XT_IPVS_ONCE_MASK) { 120 info->bitmask |= XT_IPVS_IPVS_PROPERTY; 160 if (data->bitmask == XT_IPVS_IPVS_PROPERTY) { 166 if (data->bitmask & XT_IPVS_PROTO) { 172 if (data->bitmask & XT_IPVS_VADDR) { 180 if (data->bitmask & XT_IPVS_VPORT) { 187 if (data->bitmask [all...] |
/external/iptables/include/linux/netfilter/ |
H A D | xt_ipvs.h | 26 __u8 bitmask; member in struct:xt_ipvs_mtinfo
|
H A D | xt_physdev.h | 20 __u8 bitmask; member in struct:xt_physdev_info
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_ipvs.h | 26 __u8 bitmask; member in struct:xt_ipvs_mtinfo
|
H A D | xt_physdev.h | 20 __u8 bitmask; member in struct:xt_physdev_info
|
/external/libnfc-nci/halimpl/bcm2079x/include/ |
H A D | StartupConfig.h | 81 ** bitmask: 0xC0 = do not detect any secure element. 88 bool disableSecureElement (UINT8 bitmask);
|
/external/srtp/crypto/include/ |
H A D | rdb.h | 24 uint32_t window_start; /* packet index of the first bit in bitmask */ 25 v128_t bitmask; member in struct:__anon14451
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
H A D | StartupConfig.cpp | 117 ** bitmask: 0xC0 = do not detect any secure element. 124 bool StartupConfig::disableSecureElement (UINT8 bitmask) argument 141 mBuffer [index] = mBuffer [index] | bitmask; //turn on certain bits 151 tlv [4] = tlv [4] | bitmask;
|
/external/vboot_reference/host/lib/include/ |
H A D | host_misc.h | 39 int ReadFileBit(const char* filename, int bitmask);
|