Searched refs:set (Results 476 - 500 of 1536) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_read_format_rar5.c218 * same set of files as regular test archive, but it's size is 2x smaller,
1083 unsigned long set, clear, flag; local
1093 archive_entry_fflags(ae, &set, &clear);
1099 assertEqualInt(flag, set & flag);
1105 archive_entry_fflags(ae, &set, &clear);
1111 assertEqualInt(flag, set & flag);
1117 archive_entry_fflags(ae, &set, &clear);
1123 assertEqualInt(flag, set & flag);
1129 archive_entry_fflags(ae, &set, &clear);
1135 assertEqualInt(flag, set
[all...]
/freebsd-11-stable/contrib/gcc/
H A Drtlanal.c30 #include "hard-reg-set.h"
67 and set by `-m...' switches. Must be defined in rtlanal.c. */
730 /* Nonzero if register REG is set or clobbered in an insn between
923 rtx set = NULL;
940 but one are dead as single set insns. In common case
941 only single set is present in the pattern so we want
944 When we reach set first time, we just expect this is
945 the single set we are looking for and only when more
949 if (find_reg_note (insn, REG_UNUSED, SET_DEST (set))
950 && !side_effects_p (set))
914 rtx set = NULL; local
996 set_noop_p(rtx set) argument
1089 rtx set = single_set (p); local
3172 rtx set; local
4276 rtx set; local
4338 rtx set; local
4601 rtx set; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dlanguage.c31 return data out of a "language-specific" struct pointer that is set
110 (If the modes are set to "auto", though, these are changed based
138 /* The "set language/type/range" commands all put stuff in these
139 buffers. This is to make them work as set/show commands. The
158 /* Show command. Display a warning if the language set
1114 "\"set check\" must be followed by the name of a check subcommand.\n");
1115 help_list (setchecklist, "set check ", -1, gdb_stdout);
1125 /* Add a language to the set of known languages. */
1393 struct cmd_list_element *set, *show;
1397 set
1382 struct cmd_list_element *set, *show; local
[all...]
H A Dnto-procfs.c88 /* These two globals are only ever set in procfs_open(), but are
611 sigset_t set; local
626 sigemptyset (&set);
627 sigaddset (&set, SIGUSR1);
633 sigwaitinfo (&set, &info);
708 general register set and floating point registers (if supported)
974 sigset_t set; local
1036 sigemptyset (&set);
1037 sigaddset (&set, SIGUSR1);
1038 sigprocmask (SIG_UNBLOCK, &set, NUL
1313 sigset_t set; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp796 // Doesn't set sa_restorer if the caller did not set it, so use with caution
843 uptr internal_sigprocmask(int how, __sanitizer_sigset_t *set, argument
846 return internal_syscall(SYSCALL(sigprocmask), how, set, oldset);
848 __sanitizer_kernel_sigset_t *k_set = (__sanitizer_kernel_sigset_t *)set;
856 void internal_sigfillset(__sanitizer_sigset_t *set) { argument
857 internal_memset(set, 0xff, sizeof(*set));
860 void internal_sigemptyset(__sanitizer_sigset_t *set) { argument
861 internal_memset(set,
865 internal_sigdelset(__sanitizer_sigset_t *set, int signum) argument
875 internal_sigismember(__sanitizer_sigset_t *set, int signum) argument
885 internal_sigdelset(__sanitizer_sigset_t *set, int signum) argument
890 internal_sigismember(__sanitizer_sigset_t *set, int signum) argument
1706 __sanitizer_sigset_t set, old; local
[all...]
/freebsd-11-stable/lib/libc/db/hash/
H A Dhash_bigkey.c314 * This will set bpp to the buffer header of the last page of the big pair.
445 collect_data(HTAB *hashp, BUFHEAD *bufp, int len, int set) argument
464 if (set) {
483 collect_data(hashp, xbp, len + mylen, set)) < 1))
498 __big_keydata(HTAB *hashp, BUFHEAD *bufp, DBT *key, DBT *val, int set) argument
500 key->size = (size_t)collect_key(hashp, bufp, 0, val, set);
512 collect_key(HTAB *hashp, BUFHEAD *bufp, int len, DBT *val, int set) argument
530 if (__big_return(hashp, bufp, 1, val, set))
535 collect_key(hashp, xbp, totlen, val, set)) < 1))
609 * Finally, set th
[all...]
/freebsd-11-stable/lib/libc/mips/string/
H A Dbcmp.S57 .set noreorder
129 .set reorder
/freebsd-11-stable/sys/powerpc/powermac/
H A Dpowermac_thermal.c167 fan->fan->set(fan->fan, fan->fan->default_rpm);
189 fan->fan->set(fan->fan, fan->last_val);
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dlocore.S41 .set kernbase, KERNBASE
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_sysctl.c163 mtk_sysctl_clr_set(uint32_t reg, uint32_t clr, uint32_t set) argument
170 val |= set;
/freebsd-11-stable/sys/dev/extres/clk/
H A Dclk_gate.c47 #define MD4(_clk, off, clr, set ) \
48 CLKDEV_MODIFY_4(clknode_get_device(_clk), off, clr, set)
/freebsd-11-stable/contrib/amd/include/
H A Dam_defs.h1442 # define FD_SET(fd, set) (*(set) |= (1 << (fd)))
1443 # define FD_ISSET(fd, set) (*(set) & (1 << (fd)))
1444 # define FD_CLR(fd, set) (*(set) &= ~(1 << (fd)))
1445 # define FD_ZERO(set) (*(set) = 0)
/freebsd-11-stable/contrib/tcsh/
H A Ded.init.c261 sigset_t set; local
263 sigemptyset(&set);
264 sigaddset(&set, SIG_WINDOW);
265 (void)sigprocmask(SIG_UNBLOCK, &set, NULL);
289 "self-initializing") just because you set $term or whatever, so
312 * if we have been called before but GotTermCaps isn't set, our TERM has
359 * Check and re-init the line. set the terminal into 1 char at a time mode.
392 * Speed was not being set up correctly under POSIX.
548 { /* set tty in normal setup */
552 sigset_t set, ose
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16FrameLowering.cpp172 SavedRegs.set(Mips::S2);
174 SavedRegs.set(Mips::S0);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextPOSIX_x86.cpp431 for (size_t set = 0; set < k_num_register_sets; ++set) {
432 if (IsRegisterSetAvailable(set))
439 const RegisterSet *RegisterContextPOSIX_x86::GetRegisterSet(size_t set) { argument
440 if (IsRegisterSetAvailable(set)) {
443 return &g_reg_sets_i386[set];
445 return &g_reg_sets_x86_64[set];
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDominanceFrontier.h27 #include <set>
43 using DomSetType = std::set<BlockT *>; // Dom set for a bb
44 using DomSetMapType = std::map<BlockT *, DomSetType>; // Dom set map
/freebsd-11-stable/usr.sbin/mpsutil/
H A Dmpsutil.c66 if (strncmp((*cmd)->set, "top", 3) == 0)
71 (*cmd)->set, (*cmd)->name, args, desc);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h48 // A few more bits are used to store the size of the bit set in small mode.
55 // The remaining bits are used to store the actual set in small mode.
82 TheVector.set(BitPos);
196 /// Returns the number of bits which are set.
205 /// Returns true if any bit is set.
212 /// Returns true if all bits are set.
219 /// Returns true if none of the bits are set.
226 /// Returns the index of the first set bit, -1 if none of the bits are set.
247 /// Returns the index of the first unset bit, -1 if all of the bits are set
363 SmallBitVector &set() { function in class:llvm::SmallBitVector
371 SmallBitVector &set(unsigned Idx) { function in class:llvm::SmallBitVector
384 SmallBitVector &set(unsigned I, unsigned E) { function in class:llvm::SmallBitVector
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h23 #include <set>
91 typedef std::set<std::string> DependenciesSetTy;
156 // A set of macro names that are defined either via command line or
262 // and adding new macros into DefinedMacros set.
284 // parameter to lexPreprocessor() is set to false. Being passed
287 // to prepSkipRegion() and checking that it is never set to false.
310 // TokStart is set to the first non-whitespace symbol after the preprocessing
333 // or EOF, CurPtr is set to point to this symbol. The method returns false,
364 // controls on the stack have their IsDefined member set to true.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEVPTBlockPass.cpp52 return MachineFunctionProperties().set(
53 MachineFunctionProperties::Property::NoVRegs).set(
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp155 State = State->set<MutexCounter>(--mutexCount);
158 State = State->set<MutexCounter>(++mutexCount);
H A DFuchsiaHandleChecker.cpp261 State = State->set<HStateMap>(Handle, HandleState::getEscaped());
294 State = State->set<HStateMap>(Handle, HandleState::getEscaped());
318 State->set<HStateMap>(RetSym, HandleState::getMaybeAllocated(nullptr));
345 State = State->set<HStateMap>(Handle, HandleState::getReleased());
355 State = State->set<HStateMap>(
427 State = State->set<HStateMap>(
467 State = State->set<HStateMap>(I.first, HandleState::getEscaped());
471 State = State->set<HStateMap>(I.first, HandleState::getEscaped());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp129 LivePhysRegs.set(LI.PhysReg);
155 // Check the subreg set, not the alias set, because a def
175 LivePhysRegs.set(*AI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerCompileUnit.cpp88 Attr.set(Ctxt->getCanonicalDIEOffset());
90 Attr.set(RefDie->getOffset() + RefUnit->getStartOffset());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h12 #include <set>
115 /// The parsed options are set via calls to SetOptionValue. In case of a
197 // This is a set of options expressed as indexes into the options table for
199 typedef std::set<int> OptionSet;
280 /// "src_mask" set. After the option definition is copied into the options
281 /// definitions in this class, set the usage_mask to "dst_mask".

Completed in 306 milliseconds

<<11121314151617181920>>