| /minix3/external/bsd/llvm/dist/llvm/unittests/ADT/ |
| H A D | SparseMultiSetTest.cpp | 21 USet Set; in TEST() local 22 EXPECT_TRUE(Set.empty()); in TEST() 23 EXPECT_EQ(0u, Set.size()); in TEST() 25 Set.setUniverse(10); in TEST() 28 EXPECT_TRUE(Set.find(0) == Set.end()); in TEST() 29 EXPECT_TRUE(Set.find(9) == Set.end()); in TEST() 32 const USet &CSet = Set; in TEST() 42 USet Set; in TEST() local 43 Set.setUniverse(10); in TEST() 44 USet::iterator I = Set.insert(5); in TEST() [all …]
|
| H A D | SparseSetTest.cpp | 21 USet Set; in TEST() local 22 EXPECT_TRUE(Set.empty()); in TEST() 23 EXPECT_TRUE(Set.begin() == Set.end()); in TEST() 24 EXPECT_EQ(0u, Set.size()); in TEST() 26 Set.setUniverse(10); in TEST() 29 EXPECT_TRUE(Set.find(0) == Set.end()); in TEST() 30 EXPECT_TRUE(Set.find(9) == Set.end()); in TEST() 33 const USet &CSet = Set; in TEST() 44 USet Set; in TEST() local 45 Set.setUniverse(10); in TEST() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/TableGen/ |
| H A D | SetTheory.td | 8 class Set<dag d> { 12 // It prints all Set instances and their ordered set interpretation. 22 def S0a : Set<(add)>; 23 def S0b : Set<(add a)>; 24 def S0c : Set<(add a, b)>; 25 def S0d : Set<(add b, a)>; 26 def S0e : Set<(add a, a)>; 27 def S0f : Set<(add a, a, b, a, c, b, d, a)>; 28 def S0g : Set<(add b, a, b)>; 37 // Defs of Set class expand into their elements. [all …]
|
| H A D | SiblingForeach.td | 3 class Set<int i = 0, int j = 0, int k = 0> { 10 def I1_#i : Set<i>; 12 def I1_#i#_J1_#j : Set<i, j>; 14 def I2_#i : Set<i>; 17 def I3_#i#_J2_#j#_K1_#k : Set<i, j, k>; 19 def I4_#i#_J3_#j : Set<i, j>;
|
| /minix3/external/bsd/llvm/dist/llvm/lib/TableGen/ |
| H A D | SetTheory.cpp | 70 virtual void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, 78 RecSet Set; in apply() local 79 ST.evaluate(Expr->arg_begin()[0], Set, Loc); in apply() 84 apply2(ST, Expr, Set, II->getValue(), Elts, Loc); in apply() 90 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, in apply2() 95 if (unsigned(N) < Set.size()) in apply2() 96 Elts.insert(Set.begin() + N, Set.end()); in apply2() 102 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, in apply2() 107 if (unsigned(N) > Set.size()) in apply2() 108 N = Set.size(); in apply2() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | SmallSet.h | 37 std::set<T, C> Set; variable 45 return Vector.empty() && Set.empty(); in empty() 49 return isSmall() ? Vector.size() : Set.size(); in size() 58 return Set.count(V); in count() 71 return std::make_pair(None, Set.insert(V).second); in insert() 83 Set.insert(Vector.back()); in insert() 86 Set.insert(V); in insert() 98 return Set.erase(V); in erase() 109 Set.clear(); in clear() 112 bool isSmall() const { return Set.empty(); } in isSmall()
|
| H A D | FoldingSet.h | 581 FoldingSet<T> Set; variable 586 : Set(Log2InitSize) { in Set() function 599 void clear() { Set.clear(); Vector.clear(); } in clear() 605 return Set.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos() 612 T *Result = Set.GetOrInsertNode(N); in GetOrInsertNode() 621 Set.InsertNode(N, InsertPos); in InsertNode() 628 Set.InsertNode(N); in InsertNode() 633 unsigned size() const { return Set.size(); } in size() 636 bool empty() const { return Set.empty(); } in empty()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/ |
| H A D | CodeGenOptions.def | 38 CODEGENOPT(CUDAIsDevice , 1, 0) ///< Set when compiling for CUDA device. 42 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled. 43 CODEGENOPT(DisableFPElim , 1, 0) ///< Set when -fomit-frame-pointer is enabled. 50 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled. 63 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled. 64 CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is 66 CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled. 70 CODEGENOPT(MergeFunctions , 1, 0) ///< Set when -fmerge-functions is enabled. 71 CODEGENOPT(NoCommon , 1, 0) ///< Set when -fno-common or C++ is enabled. 72 CODEGENOPT(NoDwarfDirectoryAsm , 1, 0) ///< Set when -fno-dwarf-directory-asm is [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/autoconf/m4/ |
| H A D | func_isinf.m4 | 13 [Set to 1 if the isinf function is found in <math.h>]) 21 [Set to 1 if the isinf function is found in <cmath>]) 29 [Set to 1 if the std::isinf function is found in <cmath>]) 37 [Set to 1 if the finite function is found in <ieeefp.h>])
|
| H A D | func_isnan.m4 | 11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>]) 18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>]) 25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
|
| /minix3/etc/skel/ |
| H A D | dot.cshrc | 12 # Set your editor. Default to explicitly setting vi, as otherwise some 26 # Set the pager. This is used by, among other things, man(1) for 31 # Set your default printer, if desired. 34 # Set the search path for programs. 51 # Set the location of your incoming email for mail notification. 54 # Set the prompt to include the hostname.
|
| H A D | dot.profile | 12 # Set your editor. Default to explicitly setting vi, as otherwise some 26 # Set the pager. This is used by, among other things, man(1) for 31 # Set your default printer, if desired. 34 # Set the search path for programs.
|
| /minix3/external/bsd/llvm/dist/llvm/lib/DebugInfo/ |
| H A D | DWARFDebugAranges.cpp | 25 DWARFDebugArangeSet Set; in extract() local 27 while (Set.extract(DebugArangesData, &Offset)) { in extract() 28 uint32_t CUOffset = Set.getCompileUnitDIEOffset(); in extract() 29 for (const auto &Desc : Set.descriptors()) { in extract()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/R600/ |
| H A D | AMDGPUMachineFunction.cpp | 18 AttributeSet Set = MF.getFunction()->getAttributes(); in AMDGPUMachineFunction() local 19 Attribute A = Set.getAttribute(AttributeSet::FunctionIndex, in AMDGPUMachineFunction()
|
| /minix3/etc/ |
| H A D | profile | 6 # Set library path 9 # Set the timezone
|
| /minix3/external/bsd/nvi/dist/docs/vi.ref/ |
| H A D | vi.cmd.texi | 399 Set to the line where the word is found. 401 Set to the first character of the word. 427 Set to the last line of text displayed on the screen. 429 Set to the first nonblank character of the line. 458 Set to the current line plus the number of lines scrolled. 460 Set to the first nonblank character of the line. 499 Set to the first line on the screen. 501 Set to the first nonblank character of the current line. 546 Set to the 577 Set to the current line plus [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
| H A D | p11.cpp | 40 template <class Get, class Set> 41 float &f(char const* name, Get fget, Set fset, char const* docstr = 0);
|
| /minix3/minix/tests/safecopy/ |
| H A D | README | 7 1. Set USE_COW_SAFECOPY to 1 in /usr/src/kernel/system/do_safecopy.c 12 1. Set USE_COW_SAFECOPY to 0 in /usr/src/kernel/system/do_safecopy.c
|
| /minix3/external/bsd/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-filepath.h | 73 Set(rhs); 77 void Set(const FilePath& rhs) { in Set() function
|
| /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/ |
| H A D | templates-left.h | 13 template<typename T> class Set; variable 16 template<typename T> class Set {
|
| /minix3/crypto/external/bsd/openssl/dist/engines/ |
| H A D | makeengines.com | 56 $! Set the default TCP/IP library to link against if needed 88 $! Set the names of the engines we want to build 117 $! Set the goal directories, and create them if necessary 124 $! Set the goal files, and create them if necessary 180 $! Set up two loops, one that keeps track of the engines, 196 $! Set up the engine library names. 240 $! Set up the source and object reference 655 $! Set basic C compiler /INCLUDE directories. 672 $! Looks Like GNUC, Set To Use GNUC. 685 $! Looks Like DECC, Set To Use DECC. [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | Sparc.td | 31 "Enable UltraSPARC Visual Instruction Set extensions">; 34 "Enable Visual Instruction Set extensions II">; 37 "Enable Visual Instruction Set extensions III">;
|
| /minix3/external/bsd/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenRegisters.cpp | 156 CodeGenRegister::Set::const_iterator RegI, RegE; 160 RegUnitIterator(const CodeGenRegister::Set &Regs): in RegUnitIterator() 738 for (CodeGenRegister::Set::iterator I = Members.begin(), E = Members.end(); in CodeGenRegisterClass() 775 for (CodeGenRegister::Set::const_iterator I = K.Members->begin(), in operator <<() 1053 const CodeGenRegister::Set *Members, in getOrCreateSubClass() 1302 CodeGenRegister::Set Regs; 1331 const CodeGenRegister::Set &Regs = RegClass.getMembers(); in computeUberSets() 1339 for (CodeGenRegister::Set::const_iterator I = std::next(Regs.begin()), in computeUberSets() 1412 for (CodeGenRegister::Set::iterator RegI = I->Regs.begin(), in computeUberWeights() 1519 const RegUnitSet &Set) { in findRegUnitSet() argument [all …]
|
| /minix3/external/bsd/nvi/dist/perl_api/ |
| H A D | VI.pod | 127 Set the message line to text. 147 Set the cursor to the line and column numbers supplied. 153 Set lineNumber to the text supplied. 159 Set the mark to the line and column numbers supplied. 165 Set an option. 251 VI::Msg($VI::ScreenId,"Set marks: $all");
|
| /minix3/external/bsd/llvm/dist/clang/tools/libclang/ |
| H A D | CIndexDiagnostic.cpp | 183 Set = static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics); in lazyCreateDiags() local 184 if (AU->stored_diag_size() != Set->getNumDiagnostics()) { in lazyCreateDiags() 187 delete Set; in lazyCreateDiags() 193 CXDiagnosticSetImpl *Set = new CXDiagnosticSetImpl(); in lazyCreateDiags() local 194 TU->Diagnostics = Set; in lazyCreateDiags() 197 &*DOpts, Set); in lazyCreateDiags()
|