HomeSort by: relevance | last modified time | path
    Searched defs:produced (Results 1 - 6 of 6) sorted by relevancy

  /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 }
492 height += op->produced;
320 int consumed, produced; member in struct:aop_map
  /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 }
492 height += op->produced;
320 int consumed, produced; member in struct:aop_map
  /src/sys/arch/arm/broadcom/
bcm53xx_eth.c 945 bool produced = false; local
975 produced = true;
977 if (produced) {
1407 * If we've produced enough descriptors without consuming any
1461 printf("%s: mbuf %p: produced a %u byte packet in %u segments "
  /src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c 887 unsigned long long produced; member in struct:ZSTDMT_CCtx_s
1110 * tells how much data has been consumed (input) and produced (output) for current frame.
1119 fps.produced = fps.flushed = mtctx->produced;
1131 size_t const produced = ZSTD_isError(cResult) ? 0 : cResult; local
1133 assert(flushed <= produced);
1136 fps.produced += produced;
1159 size_t const produced = ZSTD_isError(cResult) ? 0 : cResult; local
1161 assert(flushed <= produced);
    [all...]
  /src/external/bsd/zstd/dist/lib/
zstd.h 2237 * based on actual sequences previously produced by the selected parser.
2739 unsigned long long produced; /* nb of compressed bytes generated and buffered */ member in struct:__anon257
2747 * consumed (input actually compressed) and produced (output) for current frame.
2762 * but everything it has produced has also been flushed so far,
2808 * sequence producer which libzstd invokes to process each block. The produced list
3174 ===> In which case, nothing is produced into `dst` !
  /src/external/bsd/zstd/dist/tests/
fuzzer.c 974 size_t i = 0, consumed = 0, produced = 0, prevDCtxSize = 0; local
991 ZSTD_outBuffer out = {(BYTE*)CNBuffer + produced, CNBuffSize - produced, 0};
994 produced += out.pos;
3963 DISPLAY("Error during decompression of frame produced by ZSTD_compressSequencesAndLiterals()\n");
3967 DISPLAY("Error: decompression of frame produced by ZSTD_compressSequencesAndLiterals() has different size\n");
3971 DISPLAY("Error: decompression of frame produced by ZSTD_compressSequencesAndLiterals() produces a different content (of same size)\n");

Completed in 27 milliseconds