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

1 2

  /src/external/bsd/tre/dist/lib/
regcomp.c 53 size_t consumed; local
61 consumed = tre_mbrtowc(wcptr, regex, n, &state);
63 switch (consumed)
67 consumed = 1;
81 consumed = n;
84 regex += consumed;
85 n -= consumed;
  /src/lib/libc/stdio/
open_wmemstream.c 130 ssize_t consumed, wlen; local
147 consumed = 0;
152 if (consumed == 0) {
163 consumed += len;
166 consumed += charlen;
174 fprintf(stderr, "WMS: write(%p, %zu) = %zd\n", ms, len, consumed);
176 return (consumed);
  /src/tests/bin/df/
getmntinfo.c 67 const int *consumed, int consumedcnt)
78 used = total * consumed[j] / 100;
110 static const int consumed[] = { 0, 20, 60, 95, 100 }; local
114 consumed, sizeof(consumed) / sizeof(consumed[0]));
143 static const int consumed[] = { 0, 20, 60, 95, 100 }; local
147 consumed, sizeof(consumed) / sizeof(consumed[0]))
    [all...]
  /src/sys/arch/amd64/stand/prekern/
prng.c 208 size_t consumed; local
213 consumed = RNGDATA_SIZE - rng.nused;
214 memcpy(ptr, &rng.data[rng.nused], consumed);
220 memcpy(ptr + consumed, &rng.data[rng.nused],
221 sz - consumed);
223 rng.nused += (sz - consumed);
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h -----------------------------------------------*- C++ -*-===//
9 // A intra-procedural analysis for checking consumed properties. This is based,
39 namespace consumed { namespace in namespace:clang
115 /// Warn about use-while-consumed errors.
126 /// Warn about use-while-consumed errors.
167 /// Get the consumed state of a given variable.
170 /// Get the consumed state of a given temporary value.
191 /// Set the consumed state of a given variable.
194 /// Set the consumed state of a given temporary value.
259 /// Check a function's CFG for consumed violations
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/
test-dnssd.h 54 bool consumed; member in struct:dns_service_event
  /src/external/gpl3/gcc.old/dist/gcc/lto/
lto-object.cc 73 int consumed; local
83 && sscanf (offset_p, "@%li%n", &loffset, &consumed) >= 1
84 && strlen (offset_p) == (unsigned int) consumed)
  /src/external/gpl3/gcc/dist/gcc/lto/
lto-object.cc 73 int consumed; local
83 && sscanf (offset_p, "@%li%n", &loffset, &consumed) >= 1
84 && strlen (offset_p) == (unsigned int) consumed)
  /src/external/gpl3/gcc/dist/libgomp/config/gcn/
libgomp-gcn.h 89 unsigned int consumed; member in struct:output
  /src/usr.bin/nl/
nl.c 279 int consumed; /* intbuffer measurement */ local
333 consumed = snprintf(intbuffer, intbuffersize, format,
336 intbuffer + max(0, consumed - width), sep);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-gw.h 43 bool consumed; member in struct:__anon3710
  /src/external/gpl3/gdb/dist/gdb/
ax-general.c 321 /* Number of stack elements consumed, and number produced. */
322 int consumed, produced;
330 #define DEFOP(NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED, VALUE) \
331 , { # NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED }
489 height -= op->consumed;
320 int consumed, produced; member in struct:aop_map
macroexp.c 531 int consumed = p - src->text + tok->len;
533 src->text += consumed;
534 src->len -= consumed;
541 int consumed;
544 consumed = p - src->text + tok->len;
545 src->text += consumed;
546 src->len -= consumed;
529 int consumed = p - src->text + tok->len; local
539 int consumed; local
  /src/external/gpl3/gdb.old/dist/gdb/
ax-general.c 321 /* Number of stack elements consumed, and number produced. */
322 int consumed, produced;
330 #define DEFOP(NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED, VALUE) \
331 , { # NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED }
489 height -= op->consumed;
320 int consumed, produced; member in struct:aop_map
macroexp.c 531 int consumed = p - src->text + tok->len;
533 src->text += consumed;
534 src->len -= consumed;
541 int consumed;
544 consumed = p - src->text + tok->len;
545 src->text += consumed;
546 src->len -= consumed;
529 int consumed = p - src->text + tok->len; local
539 int consumed; local
  /src/external/mpl/dhcp/dist/common/
ns_name.c 59 * -1 if it fails, or to be consumed octets if it succeeds.
331 * -1 if it fails, or consumed octets if it succeeds.
532 * Number of bytes consumed in `dst' or -1 (with errno set).
726 int consumed = 1; local
737 while ((consumed > 0) && (src < (buf + buflen)))
750 consumed = MRns_name_uncompress(buf, buf + buflen, src,
752 if (consumed < 0) {
756 src += consumed;
  /src/external/bsd/tcpdump/dist/
print-babel.c 202 /* Return number of octets consumed from the input buffer (not the prefix length
211 int consumed = 0; local
237 consumed = pb - omitted;
249 consumed = pb - omitted;
258 consumed = pb - 8;
266 return consumed;
  /src/external/bsd/elftosb/dist/common/
EncoreBootImage.cpp 523 //! \param[out] consumed On exit, this points to the number of cipher blocks that were occupied
534 EncoreBootImage::BootCommand * EncoreBootImage::BootCommand::createFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed)
566 command->initFromData(blocks, count, consumed);
694 //! \param[out] consumed On exit, this points to the number of cipher blocks that were occupied
699 void EncoreBootImage::NopCommand::initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed)
705 *consumed = 1;
740 //! \param[out] consumed On exit, this points to the number of cipher blocks that were occupied
745 void EncoreBootImage::TagCommand::initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed)
757 *consumed = 1;
794 //! \param[out] consumed On exit, this points to the number of cipher blocks that were occupie
1271 unsigned consumed; local
    [all...]
  /src/external/bsd/unbound/dist/daemon/
cachedump.c 761 int consumed = 0; local
779 &security, &an, &ns, &ar, &ede, &consumed) != 8) {
784 if(consumed > 0 && (size_t)consumed < strlen(s))
785 ede_str = s + consumed;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
Consumed.cpp 1 //===- Consumed.cpp -------------------------------------------------------===//
9 // A intra-procedural analysis for checking consumed properties. This is based,
14 #include "clang/Analysis/Analyses/Consumed.h"
56 using namespace consumed;
131 case CallableWhenAttr::Consumed:
204 case ConsumableAttr::Consumed:
217 case ParamTypestateAttr::Consumed:
230 case ReturnTypestateAttr::Consumed:
242 case SetTypestateAttr::Consumed:
250 case consumed::CS_None
286 namespace consumed { namespace in namespace:clang
457 namespace consumed { namespace in namespace:clang
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/gcn/
gcn-run.cc 513 unsigned int consumed; member in struct:kernargs::output
524 We print all entries from "consumed" to the next entry without a "written"
527 if "next_output" wraps (becomes smaller than "consumed"). */
534 unsigned int from = __atomic_load_n (&kernargs->output_data.consumed,
574 __atomic_store_n (&kernargs->output_data.consumed, i+1,
715 kernargs->output_data.consumed = 0;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_tar.c 493 int64_t consumed = __archive_read_consume(a, *unconsumed); local
494 if (consumed != *unconsumed) {
  /src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c 653 size_t consumed; /* SHARED - set0 by mtctx, then modified by worker AND read by mtctx */ member in struct:__anon6319
763 job->consumed = chunkSize * chunkNb;
801 job->consumed = job->src.size; /* when job->consumed == job->src.size , compression job is presumed completed */
870 unsigned long long consumed; member in struct:ZSTDMT_CCtx_s
1019 while (mtctx->jobs[jobID].consumed < mtctx->jobs[jobID].src.size) {
1094 * tells how much data has been consumed (input) and produced (output) for current frame.
1101 fps.ingested = mtctx->consumed + mtctx->inBuff.filled;
1102 fps.consumed = mtctx->consumed;
1551 size_t consumed; local
    [all...]
  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 163 * ip [in/out] - The input pointers, must be updated to reflect what is consumed.
261 * to count how many bits we've consumed.
288 * the next bit to read, and we may have consumed 100%
1245 U32 consumed; local
1246 for (consumed = minBits; consumed < maxTableLog - minBits + 1; consumed++) {
1247 U32* const rankValPtr = wksp->rankVal[consumed];
1250 rankValPtr[w] = rankVal0[w] >> consumed;
  /src/external/gpl3/binutils/dist/gas/config/
tc-sh.c 593 /* Try to parse a reg name. Return the number of chars consumed. */
958 unsigned int consumed;
973 consumed = parse_reg_without_prefix (src, mode, reg);
975 if (consumed == 0)
978 return consumed + prefix;
956 unsigned int consumed; local

Completed in 61 milliseconds

1 2