Home
last modified time | relevance | path

Searched refs:INITIAL_BUFFER_SIZE (Results 1 – 25 of 137) sorted by relevance

123456

/dports/devel/doxygen/doxygen-1.9.3/vhdlparser/
H A DCharStream.h8 #ifndef INITIAL_BUFFER_SIZE
9 #define INITIAL_BUFFER_SIZE 4096 macro
180 ReInit(JJString(buf, sz), startline, startcolumn, INITIAL_BUFFER_SIZE); in CharStream()
197 ReInit(str, startline, startcolumn, INITIAL_BUFFER_SIZE); in CharStream()
214 ReInit(input_stream, startline, startcolumn, INITIAL_BUFFER_SIZE); in CharStream()
222 ReInit(input_stream, 1, 1, INITIAL_BUFFER_SIZE); in CharStream()
228 ReInit(input_stream, startline, startcolumn, INITIAL_BUFFER_SIZE); in ReInit()
232 ReInit(input_stream, 1, 1, INITIAL_BUFFER_SIZE); in ReInit()
240 ReInit(str, startline, startcolumn, INITIAL_BUFFER_SIZE); in ReInit()
/dports/www/zerowait-httpd/0W-httpd-0.8d/src/httpd/
H A Dbuffer.c13 #define MAX_SIZES (MAXIMUM_BUFFER_SIZE / INITIAL_BUFFER_SIZE)
27 (size % INITIAL_BUFFER_SIZE) || in newBuffer()
28 countBits(s = size / INITIAL_BUFFER_SIZE) != 1) { in newBuffer()
70 (buffer->size % INITIAL_BUFFER_SIZE) || in freeBuffer()
71 countBits(s = buffer->size / INITIAL_BUFFER_SIZE) != 1) in freeBuffer()
/dports/x11/dxpc/dxpc-3.9.2/
H A DReadBuffer.C7 static const unsigned int INITIAL_BUFFER_SIZE = 512; variable
12 buffer_(new unsigned char[INITIAL_BUFFER_SIZE]), in ReadBuffer()
14 size_(INITIAL_BUFFER_SIZE), in ReadBuffer()
18 memset(buffer_, 0, INITIAL_BUFFER_SIZE); in ReadBuffer()
/dports/multimedia/qmmp-plugin-pack-qt5/qmmp-plugin-pack-1.5.2/src/Transports/ytb/
H A Dbufferdevice.cpp26 #define INITIAL_BUFFER_SIZE 30000000 macro
30 m_buffer = (char *)malloc(INITIAL_BUFFER_SIZE); in BufferDevice()
31 m_bufferSize = INITIAL_BUFFER_SIZE; in BufferDevice()
66 m_bufferSize = m_writeAt + data.size() + INITIAL_BUFFER_SIZE / 10; in addData()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Java/src/org/antlr/v4/runtime/
H A DANTLRInputStream.java27 public static final int INITIAL_BUFFER_SIZE = 1024; field in ANTLRInputStream
56 this(r, INITIAL_BUFFER_SIZE, READ_BUFFER_SIZE); in ANTLRInputStream()
68 this(new InputStreamReader(input), INITIAL_BUFFER_SIZE); in ANTLRInputStream()
86 size = INITIAL_BUFFER_SIZE; in load()
/dports/devel/gindent/indent-2.2.12/regression/input/
H A Dparse.c22 #define INITIAL_BUFFER_SIZE 1000 macro
42 combuf = (char *) xmalloc (INITIAL_BUFFER_SIZE); in init_parser()
43 labbuf = (char *) xmalloc (INITIAL_BUFFER_SIZE); in init_parser()
44 codebuf = (char *) xmalloc (INITIAL_BUFFER_SIZE); in init_parser()
46 save_com.size = INITIAL_BUFFER_SIZE; in init_parser()
100 l_com = combuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
101 l_lab = labbuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
102 l_code = codebuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
/dports/devel/gindent/indent-2.2.12/regression/standard/
H A Dparse.c22 #define INITIAL_BUFFER_SIZE 1000 macro
41 combuf = (char *) xmalloc (INITIAL_BUFFER_SIZE); in init_parser()
42 labbuf = (char *) xmalloc (INITIAL_BUFFER_SIZE); in init_parser()
43 codebuf = (char *) xmalloc (INITIAL_BUFFER_SIZE); in init_parser()
45 save_com.size = INITIAL_BUFFER_SIZE; in init_parser()
99 l_com = combuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
100 l_lab = labbuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
101 l_code = codebuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
/dports/net-mgmt/yaf/yaf-2.11.0/src/
H A Dyafcygwin.c77 #define INITIAL_BUFFER_SIZE 8192 macro
212 dataBuffer = (char *) malloc( sizeof(char) * INITIAL_BUFFER_SIZE); in yfGetCygwinConfDir()
217 bufferSize = INITIAL_BUFFER_SIZE; in yfGetCygwinConfDir()
/dports/databases/pymongo/pymongo-3.12.0/bson/
H A Dbuffer.c26 #define INITIAL_BUFFER_SIZE 256 macro
50 buffer->size = INITIAL_BUFFER_SIZE; in buffer_new()
52 buffer->buffer = (char*)malloc(sizeof(char) * INITIAL_BUFFER_SIZE); in buffer_new()
/dports/sysutils/boxbackup-devel/boxbackup-0.11_trunk_2979/lib/common/
H A DCollectInBufferStream.cpp79 #define INITIAL_BUFFER_SIZE 1024 macro
91 : mBuffer(INITIAL_BUFFER_SIZE), in CollectInBufferStream()
92 mBufferSize(INITIAL_BUFFER_SIZE), in CollectInBufferStream()
/dports/devel/gindent/indent-2.2.12/src/
H A Dparse.c56 #define INITIAL_BUFFER_SIZE 1000 macro
77 combuf = xmalloc(INITIAL_BUFFER_SIZE); in init_parser()
78 labbuf = xmalloc(INITIAL_BUFFER_SIZE); in init_parser()
79 codebuf = xmalloc(INITIAL_BUFFER_SIZE); in init_parser()
81 save_com.size = INITIAL_BUFFER_SIZE; in init_parser()
170 l_com = combuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
171 l_lab = labbuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
172 l_code = codebuf + INITIAL_BUFFER_SIZE - 5; in reset_parser()
/dports/games/lwjgl/lwjgl-2df01dd/src/java/org/lwjgl/opengles/
H A DAPIUtil.java51 private static final int INITIAL_BUFFER_SIZE = 256; field in APIUtil
57 protected char[] initialValue() { return new char[INITIAL_BUFFER_SIZE]; }
61 protected ByteBuffer initialValue() { return BufferUtils.createByteBuffer(INITIAL_BUFFER_SIZE); }
65 …ected PointerBuffer initialValue() { return BufferUtils.createPointerBuffer(INITIAL_BUFFER_SIZE); }
/dports/databases/py-gdbm/Python-3.8.12/Modules/
H A D_bz2module.c111 #define INITIAL_BUFFER_SIZE 8192 macro
113 #define INITIAL_BUFFER_SIZE BUFSIZ macro
146 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
153 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
404 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
405 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/lang/python37/Python-3.7.12/Modules/
H A D_bz2module.c111 #define INITIAL_BUFFER_SIZE 8192 macro
113 #define INITIAL_BUFFER_SIZE BUFSIZ macro
146 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
153 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
413 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
414 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/lang/python-tools/Python-3.8.12/Modules/
H A D_bz2module.c111 #define INITIAL_BUFFER_SIZE 8192 macro
113 #define INITIAL_BUFFER_SIZE BUFSIZ macro
146 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
153 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
404 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
405 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/lang/python39/Python-3.9.9/Modules/
H A D_bz2module.c109 #define INITIAL_BUFFER_SIZE 8192 macro
111 #define INITIAL_BUFFER_SIZE BUFSIZ macro
144 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
151 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
402 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
403 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/lang/python38/Python-3.8.12/Modules/
H A D_bz2module.c111 #define INITIAL_BUFFER_SIZE 8192 macro
113 #define INITIAL_BUFFER_SIZE BUFSIZ macro
146 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
153 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
404 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
405 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/databases/py-sqlite3/Python-3.8.12/Modules/
H A D_bz2module.c111 #define INITIAL_BUFFER_SIZE 8192 macro
113 #define INITIAL_BUFFER_SIZE BUFSIZ macro
146 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
153 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
404 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
405 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/
H A D_bz2module.c111 #define INITIAL_BUFFER_SIZE 8192 macro
113 #define INITIAL_BUFFER_SIZE BUFSIZ macro
146 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in compress()
153 c->bzs.avail_out = INITIAL_BUFFER_SIZE; in compress()
404 if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE) in decompress_buf()
405 result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE); in decompress_buf()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sword25/kernel/
H A Doutputpersistenceblock.cpp35 const uint INITIAL_BUFFER_SIZE = 1024 * 64; variable
41 _data.reserve(INITIAL_BUFFER_SIZE); in OutputPersistenceBlock()
/dports/games/scummvm/scummvm-2.5.1/engines/sword25/kernel/
H A Doutputpersistenceblock.cpp35 const uint INITIAL_BUFFER_SIZE = 1024 * 64; variable
41 _data.reserve(INITIAL_BUFFER_SIZE); in OutputPersistenceBlock()
/dports/security/munge/munge-munge-0.5.14/src/munge/
H A Dread.c44 #define INITIAL_BUFFER_SIZE 4096 macro
69 bufsiz = INITIAL_BUFFER_SIZE; in read_data_from_file()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/android/java/src/org/chromium/net/urlconnection/
H A DCronetBufferedOutputStream.java24 private static final int INITIAL_BUFFER_SIZE = 16384; field in CronetBufferedOutputStream
69 mBuffer = ByteBuffer.allocate(INITIAL_BUFFER_SIZE); in CronetBufferedOutputStream()
/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/util/
H A DTimedValueQueue.java24 private static final int INITIAL_BUFFER_SIZE = 10; field in TimedValueQueue
33 this(INITIAL_BUFFER_SIZE); in TimedValueQueue()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DModuleNameReader.java57 private static final int INITIAL_BUFFER_SIZE = 0x0fff0; field in ModuleNameReader
61 private ByteBuffer buf = new ByteBuffer(INITIAL_BUFFER_SIZE);

123456