/third_party/icu/icu4c/source/test/cintltst/ |
D | spreptst.c | 292 #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/ |
D | jerry_client_rawpacket.py | 19 MAX_BUFFER_SIZE = 256 variable 85 received_data = self.protocol.receive_data(MAX_BUFFER_SIZE)
|
D | jerry_client_websocket.py | 19 MAX_BUFFER_SIZE = 128 variable 128 data = self.protocol.receive_data(MAX_BUFFER_SIZE)
|
/third_party/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 26 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/ |
D | builder.py | 113 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/ |
D | nptrans.cpp | 181 #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/ |
D | PunycodeReference.java | 270 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/ |
D | PunycodeReference.java | 267 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/ |
D | FlatBufferBuilder.java | 61 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/ |
D | debugger.h | 41 #error Please define the MAX_BUFFER_SIZE between 64 and 256 bytes.
|
/third_party/nghttp2/src/ |
D | shrpx_live_check.cc | 34 constexpr size_t MAX_BUFFER_SIZE = 4_k; variable 641 if (wb_.rleft() >= MAX_BUFFER_SIZE) { in on_write()
|
D | shrpx_http2_upstream.cc | 55 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()
|
D | shrpx_http2_session.cc | 62 constexpr size_t MAX_BUFFER_SIZE = 32_k; variable 1783 if (wb_.rleft() >= MAX_BUFFER_SIZE) { in downstream_write()
|
/third_party/pulseaudio/src/modules/ |
D | module-solaris.c | 137 #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/ |
D | aiffparse.c | 105 #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/ |
D | api.md | 498 #define MAX_BUFFER_SIZE 10000 519 length = MAX_BUFFER_SIZE;
|
/third_party/gstreamer/gstplugins_good/gst/wavparse/ |
D | gstwavparse.c | 1072 #define MAX_BUFFER_SIZE 4096 macro 1725 wav->max_buf_size = MAX (wav->max_buf_size, MAX_BUFFER_SIZE); in gst_wavparse_stream_headers()
|