/freebsd/sys/contrib/dev/iwlwifi/ |
H A D | iwl-drv.c | 343 static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces, in get_sec() argument 347 return &pieces->img[type].sec[sec]; in get_sec() 350 static void alloc_sec_data(struct iwl_firmware_pieces *pieces, in alloc_sec_data() argument 354 struct fw_img_parsing *img = &pieces->img[type]; in alloc_sec_data() 370 static void set_sec_data(struct iwl_firmware_pieces *pieces, in set_sec_data() argument 375 alloc_sec_data(pieces, type, sec); in set_sec_data() 377 pieces->img[type].sec[sec].data = data; in set_sec_data() 380 static void set_sec_size(struct iwl_firmware_pieces *pieces, in set_sec_size() argument 385 alloc_sec_data(pieces, type, sec); in set_sec_size() 387 pieces->img[type].sec[sec].size = size; in set_sec_size() [all …]
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | MapFile.cpp | 117 std::vector<EhSectionPiece> pieces; in printEhFrame() local 121 if (!pieces.empty()) { in printEhFrame() 122 EhSectionPiece &last = pieces.back(); in printEhFrame() 129 pieces.push_back(p); in printEhFrame() 141 for (EhSectionPiece &p : pieces) { in printEhFrame()
|
H A D | InputSection.h | 332 SmallVector<SectionPiece, 0> pieces; variable 338 size_t begin = pieces[i].inputOff; in getData() 340 (pieces.size() - 1 == i) ? content().size() : pieces[i + 1].inputOff; in getData() 341 return {toStringRef(content().slice(begin, end - begin)), pieces[i].hash}; in getData()
|
H A D | InputSection.cpp | 1373 pieces.emplace_back(p - s.begin(), xxh3_64bits(StringRef(p, size)), live); in splitStrings() 1379 pieces.emplace_back(p - s.begin(), xxh3_64bits(StringRef(p, size)), live); in splitStrings() 1393 pieces.resize_for_overwrite(size / entSize); in splitNonStrings() 1395 pieces[j] = {i, (uint32_t)xxh3_64bits(data.slice(i, entSize)), live}; in splitNonStrings() 1417 assert(pieces.empty()); in splitIntoPieces() 1429 pieces, [=](SectionPiece p) { return p.inputOff <= offset; })[-1]; in getSectionPiece() local
|
H A D | SyntheticSections.cpp | 3872 for (size_t i = 0, e = sec->pieces.size(); i != e; ++i) in finalizeContents() 3873 if (sec->pieces[i].live) in finalizeContents() 3883 for (size_t i = 0, e = sec->pieces.size(); i != e; ++i) in finalizeContents() 3884 if (sec->pieces[i].live) in finalizeContents() 3885 sec->pieces[i].outputOff = builder.getOffset(sec->getData(i)); in finalizeContents() 3914 for (size_t i = 0, e = sec->pieces.size(); i != e; ++i) { in finalizeContents() 3915 if (!sec->pieces[i].live) in finalizeContents() 3917 size_t shardId = getShardId(sec->pieces[i].hash); in finalizeContents() 3919 sec->pieces[i].outputOff = shards[shardId].add(sec->getData(i)); in finalizeContents() 3938 for (size_t i = 0, e = sec->pieces.size(); i != e; ++i) in finalizeContents() [all …]
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | InputSection.h | 216 size_t begin = pieces[i].inSecOff; in getStringRef() 220 ((pieces.size() - 1 == i) ? data.size() : pieces[i + 1].inSecOff) - 1; in getStringRef() 233 return {getStringRef(i), pieces[i].hash}; in getCachedHashStringRef() 241 std::vector<StringPiece> pieces; variable
|
H A D | InputSection.cpp | 297 pieces.emplace_back(off, hash); in splitIntoPieces() 309 partition_point(pieces, [=](StringPiece p) { return p.inSecOff <= off; }); in getStringPiece() 322 partition_point(pieces, [=](StringPiece p) { return p.inSecOff <= off; }); in getStringPieceIndex() 323 return std::distance(pieces.begin(), it) - 1; in getStringPieceIndex()
|
H A D | MapFile.cpp | 95 for (const auto &[i, piece] : llvm::enumerate(isec->pieces)) { in gatherMapInfo()
|
/freebsd/lib/libc/softfloat/bits32/ |
H A D | softfloat-macros | 64 than 64, the result will be 0. The result is broken into two 32-bit pieces 100 nonzero. The result is broken into two 32-bit pieces which are stored at 140 at most 64 nonzero bits; these are broken into two 32-bit pieces which are 212 pieces which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'. 231 32-bit pieces which are stored at the locations pointed to by `z0Ptr', 267 any carry out is lost. The result is broken into two 32-bit pieces which 288 32-bit pieces which are stored at the locations pointed to by `z0Ptr', 327 32-bit pieces which are stored at the locations pointed to by `z0Ptr' and 346 into three 32-bit pieces which are stored at the locations pointed to by 383 into two 32-bit pieces which are stored at the locations pointed to by [all …]
|
/freebsd/lib/libc/softfloat/bits64/ |
H A D | softfloat-macros | 139 than 128, the result will be 0. The result is broken into two 64-bit pieces 175 nonzero. The result is broken into two 64-bit pieces which are stored at 215 at most 128 nonzero bits; these are broken into two 64-bit pieces which are 287 pieces which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'. 306 64-bit pieces which are stored at the locations pointed to by `z0Ptr', 342 any carry out is lost. The result is broken into two 64-bit pieces which 363 64-bit pieces which are stored at the locations pointed to by `z0Ptr', 402 64-bit pieces which are stored at the locations pointed to by `z0Ptr' and 421 result is broken into three 64-bit pieces which are stored at the locations 458 into two 64-bit pieces which are stored at the locations pointed to by [all …]
|
/freebsd/usr.sbin/ckdist/ |
H A D | ckdist.c | 273 int rval, error, c, pieces, cnt, fd; in chkinf() local 282 if ((c = sscanf(buf, "Pieces = %d%c", &pieces, &ch)) != 2 || in chkinf() 283 ch != '\n' || pieces < 1) in chkinf()
|
/freebsd/sys/contrib/openzfs/contrib/debian/ |
H A D | openzfs-zfs-dkms.templates | 34 pieces of code exclusively available under one license with pieces of code
|
/freebsd/contrib/tcsh/ |
H A D | tcsh.man2html | 43 $dir = 'tcsh'; # Directory in which to put the pieces * 121 $dir .= ".$html"; # Directory in which to put the pieces 634 local(@pieces, $piece); 636 @pieces = split(/(\\f[BI][^\\]*\\fR)/, $line); 639 foreach (@pieces) { 644 && substr($pieces[$piece + 1], 0, 1) ne '(') { 652 $line = join('', @pieces); 661 local($i, $j, @begin, @end, $part, @pieces, $bold, $italic); 693 @pieces = split(/(\\f[BIR])/m, $part); 695 foreach $j (@pieces) {
|
/freebsd/tools/tools/vhba/ |
H A D | README | 4 of two pieces.
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | ERR_put_error.pod | 107 =head3 Other pieces of software 109 Other pieces of software that may want to use OpenSSL's error reporting 129 other pieces of software, i.e. they may use B<ERR_LIB_SYS> to report system
|
H A D | UI_new.pod | 113 UI_free() removes a UI from memory, along with all other pieces of memory 152 a prompt from two pieces of information: a phrase description I<phrase_desc>
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 435 PathPieces &pieces, in removeUnneededCalls() argument 439 const unsigned N = pieces.size(); in removeUnneededCalls() 444 auto piece = std::move(pieces.front()); in removeUnneededCalls() 445 pieces.pop_front(); in removeUnneededCalls() 480 pieces.push_back(std::move(piece)); in removeUnneededCalls() 1434 static void addContextEdges(PathPieces &pieces, const LocationContext *LC) { in addContextEdges() argument 1436 PathPieces::iterator Prev = pieces.end(); in addContextEdges() 1437 for (PathPieces::iterator I = pieces.begin(), E = Prev; I != E; in addContextEdges() 1500 I = pieces.insert(I, std::move(P)); in addContextEdges() 1515 static void simplifySimpleBranches(PathPieces &pieces) { in simplifySimpleBranches() argument [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | DWARFExpression.cpp | 854 Value pieces; // Used for DW_OP_piece in Evaluate() local 1843 pieces.AppendDataToHostBuffer(curr_piece); in Evaluate() 1918 if (pieces.AppendDataToHostBuffer(curr_piece) == 0) { in Evaluate() 1924 if (pieces.GetBuffer().GetByteSize() != op_piece_offset) { in Evaluate() 1928 op_piece_offset, pieces.GetBuffer().GetByteSize()); in Evaluate() 1931 if (pieces.AppendDataToHostBuffer(curr_piece) == 0) in Evaluate() 2266 if (pieces.GetBuffer().GetByteSize()) in Evaluate() 2267 return pieces; in Evaluate()
|
/freebsd/crypto/openssh/contrib/aix/ |
H A D | README | 44 you get to keep both pieces.
|
/freebsd/usr.sbin/cron/doc/ |
H A D | INSTALL | 59 Edit your /usr/lib/crontab file into little pieces -- see the CONVERSION file 62 Use the `crontab' command to install all the little pieces you just created.
|
H A D | CONVERSION | 4 Edit your current crontab (/usr/lib/crontab) into little pieces, with each
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | P9InstrResources.td | 786 // Requires Load and ALU pieces totaling 6 cycles. The Load and ALU 795 // Requires Load and ALU pieces totaling 6 cycles. The Load and ALU 814 // Requires consecutive Load and ALU pieces totaling 6 cycles. The Load and ALU 826 // Requires consecutive Load and ALU pieces totaling 6 cycles. The Load and ALU 836 // Requires consecutive Load and ALU pieces totaling 7 cycles. The Load and ALU 846 // Requires consecutive Load (4 cycles) and ALU (3 cycles) pieces totaling 7 859 // Requires consecutive Load and ALU pieces totaling 8 cycles. The Load and ALU 1239 // Instruction cracked into three pieces. One Load and two ALU operations.
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | qcom,spmi-pmic.txt | 6 register space up into logical pieces, and set of fixed register
|
/freebsd/crypto/heimdal/appl/telnet/ |
H A D | telnet.state | 2 Three pieces of state need to be kept for each side of each option.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUGenRegisterBankInfo.def | 306 /// Split any 64-bit value into 2 32-bit pieces. Unlike
|