/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/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
|
H A D | der | 6 # Certificate information piece
|
/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/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/StaticAnalyzer/Core/ |
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() 415 piece = std::move(pieceToKeep == event ? piece : path.front()); in removeRedundantMsgs() 427 path.push_back(std::move(piece)); in removeRedundantMsgs() 444 auto piece = std::move(pieces.front()); in removeUnneededCalls() local 447 switch (piece->getKind()) { in removeUnneededCalls() 449 auto &call = cast<PathDiagnosticCallPiece>(*piece); in removeUnneededCalls() [all …]
|
H A D | BugReporterVisitors.cpp | 2772 auto piece = VisitNodeImpl(N, BRC, BR); in VisitNode() local 2773 if (piece) { in VisitNode() 2774 piece->setTag(getTag()); in VisitNode() 2775 if (auto *ev = dyn_cast<PathDiagnosticEventPiece>(piece.get())) in VisitNode() 2778 return piece; in VisitNode()
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | MapFile.cpp | 95 for (const auto &[i, piece] : llvm::enumerate(isec->pieces)) { in gatherMapInfo() 96 if (piece.live) in gatherMapInfo() 97 liveCStrings.push_back({isec->parent->addr + piece.outSecOff, in gatherMapInfo()
|
H A D | InputSection.cpp | 327 const StringPiece &piece = getStringPiece(off); in getOffset() local 328 uint64_t addend = off - piece.inSecOff; in getOffset() 329 return piece.outSecOff + addend; in getOffset()
|
H A D | SyntheticSections.cpp | 1655 for (const auto &[i, piece] : llvm::enumerate(isec->pieces)) { in writeTo() 1656 if (!piece.live) in writeTo() 1659 memcpy(buf + piece.outSecOff, string.data(), string.size()); in writeTo() 1667 for (const auto &[i, piece] : llvm::enumerate(isec->pieces)) { in finalizeContents() 1668 if (!piece.live) in finalizeContents() 1673 << llvm::countr_zero(isec->align | piece.inSecOff); in finalizeContents() 1675 piece.outSecOff = offset; in finalizeContents() 1725 for (const auto &[i, piece] : llvm::enumerate(isec->pieces)) { in finalizeContents() 1726 if (!piece.live) in finalizeContents() 1730 uint8_t trailingZeros = llvm::countr_zero(isec->align | piece.inSecOff); in finalizeContents() [all …]
|
/freebsd/contrib/bmake/ |
H A D | dir.c | 772 const char *prefix, *middle, *piece, *middle_end, *suffix; in DirExpandCurly() local 791 piece = middle; in DirExpandCurly() 792 while (piece < middle_end + 1) { in DirExpandCurly() 793 const char *piece_end = separator_comma(piece); in DirExpandCurly() 794 size_t piece_len = (size_t)(piece_end - piece); in DirExpandCurly() 796 char *file = concat3(prefix, prefix_len, piece, piece_len, in DirExpandCurly() 807 piece = piece_end + 1; in DirExpandCurly()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | PathDiagnostic.cpp | 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() 192 if (const auto *call = dyn_cast<PathDiagnosticCallPiece>(piece)) in HandlePathDiagnostic() 194 else if (const auto *macro = dyn_cast<PathDiagnosticMacroPiece>(piece)) in HandlePathDiagnostic() 1069 const PathDiagnosticPiece *piece = I.get(); in compute_path_size() local 1070 if (const auto *cp = dyn_cast<PathDiagnosticCallPiece>(piece)) in compute_path_size()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/firmware/ |
H A D | linaro,optee-tz.txt | 3 OP-TEE is a piece of software using hardware features to provide a Trusted
|
/freebsd/contrib/llvm-project/clang/lib/APINotes/ |
H A D | APINotesFormat.h | 359 for (auto piece : Selector.Identifiers) 360 hash = hash_combine(hash, static_cast<unsigned>(piece));
|
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Core/ |
H A D | RewriteRope.h | 130 llvm::StringRef piece() const { in piece() function
|
/freebsd/tools/diag/prtblknos/ |
H A D | README | 32 The physical block numbers (blkno above) describe the smallest piece
|
/freebsd/sys/contrib/device-tree/Bindings/arm/msm/ |
H A D | qcom,saw2.txt | 5 power-controller that transitions a piece of hardware (like a processor or
|
/freebsd/share/examples/libusb20/ |
H A D | README | 35 copy&pasting (even a larger) piece of an example into your own work, I
|
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/ |
H A D | README | 5 filling in templates generally. A `template' is a piece of text that
|
/freebsd/contrib/googletest/docs/reference/ |
H A D | assertions.md | 299 The following assertions verify that a piece of code throws, or does not throw, 302 Note that the piece of code under test can be a compound statement, for example: 524 The following assertions verify that a piece of code causes the process to 551 Note that the piece of code under test can be a compound statement, for example:
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_PKEY_meth_new.pod | 297 piece of data using a private key. They are called by L<EVP_PKEY_sign_init(3)> 338 The encrypt_init() and encrypt() methods are used to encrypt a piece of data. 345 The decrypt_init() and decrypt() methods are used to decrypt a piece of data.
|
/freebsd/contrib/tcsh/ |
H A D | tcsh.man2html | 634 local(@pieces, $piece); 638 $piece = 0; 644 && substr($pieces[$piece + 1], 0, 1) ne '(') { 650 $piece++;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | SymbolFileNativePDB.cpp | 272 std::string piece; in GetNestedTagDefinition() local 274 piece = "4"; in GetNestedTagDefinition() 275 piece += Record.Name; in GetNestedTagDefinition() 276 piece.push_back('@'); in GetNestedTagDefinition() 277 qname.insert(4, std::move(piece)); in GetNestedTagDefinition()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | InputSection.cpp | 1434 const SectionPiece &piece = getSectionPiece(offset); in getParentOffset() local 1435 return piece.outputOff + (offset - piece.inputOff); in getParentOffset()
|
/freebsd/contrib/libxo/doc/ |
H A D | formatting.rst | 142 browser with minimal effort. Each piece of output data is rendered
|