HomeSort by: relevance | last modified time | path
    Searched refs:bufSize (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
dcn10_hw_sequencer_debug.h 42 unsigned int bufSize,
amdgpu_dcn10_hw_sequencer_debug.c 53 unsigned int __printflike(3,4) snprintf_count(char *pBuf, unsigned int bufSize, const char *fmt, ...)
61 ret_vsnprintf = vsnprintf(pBuf, bufSize, fmt, args);
66 if (ret_vsnprintf < bufSize)
69 chars_printed = bufSize - 1;
76 static unsigned int dcn10_get_hubbub_state(struct dc *dc, char *pBuf, unsigned int bufSize)
83 unsigned int remaining_buffer = bufSize;
111 return bufSize - remaining_buffer;
114 static unsigned int dcn10_get_hubp_states(struct dc *dc, char *pBuf, unsigned int bufSize, bool invarOnly)
121 unsigned int remaining_buffer = bufSize;
190 return bufSize - remaining_buffer
    [all...]
dcn10_hw_sequencer.h 144 unsigned int bufSize,
  /src/external/bsd/zstd/dist/tests/fuzz/
stream_decompress.c 28 static ZSTD_outBuffer makeOutBuffer(FUZZ_dataProducer_t *producer, void* buf, size_t bufSize)
33 buffer.size = bufSize;
35 buffer.size = (FUZZ_dataProducer_uint32Range(producer, 0, bufSize));
37 FUZZ_ASSERT(buffer.size <= bufSize);
76 size_t bufSize;
78 bufSize = MAX(10 * size, ZSTD_BLOCKSIZE_MAX);
81 buf = FUZZ_malloc(bufSize);
94 out.size = bufSize;
97 out = makeOutBuffer(producer, buf, bufSize);
107 out = makeOutBuffer(producer, buf, bufSize);
    [all...]
block_decompress.c 27 static size_t bufSize = 0;
35 if (neededBufSize > bufSize) {
38 bufSize = neededBufSize;
simple_compress.c 39 size_t const bufSize = FUZZ_dataProducer_uint32Range(producer, 0, maxSize);
48 void *rBuf = FUZZ_malloc(bufSize);
49 size_t const ret = ZSTD_compressCCtx(cctx, rBuf, bufSize, src, size, cLevel);
simple_decompress.c 41 size_t const bufSize = FUZZ_dataProducer_uint32Range(producer, 0, 10 * size);
42 void *rBuf = FUZZ_malloc(bufSize);
43 size_t const dSize = ZSTD_decompressDCtx(dctx, rBuf, bufSize, src, size);
dictionary_decompress.c 60 size_t const bufSize = FUZZ_dataProducer_uint32Range(producer, 0, 10 * size);
61 void* rBuf = FUZZ_malloc(bufSize);
63 ZSTD_decompress_usingDDict(dctx, rBuf, bufSize, src, size, ddict);
65 ZSTD_decompressDCtx(dctx, rBuf, bufSize, src, size);
block_round_trip.c 32 static size_t bufSize = 0;
72 if (neededBufSize > bufSize || !cBuf || !rBuf) {
77 bufSize = neededBufSize;
dictionary_stream_round_trip.c 31 static size_t bufSize = 0;
162 if (neededBufSize > bufSize) {
167 bufSize = neededBufSize;
stream_round_trip.c 31 static size_t bufSize = 0;
169 if (neededBufSize > bufSize) {
174 bufSize = neededBufSize;
  /src/external/gpl3/binutils/dist/zlib/contrib/minizip/
crypt.h 90 int bufSize,
100 if (bufSize<RAND_HEAD_LEN)
  /src/external/gpl3/binutils.old/dist/zlib/contrib/minizip/
crypt.h 93 int bufSize,
104 if (bufSize<RAND_HEAD_LEN)
  /src/external/gpl3/gdb.old/dist/zlib/contrib/minizip/
crypt.h 93 int bufSize,
104 if (bufSize<RAND_HEAD_LEN)
  /src/external/gpl3/gdb/dist/zlib/contrib/minizip/
crypt.h 90 int bufSize,
100 if (bufSize<RAND_HEAD_LEN)
  /src/common/dist/zlib/contrib/minizip/
crypt.h 87 int bufSize,
97 if (bufSize<RAND_HEAD_LEN)
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
clk_mgr.h 80 unsigned int bufSize;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
hw_sequencer.h 187 unsigned int bufSize, unsigned int mask);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/
dm_services.h 166 unsigned int __printflike(3,4) snprintf_count(char *pBuf, unsigned int bufSize, const char *fmt, ...);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
parallelism.d 1871 functions are evaluated for the first `bufSize` elements and stored in a
1888 access it will be lazily buffered to an array of size `bufSize` before
1891 bufSize = The size of the buffer to store the evaluated elements.
1894 `Task`. Must be less than or equal to `bufSize`, and
1895 should be a fraction of `bufSize` such that all worker threads can be
1908 access ranges. This means that the `bufSize` parameter passed to the
1940 map(S)(S source, size_t bufSize = 100, size_t workUnitSize = size_t.max)
1945 enforce(workUnitSize == size_t.max || workUnitSize <= bufSize,
2066 this(S source, size_t bufSize, size_t workUnitSize, TaskPool pool)
2070 bufSize = source.buf1.length
    [all...]
  /src/external/bsd/zstd/dist/programs/
util.c 673 size_t bufSize;
682 bufSize = (size_t)(inputFileSize + 1); /* (+1) to add '\0' at the end of last filename */
685 buf = (char*) malloc(bufSize);
688 { int const ret_nbFiles = readLinesFromFile(buf, bufSize, inputFileName);
705 assert(pos <= bufSize);
  /src/usr.bin/make/
parse.c 351 size_t bufSize;
354 bufSize = fstat(fd, &st) == 0 && S_ISREG(st.st_mode) &&
357 Buf_InitSize(&buf, bufSize);
  /src/external/mit/expat/dist/lib/
xmlparse.c 2764 int bufSize;
2782 bufSize = nameLen + (int)rawNameLen;
2783 if (bufSize > tag->bufEnd - tag->buf) {
2784 char *temp = (char *)REALLOC(parser, tag->buf, bufSize);
2799 tag->bufEnd = temp + bufSize;
3133 int bufSize;
3144 bufSize = (int)(tag->bufEnd - tag->buf) << 1;
3146 char *temp = (char *)REALLOC(parser, tag->buf, bufSize);
3150 tag->bufEnd = temp + bufSize;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/math/
biguintcore.d 2910 enum bufSize = 5 * BigDigitBits / 3 + 1;
2911 auto buf = new char[bufSize];
2917 assert(i == bufSize - 7 && buf[i .. $] == "1234567");
2922 assert(i == bufSize - 23 && buf[i .. $] == "12345670123456701234567");
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/clk_mgr/dcn21/
amdgpu_rn_clk_mgr.c 259 unsigned int remaining_buffer = log_info->bufSize;

Completed in 67 milliseconds

1 2