| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| RangeConstraintManager.cpp | 323 const_iterator First = LHS.begin(), Second = RHS.begin(), 326 const auto SwapIterators = [&First, &FirstEnd, &Second, &SecondEnd]() { 327 std::swap(First, Second); 334 while (First != FirstEnd && Second != SecondEnd) { 338 // --------[ Second -----------------> 339 if (Second->From() < First->From()) 347 // ---------------[ Second ]---------> 350 if (Second->From() > First->To()) { 363 // -------[ Second ------------------> 365 // Additionally, it definitely starts with Second->From() [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
| allocator_test.cc | 23 s64 Second;
|
| segmented_array_test.cc | 16 s64 Second; 19 TestData(s64 F, s64 S) : First(F), Second(S) {} 23 *OS << "{ " << D.First << ", " << D.Second << " }"; 49 ASSERT_EQ(data[0].Second, 1); 63 ASSERT_EQ(data[I].Second, I + 1); 73 ASSERT_EQ(data[0].Second, 1); 105 ASSERT_EQ(D0.Second, 1); 119 ASSERT_EQ(D0.Second, 1); 126 ASSERT_EQ(I0->Second, 1); 145 ASSERT_EQ(Back.Second, 1) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| BinaryStreamWriter.cpp | 88 WritableBinaryStreamRef Second = First.drop_front(Off); 91 BinaryStreamWriter W2{Second};
|
| BinaryStreamReader.cpp | 174 BinaryStreamRef Second = First.drop_front(Off); 177 BinaryStreamReader W2{Second};
|
| JSON.cpp | 30 return &I->second; 36 return &I->second; 88 if (R == RHS.end() || L.second != R->second) 292 abbreviate(KV->second, JOS); 333 Recurse(KV->second, Path.drop_back(), Recurse); 335 abbreviate(KV->second, JOS); 637 uint16_t Second; 638 if (!Parse4Hex(Second)) 641 if (LLVM_UNLIKELY(Second < 0xDC00 || Second >= 0xE000)) [all...] |
| /src/sys/arch/ia64/stand/ia64/ski/ |
| time.c | 64 int Second; 120 ETime->Second > 59 ) { 159 UTime += ETime->Second;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCBoolRetToInt.cpp | 84 if (Defs.insert(Op).second) 255 auto *Second = dyn_cast<User>(Pair.second); 256 assert((!First || Second) && "translated from user to non-user!?"); 261 Second->setOperand(i, BoolToIntMap[First->getOperand(i)]);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| PPCallbacks.h | 377 std::unique_ptr<PPCallbacks> First, Second; 382 : First(std::move(_First)), Second(std::move(_Second)) {} 390 Second->FileChanged(Loc, Reason, FileType, PrevFID); 396 Second->FileSkipped(SkippedFile, FilenameTok, FileType); 402 Second->FileNotFound(FileName, RecoveryPath); 414 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, 422 Second->EnteredSubmodule(M, ImportLoc, ForPragma); 428 Second->LeftSubmodule(M, ImportLoc, ForPragma); 434 Second->moduleImport(ImportLoc, Path, Imported); 439 Second->EndOfMainFile() [all...] |
| /src/sbin/efi/ |
| certs.c | 141 uint8_t Second; // 0 - 59 167 et->Second,
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/ |
| Replacement.cpp | 127 this->ReplacementRange = Range(DecomposedLocation.second, Length); 143 End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources, LangOpts); 144 return End.second - Start.second; 347 // overlapping replacements from 'First' and 'Second' in mergeReplacements. 352 // whereas replacements from 'Second' refer to the text after applying 'First'. 355 // text, i.e. transforms elements from 'Second' to take into account what was 362 // * We always merge elements from 'First' into elements from 'Second' and vice 377 // from 'First' into 'Second' or vice versa, the MergedReplacement knows what 415 // Returns 'true' if an element from the second set should be merged next [all...] |
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| efidef.h | 87 UINT8 Second; // 0 - 59
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| StackColoring.cpp | 576 const BlockLifetimeInfo &BlockInfo = BI->second; 684 BetweenStartEnd |= I->second; 817 BlockLifetimeInfo &BlockInfo = BI->second; 827 LocalLiveIn |= I->second.LiveOut; 956 const AllocaInst *To = MFI->getObjectAllocation(SI.second); 987 MachineFrameInfo::SSPLayoutKind ToKind = MFI->getObjectSSPLayout(SI.second); 992 MFI->setObjectSSPLayout(SI.second, FromKind); 1130 MF->getPSVManager().getFixedStack(SlotRemap.find(E.index())->second); 1321 LiveInterval *Second = &*Intervals[SecondSlot]; 1324 assert(!First->empty() && !Second->empty() && "Found an empty range") [all...] |
| /src/sys/external/bsd/acpica/dist/include/ |
| acbuffer.h | 88 UINT8 Second; 180 /* Second 32-bit dword, bits 33:63 */
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| LoopAccessAnalysis.cpp | 156 Value *StrideVal = stripIntegerCast(SI->second); 396 unsigned Pointer = PointerI->second; 463 const auto &First = Check.first->Members, &Second = Check.second->Members; 471 OS.indent(Depth + 2) << "Against group (" << Check.second << "):\n"; 472 for (unsigned K = 0; K < Second.size(); ++K) 473 OS.indent(Depth + 2) << *Pointers[Second[K]].PointerValue << "\n"; 913 // "a[b[i]] +="). Hence, we need the second check for "!IsWrite". 951 DepCands.unionSets(Access, Prev->second); 1215 if (!Res.second) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SILoadStoreOptimizer.cpp | 1954 AM.BaseOffs = P.second - AnchorAddr.Offset; 1957 LLVM_DEBUG(dbgs() << " Promote Offset(" << P.second; 1959 updateBaseAndOffset(*P.first, Base, P.second - AnchorAddr.Offset); 2106 auto Second = Next; 2108 if ((*First).Order > (*Second).Order) 2109 std::swap(First, Second); 2111 CombineInfo &Paired = *Second; 2183 if (I == Second) 2186 MergeList.erase(Second);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/ |
| HexagonAsmParser.cpp | 862 if (!HeadTail.second.empty()) 865 String = HeadTail.second; 930 AsmToken const &Second = Lexer.getTok(); 937 if (String.lower() == "vwhist256" && Second.is(AsmToken::Colon) && 944 assert(Second.is(AsmToken::Colon)); 1005 if (DotSplit.second.empty()) { 1303 const std::string R2 = r + utostr(RegPair.second); 1412 Inst.addOperand(MCOperand::createReg(RegPair.second)); 1422 Inst.addOperand(MCOperand::createReg(RegPair.second)); 1433 Inst.addOperand(MCOperand::createReg(RegPair.second)); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonLoopIdiomRecognition.cpp | 353 Instruction *U = cast<Instruction>(P.second); 357 U->setOperand(i, F->second); 363 Root = R->second; 1188 ValueSeq &Second = IsE ? Early : Late; 1189 Second.insert(Cycle[I]); 1194 Second.insert(V); 1405 return H->second; 1436 Value *W = (F != ShiftMap.end()) ? F->second : nullptr; 1447 // Second, the types of the shifted value and the shift amount
|
| /src/external/bsd/ntp/dist/util/ |
| tg2.c | 19 * a leap second in UTC. Note however, the ultimate accuracy is limited 37 * behavior at the next leap second epoch. The remaining options are 114 * - Corrected WWV(H) signal to leave "tick" sound off of 29th and 59th second of minute. 178 * - Added leap second pending and DST change pending into IEEE 1344. 183 * - Added leap second addition and deletion. 240 #define SECOND (8000) /* one second of 125-us samples */ 308 * Decoder operations at the end of each second are driven by a state 310 * by second number. Each entry in the table contains a case switch 403 * IRIG format frames (1000 Hz, 1 second for 10 frames of data [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| ASTReader.h | 233 std::unique_ptr<ASTReaderListener> Second; 236 /// Takes ownership of \p First and \p Second. 238 std::unique_ptr<ASTReaderListener> Second) 239 : First(std::move(First)), Second(std::move(Second)) {} 242 std::unique_ptr<ASTReaderListener> takeSecond() { return std::move(Second); } 790 /// instantiation where the first value is the ID of the decl and the second 1257 if (I == KeyDecls.end() || I->second.empty()) 1259 return GetExistingDecl(I->second[0]); 1274 for (auto ID : It->second) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| Gnu.cpp | 1828 std::pair<StringRef, StringRef> Second = First.second.split('.'); 1834 if (First.second.empty()) 1836 StringRef MinorStr = Second.first; 1837 if (Second.second.empty()) { 1858 StringRef PatchText = Second.second; 2553 if (!CandidateGCCInstallPaths.insert(std::string(LI->path())).second) 2640 + ActiveVersion.second.str() [all...] |
| /src/sys/external/bsd/acpica/dist/include/platform/ |
| acefiex.h | 104 UINT8 Second; /* 0 - 59 */
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/ |
| gmock-matchers.h | 954 static const char* Desc() { return "a pair where the first < the second"; } 958 static const char* Desc() { return "a pair where the first > the second"; } 962 static const char* Desc() { return "a pair where the first <= the second"; } 966 static const char* Desc() { return "a pair where the first >= the second"; } 2522 auto Second(T& x, Rank1) -> decltype(get<1>(x)) { // NOLINT 2526 auto Second(T& x, Rank0) -> decltype((x.second)) { // NOLINT 2527 return x.second; 2618 *os << ", and has a second field that "; 2626 *os << ", or has a second field that " [all...] |
| /src/external/bsd/ntp/dist/ntpd/ |
| refclock_ripencc.c | 384 unsigned char *Hour, unsigned char *Minute, unsigned char *Second, 957 ** 150ms after the turn of the second, it 958 ** may have the code of the previous second. 991 * assume that the PPS occurs on the second 1473 unsigned hour, minute, second; local 1504 second = (unsigned int) buf[13]; 1513 day, month, year, hour, minute, second, trackstat, utcflags); 1535 * If we hit the leap second, we choose to skip this sample 1539 if (second == 60) 1562 pp-> second = second 1591 unsigned hour, minute, second; local [all...] |
| /src/sys/dev/ic/ |
| aacreg.h | 274 u_int32_t Second:6; /* 0-59 */
|