Searched refs:set (Results 226 - 250 of 1536) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/libcxx/src/experimental/
H A Dmemory_resource.cpp110 __default_memory_resource(bool set = false, memory_resource * new_res = nullptr) _NOEXCEPT
115 if (set) {
128 if (set) {
140 if (set) {
/freebsd-11-stable/contrib/unbound/respip/
H A Drespip.c59 struct respip_set* set = calloc(1, sizeof(*set)); local
60 if(!set)
62 set->region = regional_create();
63 if(!set->region) {
64 free(set);
67 addr_tree_init(&set->ip_tree);
68 lock_rw_init(&set->lock);
69 return set;
84 respip_set_delete(struct respip_set* set) argument
95 respip_set_get_tree(struct respip_set* set) argument
103 respip_sockaddr_find_or_create(struct respip_set* set, struct sockaddr_storage* addr, socklen_t addrlen, int net, int create, const char* ipstr) argument
127 respip_sockaddr_delete(struct respip_set* set, struct resp_addr* node) argument
143 respip_find_or_create(struct respip_set* set, const char* ipstr, int create) argument
158 respip_tag_cfg(struct respip_set* set, const char* ipstr, const uint8_t* taglist, size_t taglen) argument
180 respip_action_cfg(struct respip_set* set, const char* ipstr, const char* actnstr) argument
324 respip_data_cfg(struct respip_set* set, const char* ipstr, const char* rrstr) argument
338 respip_set_apply_cfg(struct respip_set* set, char* const* tagname, int num_tags, struct config_strbytelist* respip_tags, struct config_str2list* respip_actions, struct config_str2list* respip_data) argument
398 respip_global_apply_cfg(struct respip_set* set, struct config_file* cfg) argument
1299 respip_set_is_empty(const struct respip_set* set) argument
[all...]
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_perf.c85 int info_only; /* Can we set new states? */
103 struct cf_setting *set);
109 static int acpi_px_set(device_t dev, const struct cf_setting *set);
110 static int acpi_px_get(device_t dev, struct cf_setting *set);
336 * info, we can't get or set new settings.
426 struct cf_setting set; local
430 /* If the old state is too high, set current state to the new max. */
435 &sc->px_states[sc->px_max_avail], &set);
436 acpi_px_set(sc->dev, &set);
443 acpi_px_to_set(device_t dev, struct acpi_px *px, struct cf_setting *set) argument
483 acpi_px_set(device_t dev, const struct cf_setting *set) argument
538 acpi_px_get(device_t dev, struct cf_setting *set) argument
[all...]
/freebsd-11-stable/stand/i386/boot0/
H A Dboot0.S114 * %dl and %si are set appropriately as when we were called, and
132 .set NHRDRV,0x475 # Number of hard drives
133 .set ORIGIN,0x600 # Execution address
134 .set LOAD,0x7c00 # Load address
136 .set PRT_OFF,0x1be # Partition table
137 .set B0_OFF,(B0_BASE-0x200) # Offset of boot0 data
139 .set MAGIC,0xaa55 # Magic: bootable
141 .set KEY_ENTER,0x1c # Enter key scan code
142 .set KEY_F1,0x3b # F1 key scan code
143 .set KEY_
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64clat_control.c69 uint8_t set);
72 const char *name, uint8_t set);
75 nat64clat_alloc_config(const char *name, uint8_t set) argument
83 cfg->no.set = set;
105 uc->set = cfg->no.set;
127 nat64clat_find(struct namedobj_instance *ni, const char *name, uint8_t set) argument
131 cfg = (struct nat64clat_cfg *)ipfw_objhash_lookup_name_type(ni, set,
162 if (uc->set >
548 nat64clat_manage_sets(struct ip_fw_chain *ch, uint16_t set, uint8_t new_set, enum ipfw_sets_cmd cmd) argument
[all...]
H A Dnat64stl_control.c70 uint8_t set);
73 const char *name, uint8_t set);
76 nat64stl_alloc_config(const char *name, uint8_t set) argument
84 cfg->no.set = set;
106 uc->set = cfg->no.set;
133 nat64stl_find(struct namedobj_instance *ni, const char *name, uint8_t set) argument
137 cfg = (struct nat64stl_cfg *)ipfw_objhash_lookup_name_type(ni, set,
193 if (uc->set >
553 nat64stl_manage_sets(struct ip_fw_chain *ch, uint16_t set, uint8_t new_set, enum ipfw_sets_cmd cmd) argument
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tty/
H A Dlib_twait.c156 * whether to pay attention to evl argument. If set, the smallest of
189 fd_set set; local
341 FD_ZERO(&set);
345 FD_SET(sp->_ifd, &set);
351 FD_SET(fd, &set);
361 FD_SET(ev->data.fev.fd, &set);
369 for (saved_set = set;; set = saved_set) {
374 FD_ZERO(&set);
375 FD_SET(sp->_ifd, &set);
[all...]
/freebsd-11-stable/libexec/rlogind/
H A Drlogind.c359 * when we try and set slave pty's window shape
369 struct pollfd set[2]; local
371 set[0].fd = p;
372 set[0].events = POLLPRI;
373 set[1].fd = f;
374 set[1].events = 0;
376 set[0].events |= POLLOUT;
378 set[1].events |= POLLIN;
381 set[1].events |= POLLOUT;
383 set[
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_siginfo.c178 sigset_t set; local
186 sigemptyset(&set);
187 sigaddset(&set, SIGCHLD);
188 sigprocmask(SIG_BLOCK, &set, NULL);
202 sigset_t set; local
216 sigemptyset(&set);
217 sigsuspend(&set);
232 sigset_t set; local
248 sigemptyset(&set);
249 sigsuspend(&set);
264 sigset_t set; local
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dfs.hpp36 #include <set>
349 std::set< std::string > names(void) const;
/freebsd-11-stable/contrib/libstdc++/include/precompiled/
H A Dstdc++.h77 #include <set>
/freebsd-11-stable/bin/stty/
H A Dkey.c151 ip->set = 1;
173 ip->set = 1;
182 ip->set = 1;
210 ip->set = 1;
224 ip->set = 1;
232 ip->set = 1;
245 ip->set = 1;
269 ip->set = 1;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.boolopt.d35 #pragma D option quiet=set
/freebsd-11-stable/contrib/openbsm/bin/auditdistd/
H A Dsigtimedwait.h46 sigtimedwait(const sigset_t *set, siginfo_t *info, argument
66 bcopy(set, &mask, sizeof(mask));
/freebsd-11-stable/lib/libc/sparc64/gen/
H A D_setjmp.S69 .set CNAME(_longjmp),CNAME(___longjmp)
/freebsd-11-stable/sys/sparc64/include/
H A Dasm.h51 set name, r2 ; \
56 set name, r2
/freebsd-11-stable/sys/mips/mips/
H A Dlocore.S81 .set noreorder
93 * t1: Bits to set explicitly:
110 * t0: Bits to preserve if set:
116 * t1: Bits to set explicitly:
126 * preserved (namely, clearing interrupt bits), and set
127 * bits we want to explicitly set.
150 .set push
151 .set mips32r2
157 .set pop
H A Dmpboot.S36 .set noat
37 .set noreorder
/freebsd-11-stable/crypto/openssl/crypto/pkcs12/
H A Dp12_attr.c129 if (sk_ASN1_TYPE_num(attrib->value.set))
130 return sk_ASN1_TYPE_value(attrib->value.set, 0);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTrigramIndex.cpp20 #include <set>
34 std::set<unsigned> Was;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_vfork_x86_64.inc.S39 .set vfork, ASM_WRAPPER_NAME(vfork)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.h38 /// Extract all abbrev decls in a set. Returns llvm::ErrorSuccess() on
43 void GetUnsupportedForms(std::set<dw_form_t> &invalid_forms) const;
74 void GetUnsupportedForms(std::set<dw_form_t> &invalid_forms) const;
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
H A DDriver.h23 #include <set>
86 // FIXME: When we have set/show variables we can remove this from here.
89 using OptionSet = std::set<char>;
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex_internal.h134 /* An integer used to represent a set of bits. It must be unsigned,
137 /* All bits set in a bitset_word_t. */
147 #define bitset_set(set,i) \
148 (set[i / BITSET_WORD_BITS] |= (bitset_word_t) 1 << i % BITSET_WORD_BITS)
149 #define bitset_clear(set,i) \
150 (set[i / BITSET_WORD_BITS] &= ~((bitset_word_t) 1 << i % BITSET_WORD_BITS))
151 #define bitset_contain(set,i) \
152 (set[i / BITSET_WORD_BITS] & ((bitset_word_t) 1 << i % BITSET_WORD_BITS))
153 #define bitset_empty(set) memset (set, '\
693 bitset_not(bitset_t set) argument
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dmtsm.cpp57 void int_value::set(int v) function in class:int_value
71 set(v);
124 void units_value::set(hunits v) function in class:units_value
158 void string_value::set(string v) function in class:string_value
231 int_values[t].set(v);
236 units_values[t].set(v);
241 bool_values[t].set(1);
246 string_values[t].set(v);
290 string_values[MTSM_TA].set(s);
298 newer->int_values[t].set(olde
[all...]

Completed in 164 milliseconds

1234567891011>>