Home
last modified time | relevance | path

Searched full:pieces (Results 1 – 25 of 449) sorted by relevance

12345678910>>...18

/freebsd/sys/contrib/dev/iwlwifi/
H A Diwl-drv.c340 * These functions are just to extract uCode section data from the pieces in get_sec()
343 static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces, in get_sec()
347 return &pieces->img[type].sec[sec]; in alloc_sec_data()
350 static void alloc_sec_data(struct iwl_firmware_pieces *pieces, in alloc_sec_data()
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()
375 alloc_sec_data(pieces, type, sec); in set_sec_size() argument
377 pieces->img[type].sec[sec].data = data; in set_sec_size()
380 static void set_sec_size(struct iwl_firmware_pieces *pieces, in set_sec_size()
385 alloc_sec_data(pieces, typ argument
338 get_sec(struct iwl_firmware_pieces * pieces,enum iwl_ucode_type type,int sec) get_sec() argument
345 alloc_sec_data(struct iwl_firmware_pieces * pieces,enum iwl_ucode_type type,int sec) alloc_sec_data() argument
365 set_sec_data(struct iwl_firmware_pieces * pieces,enum iwl_ucode_type type,int sec,const void * data) set_sec_data() argument
392 set_sec_offset(struct iwl_firmware_pieces * pieces,enum iwl_ucode_type type,int sec,u32 offset) set_sec_offset() argument
405 iwl_store_ucode_sec(struct iwl_firmware_pieces * pieces,const void * data,enum iwl_ucode_type type,int size) iwl_store_ucode_sec() argument
510 iwl_parse_v1_v2_firmware(struct iwl_drv * drv,const struct firmware * ucode_raw,struct iwl_firmware_pieces * pieces) iwl_parse_v1_v2_firmware() argument
706 iwl_parse_tlv_firmware(struct iwl_drv * drv,const struct firmware * ucode_raw,struct iwl_firmware_pieces * pieces,struct iwl_ucode_capabilities * capa,bool * usniffer_images) iwl_parse_tlv_firmware() argument
1370 iwl_alloc_ucode(struct iwl_drv * drv,struct iwl_firmware_pieces * pieces,enum iwl_ucode_type type) iwl_alloc_ucode() argument
1390 validate_sec_sizes(struct iwl_drv * drv,struct iwl_firmware_pieces * pieces,const struct iwl_cfg * cfg) validate_sec_sizes() argument
1499 struct iwl_firmware_pieces *pieces; iwl_req_fw_callback() local
[all...]
/freebsd/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp30 /// references the whole string into two rope pieces that reference each half.
49 /// which results in two rope pieces, which is just like an insert) or it can
136 /// NumPieces - This holds the number of rope pieces currently active in the
137 /// Pieces array.
140 /// Pieces - This tracks the file chunks currently in this leaf.
141 RopePiece Pieces[2*WidthFactor]; member in __anon358058e30111::RopePieceBTreeLeaf
159 /// clear - Remove all rope pieces from this leaf.
162 Pieces[--NumPieces] = RopePiece(); in clear()
170 return Pieces[i]; in getPiece()
247 while (Offset >= PieceOffs+Pieces[i].size()) { in split()
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp113 // .eh_frame tend to contain a lot of section pieces that are contiguous
114 // both in input file and output file. Such pieces are squashed before
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()
132 // Gather section pieces. in printEhFrame()
139 // Print out section pieces. in printEhFrame()
141 for (EhSectionPiece &p : pieces) { in printEhFrame()
H A DInputSection.h332 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()
/freebsd/share/doc/smm/02.config/
H A D2.t34 pieces of information:
94 pieces of code in the kernel. For example, Ernie's Varian driver used
144 sequence requires certain pieces of information such as register
172 Other than the mandatory pieces of information described above, it
182 will automatically include the necessary pieces of the system.
/freebsd/usr.bin/split/
H A Dsplit.133 .Nd split a file into pieces
97 kilobyte pieces.
104 megabyte pieces.
111 gigabyte pieces.
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp113 /// Map from each node to the diagnostic pieces visitors emit for them.
193 "Failed to find the context associated with these pieces!"); in getLocationContextFor()
229 /// The diagnostic pieces visitors emitted, which is expected to be collected
246 /// This function is responsible for generating diagnostic pieces that are
383 /// can lead to redundant diagnostic pieces at the same point in a path.
410 // Check to see if we should keep one of the two pieces. If we in removeRedundantMsgs()
431 /// Recursively scan through a path and prune out calls and macros pieces
435 PathPieces &pieces, in removeUnneededCalls() argument
439 const unsigned N = pieces.size(); in removeUnneededCalls()
444 auto piece = std::move(pieces.front()); in removeUnneededCalls()
[all …]
/freebsd/share/doc/papers/kernmalloc/
H A Dkernmalloc.t118 Often the allocations are for small pieces of memory that are only
320 pieces from that arena which it then populates with physical memory.
362 fast for small pieces of memory.
401 pieces of memory in multiples of pages.
427 where it is coalesced with adjacent free pieces.
433 a new page is allocated and divided into pieces of the needed size.
434 This strategy speeds future allocations as several pieces of memory
441 the allocator must keep track of the sizes of the pieces it has handed out.
584 When all the pieces of a page became free,
587 Although there is no guarantee that all the pieces of a page would ever
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp145 std::pair<StringRef, StringRef> Pieces = FormatString.split("$"); in formatErrorString() local
146 OS << Pieces.first.str(); in formatErrorString()
147 if (Pieces.second.empty()) break; in formatErrorString()
149 const char Next = Pieces.second.front(); in formatErrorString()
150 FormatString = Pieces.second.drop_front(); in formatErrorString()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp496 MultiPiece(std::vector<Piece *> Pieces) in MultiPiece()
497 : Piece(MultiPieceClass), Pieces(std::move(Pieces)) {} in MultiPiece()
499 std::vector<Piece *> Pieces; member
579 /// Diagnostic text, parsed into pieces.
806 std::vector<std::pair<Piece *, ModifierMappingsType>> &Pieces) const { in gatherNodes()
810 return gatherNodes(Builder.getSubstitution(Sub), NewMappings, Pieces); in gatherNodes()
813 for (Piece *Node : MD->Pieces) in gatherNodes()
814 gatherNodes(Node, CurrentMappings, Pieces); in gatherNodes()
817 Pieces.push_back(std::make_pair(OrigP, CurrentMappings)); in gatherNodes()
821 if (P->Pieces.empty()) { in VisitMulti()
[all …]
/freebsd/contrib/ntp/sntp/scripts/
H A Dcvo.sh105 *) echo "gronk - config.guess returned $# pieces, not 3 pieces!"
122 *) echo "gronk - <$CVO_OS> expanded to $#, not 2 pieces!"
/freebsd/secure/lib/libcrypto/man/man3/
H A DERR_put_error.3242 \fIOther pieces of software\fR
243 .IX Subsection "Other pieces of software"
245 Other pieces of software that may want to use OpenSSL's error reporting
257 other pieces of software, i.e. they may use \fB\s-1ERR_LIB_SYS\s0\fR to report system
/freebsd/sys/contrib/openzfs/contrib/debian/
H A Dopenzfs-zfs-dkms.templates34 pieces of code exclusively available under one license with pieces of code
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp600 /// it into pieces. If the asm string is erroneous, emit errors and return
602 unsigned GCCAsmStmt::AnalyzeAsmString(SmallVectorImpl<AsmStringPiece>&Pieces, in AnalyzeAsmString() argument
623 Pieces.push_back(AsmStringPiece(Result)); in AnalyzeAsmString()
640 Pieces.push_back(AsmStringPiece(CurStringPiece)); in AnalyzeAsmString()
686 // add it to the Pieces list. in AnalyzeAsmString()
688 Pieces.push_back(AsmStringPiece(CurStringPiece)); in AnalyzeAsmString()
737 Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc); in AnalyzeAsmString()
773 Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc); in AnalyzeAsmString()
786 // Analyze the asm string to decompose it into its pieces. We know that Sema in generateAsmString()
788 SmallVector<GCCAsmStmt::AsmStringPiece, 4> Pieces; in generateAsmString() local
[all …]
/freebsd/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros64 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/crypto/openssl/doc/man3/
H A DERR_put_error.pod107 =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
/freebsd/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros139 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/contrib/tcsh/
H A Dtcsh.man2html43 $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/contrib/llvm-project/lld/MachO/
H A DInputSection.h216 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 DInputSection.cpp297 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()
/freebsd/usr.sbin/cron/doc/
H A DINSTALL59 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.
/freebsd/usr.sbin/ckdist/
H A Dckdist.c273 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/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileColonLine.cpp94 // legit pieces; our original division was right. Reassign the file in SetValueFromString()
104 // There were three pieces, and we've got the line number. So now in SetValueFromString()
/freebsd/tools/tools/vhba/
H A DREADME4 of two pieces.
/freebsd/tools/tools/ath/athani/
H A Dmain.c119 * Whilst we're doing the ath_diag pieces, we have to set this in ani_write_state()
151 * Whilst we're doing the ath_diag pieces, we have to set this in ani_read_state()

12345678910>>...18