Searched refs:mask (Results 101 - 125 of 1780) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/ipfilter/lib/
H A Dprintlookup.c13 printlookup(base, addr, mask)
15 i6addr_t *addr, *mask;
/freebsd-11-stable/sbin/dhclient/
H A Ddhclient.conf8 request subnet-mask, broadcast-address, time-offset,
11 require subnet-mask, domain-name-servers;
24 option subnet-mask 255.255.255.255;
32 option subnet-mask 255.255.255.0;
H A Dinet.c54 subnet_number(struct iaddr addr, struct iaddr mask) argument
62 if (addr.len != mask.len)
67 rv.iabuf[i] = addr.iabuf[i] & mask.iabuf[i];
77 broadcast_addr(struct iaddr subnet, struct iaddr mask) argument
82 if (subnet.len != mask.len) {
88 rv.iabuf[i] = subnet.iabuf[i] | (~mask.iabuf[i] & 255);
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dmodify_s.c41 uint32_t mask,
47 if((mask & forbidden_mask))
49 if((mask & KADM5_POLICY) && strcmp(princ->policy, "default"))
60 ret = _kadm5_setup_entry(context, &ent, mask, princ, mask, NULL, 0);
78 mask | KADM5_MOD_NAME | KADM5_MOD_TIME);
91 uint32_t mask)
93 return modify_principal(server_handle, princ, mask,
39 modify_principal(void *server_handle, kadm5_principal_ent_t princ, uint32_t mask, uint32_t forbidden_mask) argument
89 kadm5_s_modify_principal(void *server_handle, kadm5_principal_ent_t princ, uint32_t mask) argument
H A Dcommon_glue.c61 uint32_t mask,
64 return __CALL(create_principal, (server_handle, princ, mask, password));
90 uint32_t mask)
92 return __CALL(get_principal, (server_handle, princ, out, mask));
98 uint32_t mask)
100 return __CALL(modify_principal, (server_handle, princ, mask));
59 kadm5_create_principal(void *server_handle, kadm5_principal_ent_t princ, uint32_t mask, const char *password) argument
87 kadm5_get_principal(void *server_handle, krb5_principal princ, kadm5_principal_ent_t out, uint32_t mask) argument
96 kadm5_modify_principal(void *server_handle, kadm5_principal_ent_t princ, uint32_t mask) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.h33 static Log *GetLogIfAllCategoriesSet(uint32_t mask) { argument
34 return g_channel.GetLogIfAll(mask);
/freebsd-11-stable/contrib/ntp/conf/
H A Dgrundoon.conf20 restrict 128.4.0.0 mask 255.255.0.0 # allow DCnet clients
21 restrict 128.175.0.0 mask 255.255.0.0 # allow UDel clients
22 restrict 140.173.0.0 mask 255.255.0.0 # allow DARTnet/CAIRN clients
H A Dpogo.conf27 restrict 128.4.0.0 mask 255.255.0.0 # allow DCnet clients
28 restrict 128.175.0.0 mask 255.255.0.0 # allow UDel clients
29 restrict 140.173.0.0 mask 255.255.0.0 # allow DARTnet/CAIRN clients
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dradix-tree.h61 #define RADIX_TREE_INIT(mask) \
62 { .rnode = NULL, .gfp_mask = mask, .height = 0 };
63 #define INIT_RADIX_TREE(root, mask) \
64 { (root)->rnode = NULL; (root)->gfp_mask = mask; (root)->height = 0; }
65 #define RADIX_TREE(name, mask) \
66 struct radix_tree_root name = RADIX_TREE_INIT(mask)
/freebsd-11-stable/sys/fs/nfs/
H A Dnfs_commonacl.c35 static int nfsrv_acemasktoperm(u_int32_t acetype, u_int32_t mask, int owner,
48 u_int32_t flag, mask, acetype; local
57 mask = fxdr_unsigned(u_int32_t, *tl++);
166 * And turn the mask into perm bits.
169 aceerr = nfsrv_acemasktoperm(acetype, mask, owner, VREG,
181 * Turn an NFSv4 ace mask into R/W/X flag bits.
184 nfsrv_acemasktoperm(u_int32_t acetype, u_int32_t mask, int owner, argument
190 if (mask & NFSV4ACE_READDATA) {
191 mask &= ~NFSV4ACE_READDATA;
194 if (mask
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rsa/
H A Drsa_ssl.c116 unsigned int good, found_zero_byte, mask, threes_in_row; local
139 mask = ~constant_time_is_zero(flen);
140 flen -= 1 & mask;
141 from -= 1 & mask;
142 *--em = *from & mask;
148 mask = ~good;
170 err = constant_time_select_int(mask | good, err,
172 mask = ~good;
181 err = constant_time_select_int(mask | good, err,
183 mask
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_interrupts.c110 uint32_t mask; local
117 * the mask so that the ISR does not modify the mask
127 mask = ints & HAL_INT_COMMON;
130 mask |= AR_IMR_TXOK;
132 mask |= AR_IMR_TXERR;
134 mask |= AR_IMR_TXDESC;
136 mask |= AR_IMR_TXEOL;
139 mask |= AR_IMR_RXOK | AR_IMR_RXERR | AR_IMR_RXDESC;
145 mask |
[all...]
/freebsd-11-stable/crypto/heimdal/kadmin/
H A Dutil.c103 * setting the `bit' in `mask' if attributes are given and valid.
107 parse_attributes (const char *resp, krb5_flags *attr, int *mask, int bit) argument
113 if (mask)
114 *mask |= bit;
129 edit_attributes (const char *prompt, krb5_flags *attr, int *mask, int bit) argument
133 if (mask && (*mask & bit))
142 if (parse_attributes (resp, attr, mask, bit) == 0)
237 parse_timet (const char *resp, krb5_timestamp *value, int *mask, int bit) argument
243 if(mask)
258 edit_timet(const char *prompt, krb5_timestamp *value, int *mask, int bit) argument
323 parse_deltat(const char *resp, krb5_deltat *value, int *mask, int bit) argument
345 edit_deltat(const char *prompt, krb5_deltat *value, int *mask, int bit) argument
367 set_defaults(kadm5_principal_ent_t ent, int *mask, kadm5_principal_ent_t default_ent, int default_mask) argument
397 edit_entry(kadm5_principal_ent_t ent, int *mask, kadm5_principal_ent_t default_ent, int default_mask) argument
433 set_entry(krb5_context contextp, kadm5_principal_ent_t ent, int *mask, const char *max_ticket_life, const char *max_renewable_life, const char *expiration, const char *pw_expiration, const char *attributes) argument
[all...]
/freebsd-11-stable/usr.sbin/makefs/ffs/
H A Dffs_subr.c91 u_char mask; local
97 mask = 0x0f << ((h & 0x1) << 2);
98 return ((cp[h >> 1] & mask) == mask);
100 mask = 0x03 << ((h & 0x3) << 1);
101 return ((cp[h >> 2] & mask) == mask);
103 mask = 0x01 << (h & 0x7);
104 return ((cp[h >> 3] & mask) == mask);
[all...]
/freebsd-11-stable/contrib/ofed/libibmad/
H A Dgs.c88 int port, unsigned mask, unsigned timeout,
97 DEBUG("lid %u port %d mask 0x%x", lid, port, mask);
104 if (!mask)
105 mask = ~0;
115 mad_set_field(rcvbuf, 0, IB_PC_COUNTER_SELECT_F, mask);
116 mask = mask >> 16;
118 mad_set_field(rcvbuf, 0, IB_PC_EXT_COUNTER_SELECT2_F, mask);
120 mad_set_field(rcvbuf, 0, IB_PC_COUNTER_SELECT2_F, mask);
87 performance_reset_via(void *rcvbuf, ib_portid_t * dest, int port, unsigned mask, unsigned timeout, unsigned id, const struct ibmad_port * srcport) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/hpux/
H A Dctype_noninline.h42 const ctype_base::mask*
46 ctype<char>::ctype(__c_locale, const mask* __table, bool __del,
50 _M_table(__table ? __table : (const mask *) __SB_masks)
58 ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
61 _M_table(__table ? __table : (const mask *) __SB_masks)
/freebsd-11-stable/contrib/libstdc++/config/os/irix/irix6.5/
H A Dctype_noninline.h41 const ctype_base::mask*
45 ctype<char>::ctype(__c_locale, const mask* __table, bool __del,
50 (const mask*) (__libc_attr._ctype_tbl->_class + 1) : __table)
58 ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
62 (const mask*) (__libc_attr._ctype_tbl->_class + 1) : __table)
/freebsd-11-stable/sys/netpfil/ipfw/test/
H A Dtest_dn_sched.c86 fls(int mask) argument
90 if (mask == 0)
92 for (bit = 1; mask != 1; bit++)
93 mask = (unsigned int)mask >> 1;
/freebsd-11-stable/sys/contrib/alpine-hal/
H A Dal_hal_iofic.h147 * mask clear register, so it's safe to call it while the mask is changed by
148 * the HW (auto mask) or another core.
152 * @param mask bitwise of interrupts to unmask, set bits will be unmasked.
154 void al_iofic_unmask(void __iomem *regs_base, int group, uint32_t mask);
157 * mask specific interrupts for a given group
158 * this functions modifies interrupt mask register, the callee must make sure
159 * the mask is not changed by another cpu.
163 * @param mask bitwise of interrupts to mask, se
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Ddelay.c77 u_int last, mask, u; local
93 mask = tc->tc_counter_mask;
97 last = func(tc) & mask;
100 u = func(tc) & mask;
102 now += mask - last + u + 1;
/freebsd-11-stable/usr.bin/cpuset/
H A Dcpuset.c70 static void printset(cpuset_t *mask);
73 parselist(char *list, cpuset_t *mask) argument
82 sizeof(*mask), mask) != 0)
103 CPU_SET(lastnum, mask);
118 CPU_SET(curnum, mask);
140 CPU_SET(curnum, mask);
151 printset(cpuset_t *mask) argument
157 if (CPU_ISSET(cpu, mask)) {
175 cpuset_t mask; local
205 cpuset_t mask; local
[all...]
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_clock.c88 uint32_t mask; local
94 mask = (1u << index);
97 mtk_sysctl_clr_set(SYSCTL_CLKCFG1, 0, mask);
99 mtk_sysctl_clr_set(SYSCTL_CLKCFG1, mask, 0);
121 uint32_t mask; local
126 if (mtk_sysctl_get(SYSCTL_CLKCFG1) & mask)
/freebsd-11-stable/contrib/gcc/
H A Dopth-gen.awk78 mask = "MASK_"
80 mask = "OPTION_MASK_"
83 print "#define " mask name " (1 << " masknum[vname]++ ")"
103 mask = "OPTION_MASK_"
107 mask = "MASK_"
111 " ((" vname " & " mask name ") != 0)"
124 mask = "OPTION_MASK_"
128 mask = "MASK_"
131 " ((" vname " & " mask nth_arg(0, opt) ") == 0)"
/freebsd-11-stable/contrib/libbegemot/
H A Drpoll.h39 typedef void (*poll_f)(int fd, int mask, void *arg);
42 int poll_register(int fd, poll_f func, void *arg, int mask);
/freebsd-11-stable/lib/libusbhid/
H A Ddata.c89 uint32_t mask; local
104 mask = (1 << hsize) - 1;
105 data &= mask;
107 mask = ~0;
110 mask <<= (hpos % 8);
111 mask = ~mask;
117 buf[offs + i] = (buf[offs + i] & (mask >> (i*8))) |

Completed in 178 milliseconds

1234567891011>>