HomeSort by relevance Sort by last modified time
    Searched defs:BUF_SIZE (Results 1 - 25 of 36) sorted by null

1 2

  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 49 private static final int BUF_SIZE = 0x1000; // 4K
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];
CharStreams.java 54 private static final int BUF_SIZE = 0x800; // 2K chars (4K bytes)
200 CharBuffer buf = CharBuffer.allocate(BUF_SIZE);
  /external/ltrace/testsuite/ltrace.minor/
count-record.c 15 #define BUF_SIZE 100
23 char buffer[BUF_SIZE];
38 getcwd (buffer, BUF_SIZE);
  /external/chromium_org/third_party/icu/source/samples/cal/
uprint.c 20 #define BUF_SIZE 128
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
cal.c 96 #define BUF_SIZE 64
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, 0, status)
    [all...]
  /external/chromium_org/third_party/icu/source/samples/date/
uprint.c 21 #define BUF_SIZE 128
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
  /external/icu/icu4c/source/samples/cal/
uprint.c 20 #define BUF_SIZE 128
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
cal.c 96 #define BUF_SIZE 64
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, 0, status)
    [all...]
  /external/icu/icu4c/source/samples/date/
uprint.c 21 #define BUF_SIZE 128
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_renderer.h 16 #define BUF_SIZE (100 * 4 * 3 * 4)
29 float buffer[BUF_SIZE];
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.h 16 #define BUF_SIZE (100 * 4 * 3 * 4)
29 float buffer[BUF_SIZE];
  /external/chromium_org/third_party/boringssl/src/crypto/rand/
urandom.c 55 /* BUF_SIZE is intended to be a 4K allocation with malloc overhead. struct
57 #define BUF_SIZE (4096 - 16)
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/icu/source/extra/uconv/
uwmsg.c 31 #define BUF_SIZE 128
42 char buf [BUF_SIZE];
54 arraySize = BUF_SIZE;
77 arraySize = BUF_SIZE;
  /external/chromium_org/third_party/webrtc/base/
asyncudpsocket.cc 16 static const int BUF_SIZE = 64 * 1024;
41 size_ = BUF_SIZE;
  /external/icu/icu4c/source/extra/uconv/
uwmsg.c 31 #define BUF_SIZE 128
42 char buf [BUF_SIZE];
54 arraySize = BUF_SIZE;
77 arraySize = BUF_SIZE;
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 47 static final int BUF_SIZE = 8192;
  /external/chromium_org/third_party/icu/source/test/intltest/
normconf.cpp 162 enum { BUF_SIZE = 1024 };
163 char lineBuf[BUF_SIZE];
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 52 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;
  /external/icu/icu4c/source/test/intltest/
normconf.cpp 162 enum { BUF_SIZE = 1024 };
163 char lineBuf[BUF_SIZE];
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 76 #define BUF_SIZE 1024
77 char buf[BUF_SIZE];
139 while (fgets(buf, BUF_SIZE, inputFp)) {
171 while (fgets(buf, BUF_SIZE, inputFp)) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
xmlconfig.c 909 #define BUF_SIZE 0x1000
922 void *buffer = XML_GetBuffer (p, BUF_SIZE);
927 bytesRead = read (fd, buffer, BUF_SIZE);
943 #undef BUF_SIZE
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 698 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
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 909 #define BUF_SIZE 0x1000
922 void *buffer = XML_GetBuffer (p, BUF_SIZE);
927 bytesRead = read (fd, buffer, BUF_SIZE);
943 #undef BUF_SIZE
    [all...]
  /external/chromium_org/v8/test/cctest/
test-assembler-arm64.cc 107 #define BUF_SIZE 8192
108 #define SETUP() SETUP_SIZE(BUF_SIZE)
116 #define SETUP_SIZE(buf_size) \
120 byte* buf = new byte[buf_size]; \
121 MacroAssembler masm(isolate, buf, buf_size); \
170 #define SETUP_SIZE(buf_size) \
174 byte* buf = new byte[buf_size]; \
175 MacroAssembler masm(isolate, buf, buf_size); \
    [all...]
  /external/blktrace/
blktrace.c 60 #define BUF_SIZE (512 * 1024)
153 unsigned long buf_size, buf_nr; member in struct:mmap_info
189 u32 buf_size; /* client buf_size for this trace */ member in struct:blktrace_net_hdr
288 static unsigned long buf_size = BUF_SIZE; variable
582 mip->buf_size = buf_size;
744 mip->fs_buf_len = (nr * mip->buf_size) - mip->fs_off;
869 hdr.buf_size = buf_size
    [all...]

Completed in 1186 milliseconds

1 2