/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | TextDiagnostics.cpp | 100 for (const auto &Piece : PD->path) { in FlushDiagnosticsImpl() local 101 if (!isa<PathDiagnosticNotePiece>(Piece.get())) in FlushDiagnosticsImpl() 104 reportPiece(NoteID, Piece->getLocation().asLocation(), in FlushDiagnosticsImpl() 105 Piece->getString(), Piece->getRanges(), in FlushDiagnosticsImpl() 106 Piece->getFixits()); in FlushDiagnosticsImpl() 114 for (const auto &Piece : FlatPath) { in FlushDiagnosticsImpl() local 115 if (isa<PathDiagnosticNotePiece>(Piece.get())) in FlushDiagnosticsImpl() 118 reportPiece(NoteID, Piece->getLocation().asLocation(), in FlushDiagnosticsImpl() 119 Piece->getString(), Piece->getRanges(), in FlushDiagnosticsImpl() 120 Piece->getFixits()); in FlushDiagnosticsImpl()
|
H A D | SarifDiagnostics.cpp | 92 calculateImportance(const PathDiagnosticPiece &Piece) { in calculateImportance() argument 93 switch (Piece.getKind()) { in calculateImportance() 101 return Piece.getTagStr() == "ConditionBRVisitor" in calculateImportance() 133 for (const auto &Piece : Pieces) { in createThreadFlows() local 135 Piece->getLocation().asRange(), Piece->getLocation().getManager(), LO); in createThreadFlows() 137 .setImportance(calculateImportance(*Piece)) in createThreadFlows() 139 .setMessage(Piece->getString()); in createThreadFlows()
|
H A D | BugReporter.cpp | 393 auto piece = std::move(path.front()); in removeRedundantMsgs() local 396 switch (piece->getKind()) { in removeRedundantMsgs() 398 removeRedundantMsgs(cast<PathDiagnosticCallPiece>(*piece).path); in removeRedundantMsgs() 401 removeRedundantMsgs(cast<PathDiagnosticMacroPiece>(*piece).subPieces); in removeRedundantMsgs() 409 auto *event = cast<PathDiagnosticEventPiece>(piece.get()); in removeRedundantMsgs() 411 // come up with a preference, record which piece to keep, and consume in removeRedundantMsgs() 412 // another piece from the path. in removeRedundantMsgs() 415 piece = std::move(pieceToKeep == event ? piece : path.front()); in removeRedundantMsgs() 427 path.push_back(std::move(piece)); in removeRedundantMsgs() 442 // Remove the front piece from the path. If it is still something we in removeUnneededCalls() [all …]
|
H A D | HTMLDiagnostics.cpp | 600 for (const auto &Piece : path) { in FinalizeHTML() local 601 if (const auto *P = dyn_cast<PathDiagnosticNotePiece>(Piece.get())) { in FinalizeHTML() 745 const PathDiagnosticPopUpPiece &Piece, in HandlePopUpPieceEndTag() argument 752 SourceRange Range(Piece.getLocation().asRange()); in HandlePopUpPieceEndTag() 763 Out << "</div></td><td>" << Piece.getString() << "</td></tr>"; in HandlePopUpPieceEndTag() 800 // Stores the count of the regular piece indices. in RewriteFile() 807 const auto &Piece = *I.get(); in RewriteFile() local 809 if (isa<PathDiagnosticPopUpPiece>(Piece)) { in RewriteFile() 811 } else if (isa<PathDiagnosticNotePiece>(Piece)) { in RewriteFile() 814 // as a separate pass through the piece list. in RewriteFile() [all …]
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ClangDiagnosticsEmitter.cpp | 480 struct Piece { struct 482 Piece(PieceKind Kind) : ClassKind(Kind) {} in Piece() argument 483 Piece(Piece const &O) = delete; 484 Piece &operator=(Piece const &) = delete; 485 virtual ~Piece() {} in ~Piece() argument 488 static bool classof(const Piece *) { return true; } in classof() argument 494 struct MultiPiece : Piece { 495 MultiPiece() : Piece(MultiPieceClass) {} in MultiPiece() 496 MultiPiece(std::vector<Piece *> Pieces) in MultiPiece() 497 : Piece(MultiPieceClass), Pieces(std::move(Pieces)) {} in MultiPiece() [all …]
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 20-test_pkeyutl.t | 34 "Sign a piece of data using SM2"); 41 "Verify an SM2 signature against a piece of data"); 46 "Encrypt a piece of data using SM2"); 53 "Decrypt a piece of data using SM2"); 65 "Sign a piece of data using Ed25519"); 70 "Verify an Ed25519 signature against a piece of data"); 77 "Sign a piece of data using Ed448"); 82 "Verify an Ed448 signature against a piece of data");
|
/freebsd/contrib/llvm-project/clang/lib/Rewrite/ |
H A D | RewriteRope.cpp | 48 /// new RopePieces (e.g. when the middle of some other rope piece is deleted, 107 /// If there is no space in this subtree for the extra piece, the extra tree 115 /// If there is no space in this subtree for the extra piece, the extra tree 169 assert(i < getNumPieces() && "Invalid piece ID"); in getPiece() 207 /// If there is no space in this subtree for the extra piece, the extra tree 215 /// If there is no space in this subtree for the extra piece, the extra tree 234 /// If there is no space in this subtree for the extra piece, the extra tree 244 // Find the piece that this offset lands in. in split() 257 // Otherwise, we need to split piece 'i' at Offset-PieceOffs. Convert Offset in split() 258 // to being Piece relative. in split() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
H A D | BitstreamReader.h | 232 uint32_t Piece = MaybeRead.get(); in ReadVBR() 238 if ((Piece & Mask) == 0) in ReadVBR() 239 return Piece; in ReadVBR() 244 Result |= (Piece & (Mask - 1)) << NextBit; in ReadVBR() 246 if ((Piece & Mask) == 0) in ReadVBR() 257 Piece = MaybeRead.get(); in ReadVBR() 267 uint32_t Piece = MaybeRead.get(); in ReadVBR64() 272 if ((Piece & Mask) == 0) in ReadVBR64() 273 return uint64_t(Piece); in ReadVBR64() 278 Result |= uint64_t(Piece in ReadVBR64() 233 uint32_t Piece = MaybeRead.get(); ReadVBR() local 268 uint32_t Piece = MaybeRead.get(); ReadVBR64() local [all...] |
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValueFileColonLine.cpp | 69 // two colons. First pick off the last colon separated piece. in SetValueFromString() 82 // Now see if there's another colon and if so pull out the middle piece: in SetValueFromString() 83 // Then check whether the middle piece is an integer. If it is, then it in SetValueFromString() 93 // The middle piece was empty or not an integer, so there were only two in SetValueFromString()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | aria | 29 # piece length; the length of the piece like: 400h 100000h 30 >(6.L+10) ubelong x \b, piece length 0x%x
|
/freebsd/tools/tools/vhba/ |
H A D | README | 6 The first piece is a simple SIM driver for FreeBSD. It provides 10 The second piece(s) are underlying implementations which make various
|
/freebsd/share/doc/papers/kernmalloc/ |
H A D | kernmalloc.t | 181 of the piece of memory being freed. 280 A piece of memory is then removed from the list corresponding 421 Thus a request for a five kilobyte piece of memory will use exactly 424 When a large piece of memory is freed, 447 instead of storing the size of each piece of memory with the piece itself, 450 the size of a piece of memory that is being freed, 453 Eliminating the cost of the overhead per piece improved utilization 565 a quarter megabyte piece of memory once,
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
H A D | DWARFEmitterImpl.h |
|
/freebsd/tests/sys/fs/tarfs/ |
H A D | mktar.c | 110 char *piece, *target; in mklonglinktarget() local 112 if (asprintf(&piece, "%1$s/../%1$s/../%1$s/../%1$s/../", dirname) < 0) in mklonglinktarget() 114 if (asprintf(&target, "%1$s%1$s%1$s%1$s%1$s%1$s%1$s%1$s%2$s", piece, filename) < 0) in mklonglinktarget() 116 free(piece); in mklonglinktarget()
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | replay.c | 295 const krb5_data *piece, in krb5_get_server_rcache() argument 301 char *tmp = malloc(4 * piece->length + 1); in krb5_get_server_rcache() 309 strvisx(tmp, piece->data, piece->length, VIS_WHITE | VIS_OCTAL); in krb5_get_server_rcache()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | PathDiagnostic.cpp | 78 for (auto &Piece : *this) { in flattenTo() 79 switch (Piece->getKind()) { in flattenTo() 81 auto &Call = cast<PathDiagnosticCallPiece>(*Piece); in flattenTo() 90 auto &Macro = cast<PathDiagnosticMacroPiece>(*Piece); in flattenTo() 94 Current.push_back(Piece); in flattenTo() 97 // FIXME: This probably shouldn't mutate the original path piece. in flattenTo() 106 Current.push_back(Piece); in flattenTo() 167 const PathDiagnosticPiece *piece = I.get(); in HandlePathDiagnostic() local 168 FullSourceLoc L = piece->getLocation().asLocation().getExpansionLoc(); in HandlePathDiagnostic() 178 ArrayRef<SourceRange> Ranges = piece->getRanges(); in HandlePathDiagnostic() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
H A D | BugReporterVisitors.h | 62 /// Return a diagnostic piece which should be associated with the 82 /// Provide custom definition for the final diagnostic piece on the 83 /// path - the piece, which is displayed before the path is expanded. 93 /// Generates the default final diagnostic piece. 521 static bool isPieceMessageGeneric(const PathDiagnosticPiece *Piece); 686 /// \return Diagnostics piece for the unmodified state in the current 696 /// \return Diagnostics piece for the unmodified state in the current 706 /// \return Diagnostics piece for the unmodified state in the current
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
H A D | DWARFStreamer.h |
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/ |
H A D | DWARFStreamer.h | 227 /// Emit piece of .debug_ranges for \p LinkedRanges. 232 /// Emit piece of .debug_rnglists for \p LinkedRanges. 238 /// Emit piece of .debug_loc for \p LinkedRanges. 244 /// Emit piece of .debug_loclists for \p LinkedRanges.
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | DWARFExpression.cpp | 308 case DW_OP_piece: // 0x93 1 ULEB128 size of piece addressed in GetOpcodeDataSize() 741 // handling of DW_OP_(bit_)piece out of this function. in UpdateValueTypeFromLocationDescription() 852 /// Insertion point for evaluating multi-piece expression. in Evaluate() 1810 // ULEB128: byte size of the piece in Evaluate() 1811 // DESCRIPTION: The operand describes the size in bytes of the piece of in Evaluate() 1813 // of the stack. If the piece is located in a register, but does not occupy in Evaluate() 1814 // the entire register, the placement of the piece within that register is in Evaluate() 1823 // Reset for the next piece. in Evaluate() 1834 // In a multi-piece expression, this means that the current piece is in Evaluate() 1846 // Extract the current piece into "curr_piece" in Evaluate() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmtAsm.cpp | 118 const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p]; in isOperandMentioned() local 119 if (!Piece.isOperand()) in isOperandMentioned() 124 if (Piece.getOperandNo() == OpNo) in isOperandMentioned() 514 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i]; in ActOnGCCAsmStmt() local 515 if (!Piece.isOperand()) continue; in ActOnGCCAsmStmt() 518 unsigned ConstraintIdx = Piece.getOperandNo(); in ActOnGCCAsmStmt() 547 Literal->getString(), Piece.getModifier(), Size, in ActOnGCCAsmStmt() 553 auto B = targetDiag(Piece.getRange().getBegin(), in ActOnGCCAsmStmt() 556 SuggestedModifier = "%" + SuggestedModifier + Piece.getString(); in ActOnGCCAsmStmt() 557 B << FixItHint::CreateReplacement(Piece.getRange(), SuggestedModifier); in ActOnGCCAsmStmt()
|
/freebsd/contrib/lutok/examples/ |
H A D | interpreter.cpp | 49 // This utility function allows us to feed a given piece of Lua code to in run_statement() 50 // the interpreter and process it. The piece of code can include in run_statement()
|
/freebsd/share/doc/papers/malloc/ |
H A D | implementation.ms | 27 Another part of the code may call brk(2) to get a piece of the cake. 29 being one consecutive piece of memory, and therefore we need a way to 145 The page directory is actually kept in a mmap(2)'ed piece of
|
/freebsd/sys/riscv/include/ |
H A D | bus_dma.h | 37 * Allocate a piece of memory that can be efficiently mapped into 52 * Free a piece of memory and it's allociated dmamap, that was allocated
|
/freebsd/contrib/atf/doc/ |
H A D | atf-test-case.4 | 34 is a piece of code that stress-tests a specific feature of the software. 45 is, basically, a declarative piece of code that defines several 61 routine is a piece of code always executed after the body, regardless of
|