Searched refs:bitmask (Results 1 - 25 of 125) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unictype/
H A Dcateg_and.c27 uint32_t bitmask; local
30 bitmask = category1.bitmask & category2.bitmask;
32 if (bitmask == category1.bitmask)
35 if (bitmask == category2.bitmask)
38 if (bitmask == 0)
41 result.bitmask
[all...]
H A Dcateg_or.c27 uint32_t bitmask; local
30 bitmask = category1.bitmask | category2.bitmask;
32 if (bitmask == category1.bitmask)
35 if (bitmask == category2.bitmask)
38 result.bitmask = bitmask;
[all...]
H A Dcateg_name.c33 uint32_t bitmask = category.bitmask; local
34 /* bitmask should consist of a single bit. */
35 if (bitmask != 0)
37 if ((bitmask & (bitmask - 1)) == 0)
42 uint32_t n = bitmask;
60 if (bitmask == UC_CATEGORY_MASK_L)
62 if (bitmask == UC_CATEGORY_MASK_M)
64 if (bitmask
[all...]
H A Dcateg_and_not.c27 uint32_t bitmask; local
30 bitmask = category1.bitmask & ~category2.bitmask;
32 if (bitmask == category1.bitmask)
35 if (bitmask == 0)
38 result.bitmask = bitmask;
H A Dcateg_none.c24 always_false (ucs4_t uc, uint32_t bitmask) argument
H A Dcateg_test.c29 return category.lookup.lookup_fn (uc, category.bitmask);
H A Dcateg_of.c56 uc_is_general_category_withtable (ucs4_t uc, uint32_t bitmask) argument
61 return ((bitmask >> bit) & 1);
74 result.bitmask = 1 << bit;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/platform/h8300h/
H A Dirq.c34 int bitmask; local
39 bitmask = 1 << (irq - EXT_IRQ0);
45 if (H8300_GPIO_RESERVE(H8300_GPIO_P8, bitmask) == 0)
47 H8300_GPIO_DDR(H8300_GPIO_P8, bitmask, H8300_GPIO_INPUT);
51 if (H8300_GPIO_RESERVE(H8300_GPIO_P9, bitmask) == 0)
53 H8300_GPIO_DDR(H8300_GPIO_P9, bitmask, H8300_GPIO_INPUT);
62 int bitmask; local
67 bitmask = 1 << (irq - EXT_IRQ0);
73 *(volatile unsigned char *)IER &= ~bitmask;
74 H8300_GPIO_FREE(H8300_GPIO_P8, bitmask);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/lib/
H A Dgenflags.c76 int bitmask = 1; local
81 printf("#define HAVE_ACCENTS %d\n",bitmask);
83 bitmask = bitmask << 1;
86 printf("#define HAVE_QUOTATION_MARKS %d\n",bitmask);
88 bitmask = bitmask << 1;
91 printf("#define HAVE_HANGUL_JAMO %d\n",bitmask);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/lib/
H A Dgenflags.c77 int bitmask = 1; local
82 printf("#define HAVE_ACCENTS %d\n",bitmask);
84 bitmask = bitmask << 1;
87 printf("#define HAVE_QUOTATION_MARKS %d\n",bitmask);
89 bitmask = bitmask << 1;
92 printf("#define HAVE_HANGUL_JAMO %d\n",bitmask);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/
H A Dxt_physdev.c38 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
41 if ((info->bitmask & XT_PHYSDEV_OP_ISIN) &&
44 if ((info->bitmask & XT_PHYSDEV_OP_ISOUT) &&
47 if ((info->bitmask & XT_PHYSDEV_OP_IN) &&
50 if ((info->bitmask & XT_PHYSDEV_OP_OUT) &&
57 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
62 if ((info->bitmask & XT_PHYSDEV_OP_ISIN &&
64 (info->bitmask & XT_PHYSDEV_OP_ISOUT &&
68 if (!(info->bitmask & XT_PHYSDEV_OP_IN))
77 if (!(info->bitmask
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/leds/
H A Dleds-ams-delta.c22 u8 bitmask; member in struct:ams_delta_led
32 ams_delta_latch1_write(led_dev->bitmask, led_dev->bitmask);
34 ams_delta_latch1_write(led_dev->bitmask, 0);
43 .bitmask = AMS_DELTA_LATCH1_LED_CAMERA,
50 .bitmask = AMS_DELTA_LATCH1_LED_ADVERT,
57 .bitmask = AMS_DELTA_LATCH1_LED_EMAIL,
64 .bitmask = AMS_DELTA_LATCH1_LED_HANDSFREE,
71 .bitmask = AMS_DELTA_LATCH1_LED_VOICEMAIL,
78 .bitmask
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/bridge/netfilter/
H A Debt_mark_m.c20 if (info->bitmask & EBT_MARK_OR)
29 if (info->bitmask & ~EBT_MARK_MASK)
31 if ((info->bitmask & EBT_MARK_OR) && (info->bitmask & EBT_MARK_AND))
33 if (!info->bitmask)
42 uint8_t invert, bitmask; member in struct:compat_ebt_mark_m_info
53 kern->bitmask = user->bitmask;
64 put_user(kern->bitmask, &user->bitmask))
[all...]
H A Debt_ip.c39 if (info->bitmask & EBT_IP_TOS &&
42 if (info->bitmask & EBT_IP_SOURCE &&
46 if ((info->bitmask & EBT_IP_DEST) &&
50 if (info->bitmask & EBT_IP_PROTO) {
53 if (!(info->bitmask & EBT_IP_DPORT) &&
54 !(info->bitmask & EBT_IP_SPORT))
62 if (info->bitmask & EBT_IP_DPORT) {
69 if (info->bitmask & EBT_IP_SPORT) {
88 if (info->bitmask & ~EBT_IP_MASK || info->invflags & ~EBT_IP_MASK)
90 if (info->bitmask
[all...]
H A Debt_arp.c28 if (info->bitmask & EBT_ARP_OPCODE && FWINV(info->opcode !=
31 if (info->bitmask & EBT_ARP_HTYPE && FWINV(info->htype !=
34 if (info->bitmask & EBT_ARP_PTYPE && FWINV(info->ptype !=
38 if (info->bitmask & (EBT_ARP_SRC_IP | EBT_ARP_DST_IP | EBT_ARP_GRAT)) {
54 if (info->bitmask & EBT_ARP_SRC_IP &&
57 if (info->bitmask & EBT_ARP_DST_IP &&
60 if (info->bitmask & EBT_ARP_GRAT &&
65 if (info->bitmask & (EBT_ARP_SRC_MAC | EBT_ARP_DST_MAC)) {
72 if (info->bitmask & EBT_ARP_SRC_MAC) {
85 if (info->bitmask
[all...]
H A Debt_stp.c52 if ((info->bitmask & EBT_STP_FLAGS) &&
55 if (info->bitmask & EBT_STP_ROOTPRIO) {
61 if (info->bitmask & EBT_STP_ROOTADDR) {
69 if (info->bitmask & EBT_STP_ROOTCOST) {
75 if (info->bitmask & EBT_STP_SENDERPRIO) {
81 if (info->bitmask & EBT_STP_SENDERADDR) {
89 if (info->bitmask & EBT_STP_PORT) {
95 if (info->bitmask & EBT_STP_MSGAGE) {
101 if (info->bitmask & EBT_STP_MAXAGE) {
107 if (info->bitmask
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/netfilter_bridge/
H A Debt_mark_m.h10 uint8_t bitmask; member in struct:ebt_mark_m_info
H A Debt_log.h15 uint32_t bitmask; member in struct:ebt_log_info
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_physdev.c51 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...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/extensions/
H A Dlibxt_physdev.c51 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...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/extensions/
H A Dlibip6t_physdev.c60 info->bitmask |= IP6T_PHYSDEV_OP_IN;
72 info->bitmask |= IP6T_PHYSDEV_OP_OUT;
80 info->bitmask |= IP6T_PHYSDEV_OP_ISIN;
90 info->bitmask |= IP6T_PHYSDEV_OP_ISOUT;
103 info->bitmask |= IP6T_PHYSDEV_OP_BRIDGED;
132 if (info->bitmask & IP6T_PHYSDEV_OP_ISIN)
135 if (info->bitmask & IP6T_PHYSDEV_OP_IN)
139 if (info->bitmask & IP6T_PHYSDEV_OP_ISOUT)
142 if (info->bitmask & IP6T_PHYSDEV_OP_OUT)
145 if (info->bitmask
[all...]
H A Dlibipt_physdev.c60 info->bitmask |= IPT_PHYSDEV_OP_IN;
72 info->bitmask |= IPT_PHYSDEV_OP_OUT;
80 info->bitmask |= IPT_PHYSDEV_OP_ISIN;
90 info->bitmask |= IPT_PHYSDEV_OP_ISOUT;
103 info->bitmask |= IPT_PHYSDEV_OP_BRIDGED;
132 if (info->bitmask & IPT_PHYSDEV_OP_ISIN)
135 if (info->bitmask & IPT_PHYSDEV_OP_IN)
139 if (info->bitmask & IPT_PHYSDEV_OP_ISOUT)
142 if (info->bitmask & IPT_PHYSDEV_OP_OUT)
145 if (info->bitmask
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_ipvs.h26 __u8 bitmask; member in struct:xt_ipvs_mtinfo
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/emma/markeins/
H A Dirq.c197 u32 bitmask; local
208 for (i = 0, bitmask = 1; i < 32; i++, bitmask <<= 1) {
209 if (swIntStatus & bitmask) {
219 for (i = 0, bitmask = 1; i < 32; i++, bitmask <<= 1) {
220 if (intStatus & bitmask) {
234 for (i = 0, bitmask = 1; i < 32; i++, bitmask <<= 1) {
235 if (gpioIntStatus & bitmask) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/netfilter/
H A Dxt_ipvs.h26 __u8 bitmask; member in struct:xt_ipvs_mtinfo

Completed in 276 milliseconds

12345