Searched refs:set (Results 151 - 175 of 1536) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gdb/gdb/
H A Ddemangle.c37 the executable it has loaded. It can be set to a specific style ("gnu",
39 selection of the style unless you do an explicit "set demangle auto".
40 To select one of these as the default, set DEFAULT_DEMANGLING_STYLE in
50 "set demangle-style" command, printed as part of the output by the
62 /* Set current demangling style. Called by the "set demangle-style"
142 /* Fake a "set demangle-style" command. */
177 struct cmd_list_element *set, *show; local
192 set = add_set_enum_cmd ("demangle-style", class_support,
196 Use `set demangle-style' without arguments for a list of demangling styles.",
198 show = add_show_from_set (set,
[all...]
/freebsd-11-stable/bin/pax/
H A Dtty_subs.c132 * write a warning message to stderr. if "set" the exit value of pax
137 paxwarn(int set, const char *fmt, ...) argument
141 if (set)
160 * write a warning message to stderr. if "set" the exit value of pax
165 syswarn(int set, int errnum, const char *fmt, ...) argument
169 if (set)
/freebsd-11-stable/sys/amd64/linux/
H A Dlinux_locore.s40 .set clock_gettime, __vdso_clock_gettime
47 .set time, __vdso_time
54 .set gettimeofday, __vdso_gettimeofday
60 .set getcpu, __vdso_getcpu
/freebsd-11-stable/lib/libc/mips/string/
H A Dffs.S53 and v1, a0, 1 # bit set?
/freebsd-11-stable/tools/regression/sigqueue/sigqtest2/
H A Dsigqtest2.c82 sigset_t set; local
93 sigemptyset(&set);
94 sigaddset(&set, SIGRTMIN);
95 sigprocmask(SIG_BLOCK, &set, NULL);
/freebsd-11-stable/usr.bin/tr/
H A Dextern.h45 wint_t equiv[NCHARS_SB]; /* equivalence set */
46 wint_t *set; /* set of characters */ member in struct:__anon13836
/freebsd-11-stable/contrib/bsnmp/snmp_mibII/
H A DmibII_ipaddr.c49 uint32_t set; member in struct:update
75 if (!(upd->set & UPD_MASK)) {
87 if (!(upd->set & UPD_BCAST) || upd->bcast) {
111 if ((upd->set & UPD_IFINDEX) && upd->ifindex != ifa->ifindex)
116 if (((upd->set & UPD_MASK) && upd->mask.s_addr != ifa->inmask.s_addr) ||
117 (upd->set & UPD_BCAST)) {
118 if (upd->set & UPD_MASK)
120 if (upd->set & UPD_BCAST) {
128 syslog(LOG_ERR, "set netmask/bcast: %m");
169 if (!(upd->set
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DArchiveLibraryFile.h13 #include <set>
20 /// initial set of atoms linked. Instead, when the Resolver will query
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dfma_opt.S30 .set fmal, fma
H A Dfmax_opt.S29 .set fmaxl, fmax
H A Dfmin_opt.S29 .set fminl, fmin
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLinux_mips.h24 const lldb_private::RegisterSet *GetRegisterSet(size_t set) const;
H A DRegisterContextLinux_mips64.h24 const lldb_private::RegisterSet *GetRegisterSet(size_t set) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h22 #include <set>
34 // The indices of the set bits in the bitset.
35 std::set<uint64_t> Bits;
43 // Log2 alignment of the bit set relative to the combined global.
82 /// significantly reduce bit set sizes in many cases.
85 /// Each set of referenced globals causes the algorithm to create a new
86 /// fragment, which is assembled by appending each referenced global in the set
122 /// The bit set lowering pass assigns an object index to each object that needs
123 /// to be laid out, and calls addFragment for each bit set passing the object
140 void addFragment(const std::set<uint64_
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_sigalarm.c90 sigset_t set; local
95 sigemptyset(&set);
96 sigsuspend(&set);
/freebsd-11-stable/contrib/ntp/lib/isc/nls/
H A Dmsgcat.c111 isc_msgcat_get(isc_msgcat_t *msgcat, int set, int message, argument
115 * Get message 'message' from message set 'set' in 'msgcat'. If it
120 REQUIRE(set > 0);
127 return (catgets(msgcat->catalog, set, message, default_text));
/freebsd-11-stable/lib/libc/stdio/
H A Dtmpfile.c54 sigset_t set, oset; local
72 sigfillset(&set);
73 (void)__libc_sigprocmask(SIG_BLOCK, &set, &oset);
/freebsd-11-stable/lib/libc/arm/
H A DSYS.h54 .set _C_LABEL(x), _C_LABEL(__CONCAT(__sys_,x)); \
56 .set _C_LABEL(__CONCAT(_,x)),_C_LABEL(__CONCAT(__sys_,x)); \
70 .set _C_LABEL(__CONCAT(_,x)),_C_LABEL(__CONCAT(__sys_,x)); \
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/
H A Dcrt0_basic.S38 .set noreorder
52 la sp, __stack # set stack pointer
62 move a0,zero # set argc to 0
/freebsd-11-stable/sys/contrib/ck/include/gcc/
H A Dck_pr.h158 ck_pr_cas_##S(M *target, T compare, T set) \
161 z = __sync_bool_compare_and_swap((T *)target, compare, set); \
181 * Compare and swap, set *v to old value of target.
184 ck_pr_cas_ptr_value(void *target, void *compare, void *set, void *v) argument
186 set = __sync_val_compare_and_swap((void **)target, compare, set);
187 *(void **)v = set;
188 return (set == compare);
193 ck_pr_cas_##S##_value(T *target, T compare, T set, T *v) \
195 set
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DStage.h20 #include <set>
29 std::set<HWEventListener *> Listeners;
35 const std::set<HWEventListener *> &getListeners() const { return Listeners; }
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemarkLinker.h22 #include <set>
43 /// A set holding unique remarks.
44 /// FIXME: std::set is probably not the most appropriate data structure here.
47 std::set<std::unique_ptr<Remark>, RemarkPtrCompare> Remarks;
52 /// Keep this remark. If it's already in the set, discard it.
84 pointee_iterator<std::set<std::unique_ptr<Remark>>::iterator>;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.h8 // Defines a generic automaton builder. This takes a set of transitions and
24 #include <set>
35 /// a function of the cardinality of the set of states.
69 /// A DFA transition consists of a set of NFA states transitioning to a
70 /// new set of NFA states. The DfaTransitionInfo tracks, for every
71 /// transitioned-from NFA state, a set of valid transitioned-to states.
78 /// The set of all possible actions.
79 std::set<action_type> Actions;
81 /// The set of nondeterministic transitions. A state-action pair can
85 std::set<state_typ
[all...]
/freebsd-11-stable/stand/i386/pmbr/
H A Dpmbr.s37 .set LOAD,0x7c00 # Load address
38 .set EXEC,0x600 # Execution address
39 .set MAGIC,0xaa55 # Magic: bootable
40 .set SECSIZE,0x200 # Size of a single disk sector
41 .set DISKSIG,440 # Disk signature offset
42 .set STACK,EXEC+SECSIZE*4 # Stack address
43 .set GPT_ADDR,STACK # GPT header address
44 .set GPT_SIG,0
45 .set GPT_SIG_0,0x20494645 # "EFI "
46 .set GPT_SIG_
[all...]
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_sig.c73 int _sigtimedwait(const sigset_t *set, siginfo_t *info,
75 int _sigwaitinfo(const sigset_t *set, siginfo_t *info);
76 int _sigwait(const sigset_t *set, int *sig);
119 remove_thr_signals(sigset_t *set) argument
121 if (SIGISMEMBER(*set, SIGCANCEL))
122 SIGDELSET(*set, SIGCANCEL);
126 thr_remove_thr_signals(const sigset_t *set, sigset_t *newset) argument
128 *newset = *set;
237 * longjmp()s out of its signal handler, wish its jmpbuf was set
241 * re-set cancel_enabl
587 __thr_sigprocmask(int how, const sigset_t *set, sigset_t *oset) argument
605 _pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) argument
614 _sigsuspend(const sigset_t * set) argument
622 __thr_sigsuspend(const sigset_t * set) argument
647 _sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec * timeout) argument
662 __thr_sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec * timeout) argument
677 _sigwaitinfo(const sigset_t *set, siginfo_t *info) argument
690 __thr_sigwaitinfo(const sigset_t *set, siginfo_t *info) argument
703 _sigwait(const sigset_t *set, int *sig) argument
716 __thr_sigwait(const sigset_t *set, int *sig) argument
[all...]

Completed in 198 milliseconds

1234567891011>>