/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRReaderStream.m | 18 static NSInteger READ_BUFFER_SIZE = 1024; 21 + (NSInteger) READ_BUFFER_SIZE 23 return READ_BUFFER_SIZE; 38 return [[ANTLRReaderStream alloc] initWithReader:r size:INITIAL_BUFFER_SIZE readBufferSize:READ_BUFFER_SIZE]; 43 return [[ANTLRReaderStream alloc] initWithReader:r size:aSize readBufferSize:READ_BUFFER_SIZE]; 57 rbSize = READ_BUFFER_SIZE; 85 aReadChunkSize = READ_BUFFER_SIZE;
|
ANTLRInputStream.m | 24 return [[ANTLRInputStream alloc] initWithInput:anInput size:ANTLRReaderStream.INITIAL_BUFFER_SIZE readBufferSize:ANTLRReaderStream.READ_BUFFER_SIZE encoding:NSASCIIStringEncoding]; 29 return [[ANTLRInputStream alloc] initWithInput:anInput size:theSize readBufferSize:ANTLRReaderStream.READ_BUFFER_SIZE encoding:NSASCIIStringEncoding]; 34 return [[ANTLRInputStream alloc] initWithInput:anInput size:ANTLRReaderStream.INITIAL_BUFFER_SIZE readBufferSize:ANTLRReaderStream.READ_BUFFER_SIZE encoding:theEncoding];
|
ANTLRReaderStream.h | 24 + (NSInteger) READ_BUFFER_SIZE;
|
/cts/tests/filesystem/src/android/filesystem/cts/ |
RandomRWTest.java | 36 final int READ_BUFFER_SIZE = 4 * 1024; 37 final long fileSize = FileUtil.getFileSizeExceedingMemory(getContext(), READ_BUFFER_SIZE); 44 READ_BUFFER_SIZE);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
ANTLRReaderStream.java | 38 public static final int READ_BUFFER_SIZE = 1024; 45 this(r, INITIAL_BUFFER_SIZE, READ_BUFFER_SIZE); 49 this(r, size, READ_BUFFER_SIZE); 66 readChunkSize = READ_BUFFER_SIZE;
|
ANTLRInputStream.java | 52 this(input, size, READ_BUFFER_SIZE, encoding);
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/ |
UsbTunerTsScannerSource.java | 41 private static final int READ_BUFFER_SIZE = MIN_READ_UNIT * 10; // ~15KB 132 byte[] dataBuffer = new byte[READ_BUFFER_SIZE];
|
FileDataSource.java | 47 private static final int READ_BUFFER_SIZE = MIN_READ_UNIT * 10; // ~20KB 165 private final byte[] mPreBuffer = new byte[READ_BUFFER_SIZE]; 341 byte[] dataBuffer = new byte[READ_BUFFER_SIZE];
|
UsbTunerDataSource.java | 41 private static final int READ_BUFFER_SIZE = MIN_READ_UNIT * 10; // ~15KB 163 byte[] dataBuffer = new byte[READ_BUFFER_SIZE];
|
/external/zlib/src/contrib/ada/ |
zlib-streams.adb | 49 Read_Buffer_Size : in Ada.Streams.Stream_Element_Offset 55 subtype Buffer_Subtype is Stream_Element_Array (1 .. Read_Buffer_Size);
|
zlib-streams.ads | 61 Read_Buffer_Size : in Ada.Streams.Stream_Element_Offset
|
/libcore/luni/src/test/java/libcore/xml/ |
PullParserDtdTest.java | 30 private static final int READ_BUFFER_SIZE = 8192; 453 String a = repeat('a', READ_BUFFER_SIZE + 1); 454 String b = repeat('b', READ_BUFFER_SIZE + 1); 455 String c = repeat('c', READ_BUFFER_SIZE + 1); 495 char[] doctypeChars = new char[READ_BUFFER_SIZE + 1];
|
/external/chromium-trace/catapult/perf_insights/third_party/cloudstorage/ |
cloudstorage_api.py | 44 read_buffer_size=storage_api.ReadBuffer.DEFAULT_BUFFER_SIZE, 62 read_buffer_size: The buffer size for read. Read keeps a buffer 94 buffer_size=read_buffer_size)
|
/external/libmicrohttpd/src/microhttpd/ |
connection.c | 613 if (0 == connection->read_buffer_size) 616 new_size = connection->read_buffer_size + MHD_BUF_INC_SIZE; 619 connection->read_buffer_size, 625 connection->read_buffer_size = new_size; [all...] |
daemon.c | 861 if (pos->read_buffer_size > pos->read_buffer_offset && 866 if (pos->read_buffer_size > pos->read_buffer_offset && 962 if ( (con->read_buffer_size > con->read_buffer_offset) && 968 if ( (con->read_buffer_size > con->read_buffer_offset) && 1041 if (con->read_buffer_size > con->read_buffer_offset) 1045 if (con->read_buffer_size > con->read_buffer_offset) [all...] |
internal.h | 619 * @e read_buffer_size (if non-NULL) to allow for 665 size_t read_buffer_size; member in struct:MHD_Connection [all...] |
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/ |
FwdLockConv.c | 40 #define READ_BUFFER_SIZE 1024 [all...] |
/external/libmicrohttpd/src/microspdy/ |
session.c | 877 if (session->read_buffer_size == session->read_buffer_offset) 944 session->read_buffer_size - session->read_buffer_offset); [all...] |
structures.h | 742 size_t read_buffer_size; member in struct:SPDY_Session
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/lib/input_reader/ |
_gcs.py | 292 options["read_buffer_size"] = self._buffer_size
|
/external/libpng/ |
pngstruct.h | 459 png_alloc_size_t read_buffer_size; /* current size of the buffer */ member in struct:png_struct_def
|
pngrutil.c | 299 if (buffer != NULL && new_size > png_ptr->read_buffer_size) 303 png_ptr->read_buffer_size = 0; 315 png_ptr->read_buffer_size = new_size; 686 png_ptr->read_buffer_size = buffer_size; [all...] |
/external/pdfium/third_party/lpng_v163/ |
pngstruct.h | 465 png_alloc_size_t read_buffer_size; /* current size of the buffer */
member in struct:png_struct_def
|
pngrutil.c | 291 if (buffer != NULL && new_size > png_ptr->read_buffer_size)
295 png_ptr->read_buffer_size = 0;
307 png_ptr->read_buffer_size = new_size;
652 png_ptr->read_buffer_size = buffer_size;
[all...] |
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
shuffler.py | 304 cloudstorage.open(filename, read_buffer_size=self.GCS_BUFFER_SIZE))
|