| /src/tests/lib/csu/ |
| h_initfini_common.cxx | 9 class Test { 11 Test() 23 ~Test() 37 Test test; variable
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| SizeOpts.h | 37 Test, // A query call from a unit test.
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlistener/ |
| llvm-jitlistener.cpp | 220 cl::ParseCommandLineOptions(argc, argv, "llvm jit event listener test utility\n"); 222 JitEventListenerTest Test; 223 Test.ProcessInput(InputFilename);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| CrossDSOCFI.cpp | 145 BasicBlock *TestBB = BasicBlock::Create(Ctx, "test", F); 149 Value *Test = IRBTest.CreateCall( 152 BranchInst *BI = IRBTest.CreateCondBr(Test, ExitBB, TrapBB);
|
| /src/external/bsd/ntp/dist/ntpd/ |
| check_y2k.c | 3 /* check_y2k.c -- test ntp code constructs for Y2K correctness Y2KFixes [*/ 10 here and ran it as a test case just to be sure. 13 repaired functions from herein to properly test them 129 static int yearend; /* ending year we test for NTP time. 160 /* NOTE: will automacially expand test years on 196 year = 2100; /* test year > limit but CURRENT year < limit */ 223 long Test; 224 Test = Days( year ); 225 if ( days != Test ) 228 year, (long)days, (long)Test ); [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| Test.py | 8 # Test result codes. 11 """Test result codes.""" 58 # Test metric values. 74 Convert this metric to content suitable for serializing in the JSON test 142 # Test results. 145 """Wrapper for the results of executing an individual test.""" 150 # The test output. 152 # The wall timing to execute the test, if timing. 156 # The metrics reported by this test. 158 # The micro-test results reported by this test [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| X86BaseInfo.h | 112 // TEST 113 Test, 144 // TEST 161 return FirstMacroFusionInstKind::Test; 341 case X86::FirstMacroFusionInstKind::Test:
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| Consumed.cpp | 52 // TODO: Test nested conditionals: A) Checking the same value multiple times, 935 static void splitVarStateForIf(const IfStmt *IfNode, const VarTestResult &Test, 938 ConsumedState VarState = ThenStates->getState(Test.Var); 941 ThenStates->setState(Test.Var, Test.TestsFor); 942 ElseStates->setState(Test.Var, invertConsumedUnconsumed(Test.TestsFor)); 943 } else if (VarState == invertConsumedUnconsumed(Test.TestsFor)) { 945 } else if (VarState == Test.TestsFor) { 1211 // declaration. When it is removed the test needs to be enable [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMInstructionSelector.cpp | 1142 auto Test = 1147 if (!constrainSelectedInstRegOperands(*Test, TII, TRI, RBI))
|
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangAttrEmitter.cpp | 1833 // attributes, so test whether the subject is one that appertains to a 1980 std::string Test; 1983 if (!Test.empty()) 1984 Test += " || "; 1988 Test += "("; 1989 Test += Code; 1990 Test += ")"; 1997 Test += "LangOpts."; 1998 Test += E->getValueAsString("Name"); 2002 if (Test.empty() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/ |
| InstrProf.h | 454 /// This interface is used by reader of CoverageMapping test 615 // Sum of the total count values for the test profile. 616 CountSumOrPercent Test;
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
| gtest.h | 31 // The Google C++ Testing and Mocking Framework (Google Test) 33 // This header file defines the public API for Google Test. It should be 34 // included by any test program that uses Google Test. 46 // Acknowledgment: Google Test borrowed the idea of automatic test 64 #include "gtest/gtest-death-test.h" 67 #include "gtest/gtest-param-test.h" 70 #include "gtest/gtest-test-part.h" 71 #include "gtest/gtest-typed-test.h [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
| gtest.cc | 31 // The Google C++ Testing and Mocking Framework (Google Test) 150 // A test whose test suite name or test name matches this filter is 154 // A test suite whose name matches this filter is considered a death 155 // test suite and will be run before test suites whose name doesn't 159 // A test filter that matches everything. 167 // The environment variable name for the test shard index. 169 // The environment variable name for the total number of test shards 2674 Test* const test = internal::HandleExceptionsInMethodIfSupported( local [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86ISelDAGToDAG.cpp | 869 // into ISD::AND to enable test instruction matching. 1415 // Look for a TESTrr+ANDrr pattern where both operands of the test are 1427 MachineSDNode *Test = CurDAG->getMachineNode(Opc, SDLoc(N), 1431 ReplaceUses(N, Test); 1453 MachineSDNode *Test = CurDAG->getMachineNode(NewOpc, SDLoc(N), 1456 Test, cast<MachineSDNode>(And.getNode())->memoperands()); 1457 ReplaceUses(N, Test); 2292 // Test if the LHS of the sub can be folded. 2300 // Test if the index field is free for use. 2844 /// Test whether the given X86ISD::CMP node has any users that use a fla [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| DAGCombiner.cpp | 105 /// Hidden option to stress test load slicing, i.e., when this option 1033 // reassociating the constants breaks nothing (we test offset2 because 5528 /// For a target with a bit test, this is expected to become test + set and save 5540 // TODO: Should we favor test+set even without the 'not' op? 5567 // Turn this into a bit-test pattern using mask op + setcc: 8989 // TODO - bigendian support once we have test coverage. 9221 /// If a (v)select has a condition value that is a sign-bit test, try to smear 9958 // We can test against either of the addition operands. 14935 // smart enough to convert the result into a TEST/JMP sequence [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| AArch64ISelLowering.cpp | 2480 /// by negating the flags we test for afterwards. i.e. 2483 /// What we can not implement by flipping the flags to test is a negation 6651 SDValue Test = LHS.getOperand(0); 6653 return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, Test, 6667 SDValue Test = LHS.getOperand(0); 6669 return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, Test, 6677 // (a.k.a. TST) and the test in the test bit and branch instruction 6688 // (a.k.a. TST) and the test in the test bit and branch instructio [all...] |