Searched refs:set (Results 451 - 475 of 1536) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/arm/arm/
H A Dcpufunc_asm_armv7.S317 mcr CP15_CSSELR(r0) @ set cache level to L1
333 lsl r1, r1, r0 @ r1 now contains the set decr
334 mov r2, ip @ r2 now contains set way decr
336 /* r3 = ways/sets, r2 = way decr, r1 = set decr, r0 and ip are free */
338 movs r0, r3 @ get current way/set
340 movs r0, r0, lsl #10 @ clear way bits leaving only set bits
341 subne r3, r3, r1 @ non-zero?, decrement set #
342 subeq r3, r3, r2 @ zero?, decrement way # and restore set count
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp9 // minimizing top-down. We start by constructing an initial root set R, and
12 // 1. Minimize the set R using the test predicate:
25 // the required set, we no longer consider them for elimination. For strictly
28 // this by allowing the required set to be minimized as well, but need more test
60 typedef std::set<change_ty>::iterator pred_closure_iterator_ty;
61 typedef std::set<change_ty>::iterator succ_closure_iterator_ty;
71 mutable std::set<changeset_ty> FailedTestsCache;
77 std::map<change_ty, std::set<change_ty> > PredClosure;
78 std::map<change_ty, std::set<change_ty> > SuccClosure;
123 /// ExecuteOneTest - Execute a single test predicate on the change set \
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFRegisters.cpp21 #include <set>
38 BadRC.set(R);
91 PU.set(*U);
101 std::set<RegisterId> PhysicalRegisterInfo::getAliasSet(RegisterId Reg) const {
102 // Do not include RR in the alias set.
103 std::set<RegisterId> AS;
277 Units.set(P.first);
327 Regs.set(*S);
330 // Find the set of all registers that are aliased to all the units
338 // For each other unit, intersect it with the set o
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_entry.c377 unsigned long *set, unsigned long *clear)
379 *set = entry->ae_fflags_set;
385 * really need the text to be rebuilt in a canonical form, set the
386 * text, ask for the bitmaps, then set the bitmaps. (Setting the
807 * Functions to set archive_entry properties.
820 unsigned long set, unsigned long clear)
823 entry->ae_fflags_set = set;
1058 /* Set symlink if symlink is already set, else set hardlink. */
1077 /* Set symlink if symlink is already set, els
376 archive_entry_fflags(struct archive_entry *entry, unsigned long *set, unsigned long *clear) argument
819 archive_entry_set_fflags(struct archive_entry *entry, unsigned long set, unsigned long clear) argument
1769 unsigned long set; member in struct:flag
1996 unsigned long set, clear; local
2064 unsigned long set, clear; local
2124 unsigned long set, clear; local
[all...]
H A Darchive_write_set_format_mtree.c144 } set; member in struct:mtree_writer
205 int dironly; /* If it is set, ignore all files except
207 int indent; /* If it is set, indent output data. */
208 int output_global_set; /* If it is set, use /set keyword to set
210 * classic format, it is set by default. */
432 * Write /set keyword.
447 oldkeys = mtree->set.keys;
450 if (mtree->set
[all...]
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_signal.c379 sigset_t set; local
381 SIGEMPTYSET(set);
382 SIGADDSET(set, signum);
383 return (kern_sigprocmask(td, SIG_BLOCK, &set, NULL, 0));
388 sigset_t set; local
390 SIGEMPTYSET(set);
391 SIGADDSET(set, signum);
392 return (kern_sigprocmask(td, SIG_UNBLOCK, &set, NULL,
436 if (uap->set != NULL) {
437 if ((error = copyin(uap->set,
[all...]
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dtrans_lsock.c502 /* which of the fields are set */
503 u_int set; member in struct:lsock_dep
529 if (!(ld->set & LD_STATUS))
540 ld->set |= LD_CREATE;
544 ld->set |= LD_DELETE;
552 if (ld->set & LD_CREATE) {
559 if ((ld->set & LD_DELETE) && ctx->code == SNMP_RET_OK)
622 if (ld->set & LD_STATUS)
628 ld->set |= LD_STATUS;
632 if (ld->set
[all...]
/freebsd-11-stable/sys/conf/
H A Dkern.opts.mk3 # Options set in the build system that affect the kernel somehow.
7 # to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
10 # The NO_* variables should only be set by makefiles for variables
140 # MK_* variable is set to "no".
164 # Some modules only compile successfully if option FDT is set, due to #ifdef FDT
/freebsd-11-stable/sys/contrib/ck/include/gcc/x86_64/
H A Dck_pr.h415 ck_pr_cas_##S(M *target, T compare, T set) \
421 : "q" (set), \
446 * Compare and swap, set *v to old value of target.
450 ck_pr_cas_##S##_value(M *target, T compare, T set, M *v) \
459 : "q" (set), \
488 ck_pr_cas_64_2(uint64_t target[2], uint64_t compare[2], uint64_t set[2]) argument
497 : "b" (set[0]),
498 "c" (set[1]),
515 uint64_t set[2],
528 "b" (set[
513 ck_pr_cas_64_2_value(uint64_t target[2], uint64_t compare[2], uint64_t set[2], uint64_t v[2]) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp153 // function to see if the return value was checked by now and set the lock state
173 state = state->set<LockMap>(lockR, LockState::getUnlocked());
175 state = state->set<LockMap>(lockR, LockState::getDestroyed());
284 lockSucc = lockSucc->set<LockMap>(lockR, LockState::getLocked());
339 state = state->set<LockSet>(LS.getTail());
342 state = state->set<LockMap>(lockR, LockState::getUnlocked());
371 State = State->set<DestroyRetVal>(LockR, sym);
373 State = State->set<LockMap>(
376 State = State->set<LockMap>(
383 State = State->set<LockMa
[all...]
/freebsd-11-stable/contrib/xz/src/common/
H A Dmythread.h83 // Use sigprocmask() to set the signal mask in single-threaded programs.
87 mythread_sigmask(int how, const sigset_t *restrict set, argument
90 int ret = sigprocmask(how, set, oset);
135 // Use pthread_sigmask() to set the signal mask in multi-threaded programs.
138 mythread_sigmask(int how, const sigset_t *restrict set, argument
143 (void)set;
146 int ret = pthread_sigmask(how, set, oset);
/freebsd-11-stable/sys/netgraph/
H A Dng_tcpmss.c222 struct ng_tcpmss_config *set; local
231 set = (struct ng_tcpmss_config *)msg->data;
232 in = ng_findhook(node, set->inHook);
233 out = ng_findhook(node, set->outHook);
240 priv->stats.maxMSS = set->maxMSS;
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dmips.pl24 # In addition the code depends on preprocessor flags set up by MIPSpro
85 $code=".set mips2\n";
110 .set noat
116 .set noreorder
130 .set noreorder
140 .set reorder
203 .set noreorder
211 .set reorder
256 .set noreorder
275 .set noreorde
[all...]
H A Dmips-mont.pl119 .set noat
120 .set noreorder
167 .set reorder
205 .set noreorder
233 .set reorder
293 .set noreorder
324 .set reorder
355 .set noreorder
396 .set noreorder
/freebsd-11-stable/contrib/gcc/
H A Dlocal-alloc.c67 #include "hard-reg-set.h"
110 is a set of consecutive insns. -1 if death has not been recorded. */
170 The former register set is given priority for allocation. This tends to
173 /* Element Q is a set of hard registers that are suggested for quantity Q by
178 /* Element Q is a set of hard registers that are suggested for quantity Q by
222 This is set up as a result of register allocation.
234 /* Each set of hard registers indicates registers live at a particular
409 for the previous block; it is set to the entire array before
412 explicit set by `alloc_qty'. */
465 validate_equiv_mem_from_store (rtx dest, rtx set ATTRIBUTE_UNUSE
821 rtx set; local
1020 rtx set, src, dest; local
1328 rtx link, set; local
2169 rtx set = XVECEXP (PATTERN (this_insn), 0, i); local
[all...]
H A Dresource.c29 #include "hard-reg-set.h"
217 /* Handle leaf items for which we set resource flags. Also, special-case
304 /* Usually, the first operand of SET is set, not referenced. But
364 We assume that they both use and set all registers. Using all
432 looking for registers that are set before they are used. These are dead. argument
439 struct resources set, struct resources needed)
478 underlying insn. Any registers set by the underlying insn
554 target_set = set;
562 mark_set_resources (insn, &set, 0, MARK_SRC_DEST_CALL);
566 mark_set_resources (insn, &set,
895 struct resources set, needed; local
[all...]
H A Dalias.c34 #include "hard-reg-set.h"
119 In this situation we say the alias set for `struct S' is the
123 see if either alias set is a subset of the other. We need not trace
127 Alias set zero is implicitly a superset of all other alias sets.
128 However, this is no actual entry for alias set zero. It is an
133 /* The alias set number, as stored in MEM_ALIAS_SET. */
136 /* The children of the alias set. These are not just the immediate
146 alias set the same as alias set zero. */
187 information through set chain
478 HOST_WIDE_INT set; local
960 record_set(rtx dest, rtx set, void *data ATTRIBUTE_UNUSED) argument
2496 rtx note, set; local
[all...]
/freebsd-11-stable/sys/kern/
H A Dlink_elf.c113 Elf_Addr pcpu_start; /* Pre-relocation pcpu set start. */
114 Elf_Addr pcpu_stop; /* Pre-relocation pcpu set stop. */
115 Elf_Addr pcpu_base; /* Relocated pcpu set address. */
117 Elf_Addr vnet_start; /* Pre-relocation vnet set start. */
118 Elf_Addr vnet_stop; /* Pre-relocation vnet set stop. */
119 Elf_Addr vnet_base; /* Relocated vnet set address. */
206 struct elf_set *set, *iter; local
208 set = malloc(sizeof(*set), M_LINKER, M_WAITOK);
209 set
234 struct elf_set *set; local
252 struct elf_set *set; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp35 #include <set>
90 // the instructions inside the block to have a minimal set of dependencies
307 // Returns if the register was set between first and last.
403 // PreScheduling phase to set LiveIn and LiveOut.
677 std::set<unsigned> FormingGroup;
797 std::map<std::set<unsigned>, unsigned> ColorCombinations;
810 std::set<unsigned> SUColors;
834 std::map<std::set<unsigned>, unsigned>::iterator Pos =
852 std::set<unsigned> SUColors;
876 std::map<std::set<unsigne
[all...]
/freebsd-11-stable/usr.sbin/rtsold/
H A Drtsold.c117 struct pollfd set[2]; local
184 /* set log level */
245 set[0].fd = s;
246 set[0].events = POLLIN;
247 set[1].fd = -1;
253 set[1].fd = rtsock;
254 set[1].events = POLLIN;
321 e = poll(set, 2, timeout ? (timeout->tv_sec * 1000 + timeout->tv_nsec / 1000 / 1000) : INFTIM);
331 if (set[1].revents & POLLIN)
333 if (set[
[all...]
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwnvar.h76 #define BWN_WRITE_SETMASK2(mac, offset, mask, set) \
77 BWN_WRITE_2(mac, offset, (BWN_READ_2(mac, offset) & mask) | set)
80 #define BWN_WRITE_SETMASK4(mac, offset, mask, set) \
81 BWN_WRITE_4(mac, offset, (BWN_READ_4(mac, offset) & mask) | set)
93 #define BWN_RF_SETMASK(mac, offset, mask, set) \
94 BWN_RF_WRITE(mac, offset, (BWN_RF_READ(mac, offset) & mask) | set)
95 #define BWN_RF_SET(mac, offset, set) \
96 BWN_RF_WRITE(mac, offset, BWN_RF_READ(mac, offset) | set)
100 #define BWN_PHY_SET(mac, offset, set) do { \
105 mac->mac_phy.phy_maskset(mac, offset, 0xffff, set); \
[all...]
/freebsd-11-stable/contrib/bmake/mk/
H A Ddep.mk66 set -x; for f in $$files; do ${_MKDEP} -a ${MKDEPFLAGS} \
69 set -x; for f in $$files; do ${_MKDEP} -a ${MKDEPFLAGS} \
72 set -x; for f in $$files; do ${_MKDEP} -a ${MKDEPFLAGS} \
H A Dmanifest.mk28 # which can be set per dir, per file or we use defaults
58 # as above and s is set to the name we store f as
66 set ${${.TARGET}.SYMLINKS}; while test $$# -ge 2; do echo "$$2 type=link link=$$1"; shift 2; done) > ${.TARGET}
/freebsd-11-stable/contrib/unbound/contrib/
H A Dwarmup.cmd12 set address="127.0.0.1"
15 for /f "delims=" %%a in ('where dig') do @set dig=%%a
19 set arg=%1%
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Ddriver.cpp50 #include <set>
73 static const char *GetStableCStr(std::set<std::string> &SavedStrings,
108 std::set<std::string> &SavedStrings) {
180 std::set<std::string> &SavedStrings) {
214 std::set<std::string> &SavedStrings) {
442 std::set<std::string> SavedStrings;

Completed in 175 milliseconds

<<11121314151617181920>>