Searched refs:BUF_SIZE (Results 1 - 25 of 57) sorted by path

123

/external/ant-glob/src/org/apache/tools/ant/util/
H A DFileUtils.java47 static final int BUF_SIZE = 8192; field in class:FileUtils
/external/blktrace/
H A Dblktrace.c60 #define BUF_SIZE (512 * 1024) macro
288 static unsigned long buf_size = BUF_SIZE;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/boringssl/src/crypto/rand/
H A Durandom.c55 /* BUF_SIZE is intended to be a 4K allocation with malloc overhead. struct
57 #define BUF_SIZE (4096 - 16) macro
74 static const size_t rand_bytes_per_buf = BUF_SIZE - sizeof(struct rand_buffer);
159 if (!urandom_buffering || requested > BUF_SIZE / 2) {
190 buf = (struct rand_buffer *)OPENSSL_malloc(BUF_SIZE);
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/icu/source/extra/uconv/
H A Duwmsg.c31 #define BUF_SIZE 128 macro
42 char buf [BUF_SIZE];
54 arraySize = BUF_SIZE;
77 arraySize = BUF_SIZE;
/external/chromium_org/third_party/icu/source/samples/cal/
H A Dcal.c96 #define BUF_SIZE 64 macro
381 char c [BUF_SIZE];
388 if(count < BUF_SIZE) {
429 UChar s [BUF_SIZE];
442 udat_format(dfmt, ucal_getMillis(c, status), s, BUF_SIZE, 0, status);
499 unum_format(nfmt, day, s, BUF_SIZE, 0, status);
546 UChar s [BUF_SIZE];
565 udat_format(dfmt, ucal_getMillis(left_cal, status), s, BUF_SIZE, 0, status);
670 unum_format(nfmt, left_day, s, BUF_SIZE, 0, status);
718 unum_format(nfmt, right_day, s, BUF_SIZE,
[all...]
H A Duprint.c20 #define BUF_SIZE 128 macro
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
/external/chromium_org/third_party/icu/source/samples/date/
H A Duprint.c21 #define BUF_SIZE 128 macro
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnormconf.cpp162 enum { BUF_SIZE = 1024 }; enumerator in enum:__anon12323
163 char lineBuf[BUF_SIZE];
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_renderer.c64 if (r->buffer_size + next_batch >= BUF_SIZE ||
H A Dxorg_renderer.h16 #define BUF_SIZE (100 * 4 * 3 * 4) macro
29 float buffer[BUF_SIZE];
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
H A Dxmlconfig.c909 #define BUF_SIZE 0x1000 macro
922 void *buffer = XML_GetBuffer (p, BUF_SIZE);
927 bytesRead = read (fd, buffer, BUF_SIZE);
943 #undef BUF_SIZE macro
/external/chromium_org/third_party/webrtc/base/
H A Dasyncudpsocket.cc16 static const int BUF_SIZE = 64 * 1024; member in namespace:rtc
41 size_ = BUF_SIZE;
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-arm64.cc107 #define BUF_SIZE 8192 macro
108 #define SETUP() SETUP_SIZE(BUF_SIZE)
9039 SETUP_SIZE(BUF_SIZE * 2);
9985 SETUP_SIZE(BUF_SIZE * 2);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessorST.java698 m_readbuf = new byte [BUF_SIZE]; // don't reuse this across run() calls to reset it to the original size
700 m_baos = new ByteArrayOStream (BUF_SIZE); // don't reuse this across run() calls to reset it to the original size
997 ensureReadCapacity (BUF_SIZE);
1035 private static final int BUF_SIZE = 32 * 1024; field in class:InstrProcessorST
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java52 m_readbuf = new byte [BUF_SIZE]; // don't reuse this across run() calls to reset it to the original size
54 m_baos = new ByteArrayOStream (BUF_SIZE); // don't reuse this across run() calls to reset it to the original size
355 ensureReadCapacity (BUF_SIZE);
394 private static final int BUF_SIZE = 32 * 1024; field in class:ClassPathProcessorST
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/guava/guava/src/com/google/common/io/
H A DByteStreams.java49 private static final int BUF_SIZE = 0x1000; // 4K field in class:ByteStreams
190 byte[] buf = new byte[BUF_SIZE];
214 ByteBuffer buf = ByteBuffer.allocate(BUF_SIZE);
603 byte[] buf1 = new byte[BUF_SIZE];
604 byte[] buf2 = new byte[BUF_SIZE];
612 int read1 = read(in1, buf1, 0, BUF_SIZE);
613 int read2 = read(in2, buf2, 0, BUF_SIZE);
617 } else if (read1 != BUF_SIZE) {
703 byte[] buf = new byte[BUF_SIZE];
H A DCharStreams.java54 private static final int BUF_SIZE = 0x800; // 2K chars (4K bytes) field in class:CharStreams
200 CharBuffer buf = CharBuffer.allocate(BUF_SIZE);

Completed in 736 milliseconds

123