Home
last modified time | relevance | path

Searched refs:First (Results 1 – 25 of 660) sorted by relevance

12345678910>>...27

/freebsd-src/contrib/llvm-project/clang/lib/Lex/
H A DDependencyDirectivesScanner.cpp87 /// Lexes next token and advances \p First and the \p Lexer.
89 lexToken(const char *&First, const char *const End);
92 lexIncludeFilename(const char *&First, const char *const End);
94 void skipLine(const char *&First, const char *const End);
95 void skipDirective(StringRef Name, const char *&First, const char *const End);
104 /// In any case (whatever the token kind) \p First and the \p Lexer will
107 tryLexIdentifierOrSkipLine(const char *&First, const char *const End);
110 [[nodiscard]] StringRef lexIdentifier(const char *&First,
116 /// In any case (whatever the token kind) \p First and the \p Lexer will
119 const char *&First,
204 skipOverSpaces(const char * & First,const char * const End) skipOverSpaces() argument
209 isRawStringLiteral(const char * First,const char * Current) isRawStringLiteral() argument
234 skipRawString(const char * & First,const char * const End) skipRawString() argument
277 isEOL(const char * First,const char * const End) isEOL() argument
286 skipString(const char * & First,const char * const End) skipString() argument
316 skipNewline(const char * & First,const char * End) skipNewline() argument
326 wasLineContinuation(const char * First,unsigned EOLLen) wasLineContinuation() argument
330 skipToNewlineRaw(const char * & First,const char * const End) skipToNewlineRaw() argument
353 skipLineComment(const char * & First,const char * const End) skipLineComment() argument
359 skipBlockComment(const char * & First,const char * const End) skipBlockComment() argument
396 skipLine(const char * & First,const char * const End) skipLine() argument
451 skipDirective(StringRef Name,const char * & First,const char * const End) skipDirective() argument
463 skipWhitespace(const char * & First,const char * const End) skipWhitespace() argument
495 lexModuleDirectiveBody(DirectiveKind Kind,const char * & First,const char * const End) lexModuleDirectiveBody() argument
518 lexToken(const char * & First,const char * const End) lexToken() argument
532 lexIncludeFilename(const char * & First,const char * const End) lexIncludeFilename() argument
544 lexPPDirectiveBody(const char * & First,const char * const End) lexPPDirectiveBody() argument
578 tryLexIdentifierOrSkipLine(const char * & First,const char * const End) tryLexIdentifierOrSkipLine() argument
589 lexIdentifier(const char * & First,const char * const End) lexIdentifier() argument
595 isNextIdentifierOrSkipLine(StringRef Id,const char * & First,const char * const End) isNextIdentifierOrSkipLine() argument
606 isNextTokenOrSkipLine(tok::TokenKind K,const char * & First,const char * const End) isNextTokenOrSkipLine() argument
616 tryLexStringLiteralOrSkipLine(const char * & First,const char * const End) tryLexStringLiteralOrSkipLine() argument
628 lexAt(const char * & First,const char * const End) lexAt() argument
641 lexModule(const char * & First,const char * const End) lexModule() argument
685 lex_Pragma(const char * & First,const char * const End) lex_Pragma() argument
720 lexPragma(const char * & First,const char * const End) lexPragma() argument
770 lexEndif(const char * & First,const char * const End) lexEndif() argument
790 lexDefault(DirectiveKind Kind,const char * & First,const char * const End) lexDefault() argument
797 isStartOfRelevantLine(char First) isStartOfRelevantLine() argument
810 lexPPLine(const char * & First,const char * const End) lexPPLine() argument
914 skipUTF8ByteOrderMark(const char * & First,const char * const End) skipUTF8ByteOrderMark() argument
920 scanImpl(const char * First,const char * const End) scanImpl() argument
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlist.h38 T *front() { return First; } in front()
39 const T *front() const { return First; } in front()
44 First = Last = nullptr; in clear()
51 Iterator begin() { return Iterator(First); } in begin()
54 ConstIterator begin() const { return ConstIterator(First); } in begin()
61 T *First = nullptr; member
67 CHECK_EQ(First, nullptr); in checkConsistency()
71 for (T *I = First;; I = I->Next) { in checkConsistency()
82 using IntrusiveList<T>::First;
90 First = X; in push_back()
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp24 const FormatToken *Next = Line.First->getNextNonComment(); in startsExternCBlock()
101 if (Line.First->is(tok::comment) && IndentForLevel[Line.Level] != -1) in adjustToUnmodifiedLine()
103 unsigned LevelIndent = Line.First->OriginalColumn; in adjustToUnmodifiedLine()
141 if (IsAccessModifier(*Line.First)) { in getIndentOffset()
195 return AnnotatedLines[StartLineIndex]->First->getNamespaceToken(); in getMatchingNamespaceToken()
199 const FormatToken *NamespaceToken = Line->First->getNamespaceToken(); in getNamespaceTokenText()
230 if (Next[i + 1]->First->NewlinesBefore > 0) in getNextMergedLine()
256 if (NextLine.Type == LT_Invalid || NextLine.First->MustBreakBefore) in tryFitMultipleLinesInOne()
259 (!NextLine.InPPDirective || NextLine.First->HasUnescapedNewline)) { in tryFitMultipleLinesInOne()
275 TheLine->First in tryFitMultipleLinesInOne()
569 const FormatToken *First = TheLine->First; tryFitMultipleLinesInOne() local
[all...]
H A DDefinitionBlockSeparator.cpp52 for (const FormatToken *CurrentToken = Line->First; CurrentToken; in separateBlocks()
97 IsAccessSpecifierToken(Lines[OpeningLineIndex - 1]->First))) { in separateBlocks()
108 return Line->First->is(tok::hash) && Line->First->Next && in separateBlocks()
109 Line->First->Next->isOneOf(tok::pp_if, tok::pp_ifdef, tok::pp_else, in separateBlocks()
122 for (const FormatToken *CurrentToken = CurrentLine->First; CurrentToken; in separateBlocks()
133 Lines[I + 1]->First->is(tok::l_brace); in separateBlocks()
146 if (const auto *Tok = OperateLine->First; in separateBlocks()
152 if (OperateLine->First->is(tok::identifier) && in separateBlocks()
153 OperateLine->First == OperateLine->Last && in separateBlocks()
163 NextLine->First->NewlinesBefore == 1 && in separateBlocks()
[all …]
H A DAffectedRangeManager.cpp30 assert(Line->First); in computeAffectedLines()
31 Line->LeadingEmptyLinesAffected = affectsLeadingEmptyLines(*Line->First); in computeAffectedLines()
38 while (PPEnd != E && !(*PPEnd)->First->HasUnescapedNewline) { in computeAffectedLines()
43 if (affectsTokenRange(*Line->First, *Last, in computeAffectedLines()
72 bool AffectedRangeManager::affectsTokenRange(const FormatToken &First, in affectsTokenRange() argument
75 SourceLocation Start = First.WhitespaceRange.getBegin(); in affectsTokenRange()
77 Start = Start.getLocWithOffset(First.LastNewlineOffset); in affectsTokenRange()
119 assert(Line->First); in nonPPLineAffected()
120 for (FormatToken *Tok = Line->First; Tok; Tok = Tok->Next) { in nonPPLineAffected()
135 Line->First->NewlinesBefore == 0; in nonPPLineAffected()
[all …]
H A DTokenAnnotator.h50 : First(Line.Tokens.front().Tok), Type(LT_Other), Level(Line.Level), in AnnotatedLine()
67 First->Previous = nullptr; in AnnotatedLine()
68 FormatToken *Current = First; in AnnotatedLine()
105 FormatToken *Current = First; in ~AnnotatedLine()
114 return First && First->is(tok::comment) && !First->getNextNonComment(); in isComment()
120 return First && First->startsSequence(Tokens...); in startsWith()
156 assert(First); in getFirstNonComment()
164 FormatToken *First; global() variable
[all...]
H A DQualifierAlignmentFixer.cpp71 const FormatToken *First) { in removeToken() argument
72 auto Range = CharSourceRange::getCharRange(First->getStartOfNonWhitespace(), in removeToken()
73 First->Tok.getEndLoc()); in removeToken()
79 const FormatToken *First, in insertQualifierAfter() argument
81 auto Range = CharSourceRange::getCharRange(First->Tok.getLocation(), in insertQualifierAfter()
82 First->Tok.getEndLoc()); in insertQualifierAfter()
85 NewText += First->TokenText; in insertQualifierAfter()
92 const FormatToken *First, in insertQualifierBefore() argument
94 auto Range = CharSourceRange::getCharRange(First->getStartOfNonWhitespace(), in insertQualifierBefore()
95 First in insertQualifierBefore()
116 rotateTokens(const SourceManager & SourceMgr,tooling::Replacements & Fixes,const FormatToken * First,const FormatToken * Last,bool Left) rotateTokens() argument
555 FormatToken *First = Line->First; fixQualifierAlignment() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist_base.h41 static void removeRangeImpl(node_base_type &First, node_base_type &Last) { in removeRangeImpl() argument
42 node_base_type *Prev = First.getPrev(); in removeRangeImpl()
48 First.setPrev(nullptr); in removeRangeImpl()
52 static void transferBeforeImpl(node_base_type &Next, node_base_type &First, in transferBeforeImpl() argument
54 if (&Next == &Last || &First == &Last) in transferBeforeImpl()
58 assert(&Next != &First && in transferBeforeImpl()
65 First.getPrev()->setNext(&Last); in transferBeforeImpl()
66 Last.setPrev(First.getPrev()); in transferBeforeImpl()
68 // Splice [First, Final] into its new list/position. in transferBeforeImpl()
71 First in transferBeforeImpl()
81 removeRange(T & First,T & Last) removeRange() argument
85 transferBefore(T & Next,T & First,T & Last) transferBefore() argument
[all...]
H A Dsimple_ilist.h172 void insert(iterator I, Iterator First, Iterator Last) { in insert() argument
173 for (; First != Last; ++First) in insert()
174 insert(I, *First); in insert()
211 iterator erase(iterator First, iterator Last) { in erase() argument
212 list_base_type::removeRange(*First.getNodePtr(), *Last.getNodePtr()); in erase()
227 iterator eraseAndDispose(iterator First, iterator Last, Disposer dispose) { in eraseAndDispose() argument
228 while (First != Last) in eraseAndDispose()
229 First = eraseAndDispose(First, dispose); in eraseAndDispose()
254 void splice(iterator I, simple_ilist &, iterator First, iterator Last) { in splice() argument
255 list_base_type::transferBefore(*I.getNodePtr(), *First.getNodePtr(), in splice()
H A DPointerUnion.h126 using First = TypeAtIndex<0, PTs...>;
168 First const *getAddrOfPtr1() const {
174 First *getAddrOfPtr1() {
175 assert(isa<First>(*this) && "Val is not the first pointer");
177 PointerLikeTypeTraits<First>::getAsVoidPointer(cast<First>(*this)) ==
180 return const_cast<First *>(
181 reinterpret_cast<const First *>(this->Val.getAddrOfPointer()));
/freebsd-src/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h471 std::unique_ptr<PPCallbacks> First, Second;
476 : First(std::move(_First)), Second(std::move(_Second)) {} in InclusionDirective()
483 First->FileChanged(Loc, Reason, FileType, PrevFID); in InclusionDirective()
490 First->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in EnteredSubmodule()
496 First->FileSkipped(SkippedFile, FilenameTok, FileType); in LeftSubmodule()
501 bool Skip = First->FileNotFound(FileName); in moduleImport()
511 First->EmbedDirective(HashLoc, FileName, IsAngled, File, Params); in Ident()
516 bool Skip = First->FileNotFound(FileName); in PragmaDirective()
530 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
540 First in PragmaDebug()
435 std::unique_ptr<PPCallbacks> First, Second; global() variable
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp24 unsigned First, unsigned Last) { in getJumpTableRange() argument
25 assert(Last >= First); in getJumpTableRange()
26 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange()
38 unsigned First, unsigned Last) { in getJumpTableNumCases() argument
39 assert(Last >= First); in getJumpTableNumCases()
40 assert(TotalCases[Last] >= TotalCases[First]); in getJumpTableNumCases()
42 TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]); in getJumpTableNumCases()
174 for (unsigned First = 0, Last; First < in findJumpTables()
173 for (unsigned First = 0, Last; First < N; First = Last + 1) { findJumpTables() local
192 buildJumpTable(const CaseClusterVector & Clusters,unsigned First,unsigned Last,const SwitchInst * SI,const std::optional<SDLoc> & SL,MachineBasicBlock * DefaultMBB,CaseCluster & JTCluster) buildJumpTable() argument
348 for (unsigned First = 0, Last; First < N; First = Last + 1) { findBitTestClusters() local
367 buildBitTests(CaseClusterVector & Clusters,unsigned First,unsigned Last,const SwitchInst * SI,CaseCluster & BTCluster) buildBitTests() argument
499 caseClusterRank(const CaseCluster & CC,CaseClusterIt First,CaseClusterIt Last) caseClusterRank() argument
[all...]
H A DInterferenceCache.cpp160 BI->First = BI->Last = SlotIndex(); in update()
170 if (!BI->First.isValid() || StartI < BI->First) in update()
171 BI->First = StartI; in update()
183 if (!BI->First.isValid() || StartI < BI->First) in update()
184 BI->First = StartI; in update()
190 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update()
195 BI->First in update()
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRulesInternal.h29 void ignoreError(Expected<FirstT> &First, Expected<RestT> &... Rest) { in ignoreError() argument
30 if (!First) in ignoreError()
31 llvm::consumeError(First.takeError()); in ignoreError()
38 llvm::Error findError(Expected<FirstT> &First, Expected<RestT> &... Rest) { in findError() argument
39 if (!First) { in findError()
41 return First.takeError(); in findError()
72 const FirstT &First, const RestT &... Rest) { in visitRefactoringOptionsImpl() argument
82 (OptionGatherer{Visitor})(First); in visitRefactoringOptionsImpl()
96 template <typename Base, typename First, typename... Rest>
97 struct HasBaseOf : std::conditional_t<HasBaseOf<Base, First>::value ||
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h43 T *First = nullptr;
48 bool isInline() const { return First == Inline; }
51 First = Inline; in clearInline()
62 std::copy(First, Last, Tmp); in reserve()
63 First = Tmp; in reserve()
65 First = static_cast<T *>(std::realloc(First, NewCap * sizeof(T))); in reserve()
66 if (First == nullptr) in reserve()
69 Last = First + S; in reserve()
70 Cap = First in reserve()
44 T *First = nullptr; global() variable
2263 const Node *First; global() variable
2609 const char *First; global() member
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp750 BasicBlock::iterator First, in flushTerminatorDbgValues()
771 assert(First == Last); in flushTerminatorDbgValues()
773 bool ReadFromHead = First.getHeadBit(); in flushTerminatorDbgValues()
790 // There are instructions in this block; if the First iterator was in spliceDebugInfoEmptyBlock()
793 if (Src->empty() || First != Src->begin() || !ReadFromHead) in spliceDebugInfoEmptyBlock()
797 if (!First->hasDbgRecords()) in spliceDebugInfoEmptyBlock()
800 createMarker(Dest)->absorbDebugValues(*First->DebugMarker, InsertAtHead); in spliceDebugInfoEmptyBlock()
806 BasicBlock::iterator First, in spliceDebugInfoEmptyBlock()
819 First Last in spliceDebugInfoEmptyBlock()
830 front of the First instructio in spliceDebugInfoEmptyBlock()
779 spliceDebugInfoEmptyBlock(BasicBlock::iterator Dest,BasicBlock * Src,BasicBlock::iterator First,BasicBlock::iterator Last) spliceDebugInfoEmptyBlock() argument
838 spliceDebugInfo(BasicBlock::iterator Dest,BasicBlock * Src,BasicBlock::iterator First,BasicBlock::iterator Last) spliceDebugInfo() argument
921 spliceDebugInfoImpl(BasicBlock::iterator Dest,BasicBlock * Src,BasicBlock::iterator First,BasicBlock::iterator Last) spliceDebugInfoImpl() argument
1052 splice(iterator Dest,BasicBlock * Src,iterator First,iterator Last) splice() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMemAluCombiner.cpp334 MbbIterator First = MemInstr; in findClosestSuitableAluInstr() local
337 while (First != Last) { in findClosestSuitableAluInstr()
338 Decrement ? --First : ++First; in findClosestSuitableAluInstr()
340 if (First == Last) in findClosestSuitableAluInstr()
344 if (First->isDebugInstr()) in findClosestSuitableAluInstr()
347 if (isSuitableAluInstr(IsSpls, First, *Base, *Offset)) { in findClosestSuitableAluInstr()
348 return First; in findClosestSuitableAluInstr()
352 if (First != Last) { in findClosestSuitableAluInstr()
353 if (InstrUsesReg(First, Base)) in findClosestSuitableAluInstr()
355 if (Offset->isReg() && InstrUsesReg(First, Offset)) in findClosestSuitableAluInstr()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DHashBuilder.h328 HashBuilder &addRange(ForwardIteratorT First, ForwardIteratorT Last) { in addRange() argument
329 add(std::distance(First, Last)); in addRange()
330 return addRangeElements(First, Last); in addRange()
338 HashBuilder &addRangeElements(ForwardIteratorT First, ForwardIteratorT Last) { in addRangeElements() argument
340 First, Last, in addRangeElements()
366 HashBuilder &addRangeElementsImpl(ForwardIteratorT First, in addRangeElementsImpl() argument
369 for (auto It = First; It != Last; ++It) in addRangeElementsImpl()
378 addRangeElementsImpl(T *First, T *Last, std::forward_iterator_tag) { in addRangeElementsImpl() argument
379 this->update(ArrayRef(reinterpret_cast<const uint8_t *>(First), in addRangeElementsImpl()
380 (Last - First) * sizeof(T))); in addRangeElementsImpl()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMWinCOFFStreamer.cpp95 void emitARMWinCFISaveFRegs(unsigned First, unsigned Last) override;
182 void ARMTargetWinCOFFStreamer::emitARMWinCFISaveFRegs(unsigned First, in emitARMWinCFISaveSP()
184 assert(First <= Last); in emitARMWinCFISaveFRegs() argument
185 assert(First >= 16 || Last < 16); in emitARMWinCFISaveFRegs()
186 assert(First <= 31 && Last <= 31); in emitARMWinCFISaveFRegs()
187 if (First == 8) in emitARMWinCFISaveFRegs()
189 else if (First <= 15) in emitARMWinCFISaveFRegs()
190 emitARMWinUnwindCode(Win64EH::UOP_SaveFRegD0D15, First, Last); in emitARMWinCFISaveFRegs()
192 emitARMWinUnwindCode(Win64EH::UOP_SaveFRegD16D31, First, Last); in emitARMWinCFISaveFRegs()
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamWriter.cpp86 WritableBinaryStreamRef First = Stream.drop_front(Offset); in split() local
88 WritableBinaryStreamRef Second = First.drop_front(Off); in split()
89 First = First.keep_front(Off); in split()
90 BinaryStreamWriter W1{First}; in split()
/freebsd-src/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp1141 bool First) {
1153 << (int)First << SubstDiag->SubstitutedEntity in diagnoseUnsatisfiedConstraintExpr()
1158 << (int)First << SubstDiag->SubstitutedEntity; in DiagnoseUnsatisfiedConstraint()
1164 << (int)First << Req->getExpr(); in DiagnoseUnsatisfiedConstraint()
1172 << (int)First << SubstDiag->SubstitutedEntity in DiagnoseUnsatisfiedConstraint()
1177 << (int)First << SubstDiag->SubstitutedEntity; in DiagnoseUnsatisfiedConstraint()
1189 << (int)First << S.Context.getReferenceQualifiedType(e) in getNormalizedAssociatedConstraints()
1194 << (int)First << ConstraintExpr; in getNormalizedAssociatedConstraints()
1206 bool First) { in substituteParameterMappings()
1217 diag::note_type_requirement_substitution_error) << (int)First in substituteParameterMappings()
932 diagnoseUnsatisfiedRequirement(Sema & S,concepts::ExprRequirement * Req,bool First) diagnoseUnsatisfiedRequirement() argument
997 diagnoseUnsatisfiedRequirement(Sema & S,concepts::TypeRequirement * Req,bool First) diagnoseUnsatisfiedRequirement() argument
1027 diagnoseUnsatisfiedRequirement(Sema & S,concepts::NestedRequirement * Req,bool First) diagnoseUnsatisfiedRequirement() argument
1042 diagnoseWellFormedUnsatisfiedConstraintExpr(Sema & S,Expr * SubstExpr,bool First) diagnoseWellFormedUnsatisfiedConstraintExpr() argument
1146 diagnoseUnsatisfiedConstraintExpr(Sema & S,const Expr * E,const llvm::PointerUnion<Expr *,SubstitutionDiagnostic * > & Record,bool First=true) diagnoseUnsatisfiedConstraintExpr() argument
1159 DiagnoseUnsatisfiedConstraint(const ConstraintSatisfaction & Satisfaction,bool First) DiagnoseUnsatisfiedConstraint() argument
1170 DiagnoseUnsatisfiedConstraint(const ASTConstraintSatisfaction & Satisfaction,bool First) DiagnoseUnsatisfiedConstraint() argument
[all...]
/freebsd-src/tools/tools/locale/patch/
H A Dpatch-UnicodeData.txt6 3400;<CJK Ideograph Extension A, First>;Lo;0;L;;;;;N;;;;;
15 4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
24 20000;<CJK Ideograph Extension B, First>;Lo;0;L;;;;;N;;;;;
27 2A700;<CJK Ideograph Extension C, First>;Lo;0;L;;;;;N;;;;;
29 2B740;<CJK Ideograph Extension D, First>;Lo;0;L;;;;;N;;;;;
/freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp263 int calcInstrDist(const MachineInstr &First, const MachineInstr &Last);
283 bool isReplaceable(const MachineInstr &First, const MachineInstr &Last,
318 int X86OptimizeLEAPass::calcInstrDist(const MachineInstr &First, in calcInstrDist() argument
322 assert(Last.getParent() == First.getParent() && in calcInstrDist()
324 assert(InstrPos.contains(&First) && InstrPos.contains(&Last) && in calcInstrDist()
327 return InstrPos[&Last] - InstrPos[&First]; in calcInstrDist()
422 bool X86OptimizeLEAPass::isReplaceable(const MachineInstr &First, in isReplaceable() argument
425 assert(isLEA(First) && isLEA(Last) && in isReplaceable()
432 if (MRI->getRegClass(First.getOperand(0).getReg()) != in isReplaceable()
437 AddrDispShift = getAddrDispShift(Last, 1, First, 1); in isReplaceable()
[all …]
/freebsd-src/sys/contrib/dev/acpica/compiler/
H A Daslbtypes.c433 BOOLEAN First = TRUE; in AnFormatBtype() local
447 if (!First) in AnFormatBtype()
452 First = FALSE; in AnFormatBtype()
460 if (!First) in AnFormatBtype()
465 First = FALSE; in AnFormatBtype()
472 if (!First) in AnFormatBtype()
/freebsd-src/lib/msun/
H A DSymbol.map184 /* First added in 8.0-CURRENT */
220 /* First added in 9.0-CURRENT */
230 /* First added in 10.0-CURRENT */
282 /* First added in 11.0-CURRENT */
287 /* First added in 12.0-CURRENT */
306 /* First added in 14.0-CURRENT */

12345678910>>...27