HomeSort by: relevance | last modified time | path
    Searched defs:piece (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/lgpl3/gmp/dist/printf/
printffuns.c 59 int i, piece, ret; local
65 piece = MIN (i, sizeof (buf));
66 ret = fwrite (buf, 1, piece, fp);
69 ASSERT (ret == piece);
  /src/lib/libc/hash/md2/
md2.c 143 unsigned int idx, piece; local
148 for (idx = 0; idx < inputLen; idx += piece) {
149 piece = 32 - context->i;
150 if ((inputLen - idx) < piece)
151 piece = inputLen - idx;
152 memcpy(&context->X[context->i], &input[idx], (size_t)piece);
153 if ((context->i += piece) == 32)
  /src/lib/libc/gen/
sysctlgetmibinfo.c 417 const char *piece, *dot; local
483 piece = gname;
484 while (piece != NULL && *piece != '\0') {
488 dot = strchr(piece, sep[0]);
490 l = strlcpy(token, piece, sizeof(token));
492 COPY_OUT_DATA(piece, cname, csz, namelenp, nl);
497 else if (dot - piece > (intptr_t)(sizeof(token) - 1)) {
503 strncpy(token, piece, (size_t)(dot - piece));
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
RewriteRope.h 130 llvm::StringRef piece() const { function in class:clang::RopePieceBTreeIterator
  /src/external/gpl2/gmake/dist/
vmsify.c 909 static char piece[512]; local
915 p = piece;
989 return piece;
  /src/external/gpl3/gdb.old/dist/gdb/
type-stack.h 52 enum type_pieces piece; member in union:type_stack_elt
86 elt.piece = tp;
125 return elt.piece;
tracepoint.c 2808 /* Encode a piece of a tracepoint's source-level definition in a form
2811 return an offset to the next piece to encode. FIXME */
3400 char piece; local
3411 piece = *p++;
3416 if (piece == 'T')
3462 else if (piece == 'A')
3467 else if (piece == 'S')
3472 else if (piece == 'Z')
3496 else if (piece == 'V')
3506 warning (_("Unrecognized tracepoint piece '%c', ignoring"), piece)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
type-stack.h 52 enum type_pieces piece; member in union:type_stack_elt
86 elt.piece = tp;
125 return elt.piece;
tracepoint.c 2808 /* Encode a piece of a tracepoint's source-level definition in a form
2811 return an offset to the next piece to encode. FIXME */
3400 char piece; local
3411 piece = *p++;
3416 if (piece == 'T')
3462 else if (piece == 'A')
3467 else if (piece == 'S')
3472 else if (piece == 'Z')
3496 else if (piece == 'V')
3506 warning (_("Unrecognized tracepoint piece '%c', ignoring"), piece)
    [all...]
  /src/sys/fs/udf/
udf_readwrite.c 278 * For reading, the size of allocated piece is returned in multiple of sector
293 int piece; local
316 piece = MIN(MAXPHYS/sector_size, sectors);
317 DPRINTF(READ, ("read in %d + %d\n", (uint32_t) rblkno, piece));
320 nestiobuf_setup(buf, nestbuf, buf_offset, piece * sector_size);
334 lblkno += piece;
335 rblkno += piece;
336 buf_offset += piece * sector_size;
337 sectors -= piece;
361 /* read initial piece */
435 int piece; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
PathDiagnostic.cpp 84 for (auto &Piece : *this) {
85 switch (Piece->getKind()) {
87 auto &Call = cast<PathDiagnosticCallPiece>(*Piece);
96 auto &Macro = cast<PathDiagnosticMacroPiece>(*Piece);
100 Current.push_back(Piece);
103 // FIXME: This probably shouldn't mutate the original path piece.
112 Current.push_back(Piece);
170 const PathDiagnosticPiece *piece = I.get(); local
171 FullSourceLoc L = piece->getLocation().asLocation().getExpansionLoc();
181 ArrayRef<SourceRange> Ranges = piece->getRanges()
1067 const PathDiagnosticPiece *piece = I.get(); local
    [all...]
  /src/external/gpl3/gcc.old/dist/lto-plugin/
lto-plugin.c 593 const unsigned piece = 32; local
594 char *buf, *s = xmalloc (piece);
599 if (!fgets (buf, piece, f))
607 s = xrealloc (s, len + piece);
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
expr.c 129 for (dwarf_expr_piece &piece : c->pieces)
130 if (piece.location == DWARF_VALUE_STACK)
131 piece.v.value->incref ();
141 function is true if any piece is optimized out. When
190 /* Advance to the first non-skipped piece. */
369 /* Use zeroes if piece reaches beyond stack value. */
373 /* Piece is anchored at least significant bit end. */
515 dwarf_expr_piece *piece = NULL; local
551 piece = p;
555 gdb_assert (piece != NULL && c->per_cu != nullptr)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
expr.c 129 for (dwarf_expr_piece &piece : c->pieces)
130 if (piece.location == DWARF_VALUE_STACK)
131 piece.v.value->incref ();
141 function is true if any piece is optimized out. When
190 /* Advance to the first non-skipped piece. */
222 /* If the piece is located in a register, but does not
223 occupy the entire register, the placement of the piece
388 /* Use zeroes if piece reaches beyond stack value. */
392 /* Piece is anchored at least significant bit end. */
534 dwarf_expr_piece *piece = NULL local
    [all...]
  /src/usr.bin/make/
dir.c 772 const char *prefix, *middle, *piece, *middle_end, *suffix; local
791 piece = middle;
792 while (piece < middle_end + 1) {
793 const char *piece_end = separator_comma(piece);
794 size_t piece_len = (size_t)(piece_end - piece);
796 char *file = concat3(prefix, prefix_len, piece, piece_len,
807 piece = piece_end + 1;
1396 /* XXX: Is every piece of memory freed as it should? */
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 430 /// \return Diagnostics piece for region not modified in the current function,
2269 auto piece = VisitNodeImpl(N, BRC, BR); local
2270 if (piece) {
2271 piece->setTag(getTag());
2272 if (auto *ev = dyn_cast<PathDiagnosticEventPiece>(piece.get()))
2275 return piece;
2793 const PathDiagnosticPiece *Piece) {
2794 return Piece->getString() == GenericTrueMessage ||
2795 Piece->getString() == GenericFalseMessage;
3037 auto Piece = std::make_shared<PathDiagnosticEventPiece>(Loc, *Msg)
    [all...]
BugReporter.cpp 380 auto piece = std::move(path.front()); local
383 switch (piece->getKind()) {
385 removeRedundantMsgs(cast<PathDiagnosticCallPiece>(*piece).path);
388 removeRedundantMsgs(cast<PathDiagnosticMacroPiece>(*piece).subPieces);
396 auto *event = cast<PathDiagnosticEventPiece>(piece.get());
398 // come up with a preference, record which piece to keep, and consume
399 // another piece from the path.
402 piece = std::move(pieceToKeep == event ? piece : path.front());
414 path.push_back(std::move(piece));
431 auto piece = std::move(pieces.front()); local
2660 const auto &piece = *I; local
3055 auto piece = std::make_unique<PathDiagnosticEventPiece>( local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
lto-wrapper.cc 1753 const unsigned piece = 32; local
1754 char *buf, *filename = XNEWVEC (char, piece);
1759 if (!fgets (buf, piece, f))
1764 filename = XRESIZEVEC (char, filename, len + piece);
1946 const unsigned piece = 32; local
1948 char *buf, *input_name = (char *)xmalloc (piece);
1961 if (!fgets (buf, piece, stream))
1966 input_name = (char *)xrealloc (input_name, len + piece);
combine.cc 3134 rtx. If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
5696 /* Simplify X, a piece of RTL. We just operate on the expression at the
7679 If INNER is not a MEM, get a piece consisting of just the field
14283 piece of everything register in the expression is used by
14882 parts of the object. If we find a piece of the object
14912 rtx piece = regno_reg_rtx[i];
14915 if (! dead_or_set_p (place, piece)
14916 && ! reg_bitfield_target_p (piece,
14919 rtx new_note = alloc_reg_note (REG_DEAD, piece,
14937 if (dead_or_set_p (tem_insn, piece)
14863 rtx piece = regno_reg_rtx[i]; local
    [all...]
  /src/external/gpl3/gcc/dist/lto-plugin/
lto-plugin.c 636 const unsigned piece = 32; local
637 char *buf, *s = xmalloc (piece);
642 if (!fgets (buf, piece, f))
650 s = xrealloc (s, len + piece);
  /src/external/gpl3/gcc.old/dist/gcc/
lto-wrapper.cc 1724 const unsigned piece = 32; local
1725 char *buf, *filename = XNEWVEC (char, piece);
1730 if (!fgets (buf, piece, f))
1735 filename = XRESIZEVEC (char, filename, len + piece);
1920 const unsigned piece = 32; local
1922 char *buf, *input_name = (char *)xmalloc (piece);
1935 if (!fgets (buf, piece, stream))
1940 input_name = (char *)xrealloc (input_name, len + piece);
combine.cc 3131 rtx. If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
5655 /* Simplify X, a piece of RTL. We just operate on the expression at the
7636 If INNER is not a MEM, get a piece consisting of just the field
14124 piece of everything register in the expression is used by
14721 parts of the object. If we find a piece of the object
14751 rtx piece = regno_reg_rtx[i];
14754 if (! dead_or_set_p (place, piece)
14755 && ! reg_bitfield_target_p (piece,
14758 rtx new_note = alloc_reg_note (REG_DEAD, piece,
14776 if (dead_or_set_p (tem_insn, piece)
14702 rtx piece = regno_reg_rtx[i]; local
    [all...]
  /src/sbin/fsck_udf/
main.c 536 udf_quick_check_fids_piece(uint8_t *piece, uint32_t piece_len,
547 fid = (struct fileid_desc *) (piece + offset);
581 udf_fids_fixup(uint8_t *piece, uint32_t piece_len,
592 fid = (struct fileid_desc *) (piece + offset);
707 /* check all current overlaps with the piece we have here */
716 /* piece before overlap? */
719 /* piece after overlap? */
758 uint8_t *bpos, *piece; local
824 piece = calloc(1, piece_alloc_len);
825 if (piece == NULL
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64.cc 231 /* Describes one piece of a PST. Each piece is one of:
239 struct piece struct in class:__anon15282::pure_scalable_type_info
243 /* The number of vector and predicate registers that the piece
251 /* If this piece is formed from multiple homogeneous built-in types,
255 /* The offset in bytes of the piece from the start of the type. */
261 auto_vec<piece, MAX_PIECES> pieces;
274 void add_piece (const piece &);
2945 /* Return the location of a piece that is known to be passed or returned
2950 pure_scalable_type_info::piece::get_rtx (unsigned int first_zr
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64.cc 266 /* Describes one piece of a PST. Each piece is one of:
274 struct piece struct in class:__anon12664::pure_scalable_type_info
278 /* The number of vector and predicate registers that the piece
286 /* If this piece is formed from multiple homogeneous built-in types,
290 /* The offset in bytes of the piece from the start of the type. */
296 auto_vec<piece, MAX_PIECES> pieces;
309 void add_piece (const piece &);
938 /* Return the location of a piece that is known to be passed or returned
943 pure_scalable_type_info::piece::get_rtx (unsigned int first_zr
    [all...]

Completed in 191 milliseconds

1 2