Home
last modified time | relevance | path

Searched refs:MAX_BUFFER_SIZE (Results 1 – 17 of 17) sorted by relevance

/third_party/icu/icu4c/source/test/cintltst/
Dspreptst.c292 #define MAX_BUFFER_SIZE 1000 macro
300 UChar b1Stack[MAX_BUFFER_SIZE]; in unescapeData()
301 int32_t b1Capacity = MAX_BUFFER_SIZE, in unescapeData()
445 char src[MAX_BUFFER_SIZE]; in Test_nfs4_mixed_prep()
453 …escapeData(mixed_prep_data[i], (int32_t)strlen(mixed_prep_data[i]), src, MAX_BUFFER_SIZE, &status); in Test_nfs4_mixed_prep()
474 char dest[MAX_BUFFER_SIZE]; in Test_nfs4_mixed_prep()
475 char src[MAX_BUFFER_SIZE] = {0}; in Test_nfs4_mixed_prep()
479 … int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); in Test_nfs4_mixed_prep()
481 nfs4_mixed_prepare(src, srcLen, dest, MAX_BUFFER_SIZE, &parseError, &status); in Test_nfs4_mixed_prep()
504 char src[MAX_BUFFER_SIZE]={'\0'}; in Test_nfs4_cs_prep()
[all …]
/third_party/jerryscript/jerry-debugger/
Djerry_client_rawpacket.py19 MAX_BUFFER_SIZE = 256 variable
85 received_data = self.protocol.receive_data(MAX_BUFFER_SIZE)
Djerry_client_websocket.py19 MAX_BUFFER_SIZE = 128 variable
128 data = self.protocol.receive_data(MAX_BUFFER_SIZE)
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua26 local MAX_BUFFER_SIZE = 0x80000000 -- 2 GB
50 assert(0 <= initialSize and initialSize < MAX_BUFFER_SIZE)
179 assert(s < MAX_BUFFER_SIZE, "Flat Buffers cannot grow buffer beyond 2 gigabytes")
182 newsize = math.min(newsize * 2, MAX_BUFFER_SIZE)
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py113 MAX_BUFFER_SIZE = 2**31 variable in Builder
122 if not (0 <= initialSize <= Builder.MAX_BUFFER_SIZE):
276 if len(self.Bytes) == Builder.MAX_BUFFER_SIZE:
280 newSize = min(len(self.Bytes) * 2, Builder.MAX_BUFFER_SIZE)
/third_party/icu/icu4c/source/test/intltest/
Dnptrans.cpp181 #define MAX_BUFFER_SIZE 300 macro
200 UChar *b1 = b1String.getBuffer(MAX_BUFFER_SIZE); in process()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
DPunycodeReference.java270 private static final int MAX_BUFFER_SIZE = 100; field in PunycodeReference
276 outLen[0] = MAX_BUFFER_SIZE; in decode()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DPunycodeReference.java267 private static final int MAX_BUFFER_SIZE = 100; field in PunycodeReference
273 outLen[0] = MAX_BUFFER_SIZE; in decode()
/third_party/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java61 private static final int MAX_BUFFER_SIZE = Integer.MAX_VALUE - 8; field in FlatBufferBuilder
270 … if (old_buf_size == MAX_BUFFER_SIZE) { // Ensure we don't grow beyond what fits in an int. in growByteBuffer()
273 new_buf_size = (old_buf_size & 0xC0000000) != 0 ? MAX_BUFFER_SIZE : old_buf_size << 1; in growByteBuffer()
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.h41 #error Please define the MAX_BUFFER_SIZE between 64 and 256 bytes.
/third_party/nghttp2/src/
Dshrpx_live_check.cc34 constexpr size_t MAX_BUFFER_SIZE = 4_k; variable
641 if (wb_.rleft() >= MAX_BUFFER_SIZE) { in on_write()
Dshrpx_http2_upstream.cc55 constexpr size_t MAX_BUFFER_SIZE = 32_k; variable
1020 max_buffer_size_(MAX_BUFFER_SIZE), in Http2Upstream()
1185 max_buffer_size_ = std::min(MAX_BUFFER_SIZE, hint.write_buffer_size); in on_write()
Dshrpx_http2_session.cc62 constexpr size_t MAX_BUFFER_SIZE = 32_k; variable
1783 if (wb_.rleft() >= MAX_BUFFER_SIZE) { in downstream_write()
/third_party/pulseaudio/src/modules/
Dmodule-solaris.c137 #define MAX_BUFFER_SIZE (128 * 1024) macro
919 if (u->buffer_size > MAX_BUFFER_SIZE) { in pa__init()
921 (unsigned)(pa_bytes_to_usec(MAX_BUFFER_SIZE, &ss) / 1000)); in pa__init()
/third_party/gstreamer/gstplugins_bad/gst/aiff/
Daiffparse.c105 #define MAX_BUFFER_SIZE 4096 macro
1185 aiff->max_buf_size = MAX (aiff->max_buf_size, MAX_BUFFER_SIZE); in gst_aiff_parse_stream_headers()
/third_party/icu/docs/userguide/collation/
Dapi.md498 #define MAX_BUFFER_SIZE 10000
519 length = MAX_BUFFER_SIZE;
/third_party/gstreamer/gstplugins_good/gst/wavparse/
Dgstwavparse.c1072 #define MAX_BUFFER_SIZE 4096 macro
1725 wav->max_buf_size = MAX (wav->max_buf_size, MAX_BUFFER_SIZE); in gst_wavparse_stream_headers()