HomeSort by relevance Sort by last modified time
    Searched refs:DEFAULT_BUFFER_SIZE (Results 1 - 25 of 57) sorted by null

1 2 3

  /libcore/support/src/test/java/tests/support/
Support_ASimpleOutputStream.java 14 public static final int DEFAULT_BUFFER_SIZE = 32;
26 this(DEFAULT_BUFFER_SIZE);
30 this(DEFAULT_BUFFER_SIZE);
Support_ASimpleWriter.java 14 public static final int DEFAULT_BUFFER_SIZE = 32;
26 this(DEFAULT_BUFFER_SIZE);
30 this(DEFAULT_BUFFER_SIZE);
Support_OutputStream.java 15 private static final int DEFAULT_BUFFER_SIZE = 32;
26 this(DEFAULT_BUFFER_SIZE);
30 this(DEFAULT_BUFFER_SIZE);
Support_ASimpleInputStream.java 14 public static final int DEFAULT_BUFFER_SIZE = 32;
Support_ASimpleReader.java 14 public static final int DEFAULT_BUFFER_SIZE = 32;
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
BufferedResourceLoader.java 30 public static final int DEFAULT_BUFFER_SIZE = 1024;
33 private int bufferSize = DEFAULT_BUFFER_SIZE;
  /cts/suite/audio_quality/lib/include/
FileUtil.h 58 static const int DEFAULT_BUFFER_SIZE = 1024;
  /packages/apps/Gallery2/jni_jpegstream/src/
stream_wrapper.h 34 const static int32_t DEFAULT_BUFFER_SIZE;
stream_wrapper.cpp 20 const int32_t StreamWrapper::DEFAULT_BUFFER_SIZE = 1 << 16; // 64Kb
51 mByteArrayLen = DEFAULT_BUFFER_SIZE;
  /libcore/luni/src/main/java/java/util/zip/
DeflaterInputStream.java 33 private static final int DEFAULT_BUFFER_SIZE = 1024;
49 this(in, new Deflater(), DEFAULT_BUFFER_SIZE);
61 this(in, deflater, DEFAULT_BUFFER_SIZE);
InflaterOutputStream.java 32 private static final int DEFAULT_BUFFER_SIZE = 1024;
59 this(out, inf, DEFAULT_BUFFER_SIZE);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
flagparser.c 12 #define DEFAULT_BUFFER_SIZE 512
14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE;
81 currentBufferSize = DEFAULT_BUFFER_SIZE;
  /external/icu4c/tools/toolutil/
flagparser.c 12 #define DEFAULT_BUFFER_SIZE 512
14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE;
98 currentBufferSize = DEFAULT_BUFFER_SIZE;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 119 private static final int DEFAULT_BUFFER_SIZE = 1024 * 4;
196 byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
221 char[] buffer = new char[DEFAULT_BUFFER_SIZE];
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
io.py 29 DEFAULT_BUFFER_SIZE
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
io.py 29 DEFAULT_BUFFER_SIZE
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 81 mBuffer = new char[DEFAULT_BUFFER_SIZE];
86 mBufferSize = DEFAULT_BUFFER_SIZE;
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bf_buff.c 72 #define DEFAULT_BUFFER_SIZE 4096
99 ctx->ibuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
101 ctx->obuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
103 ctx->ibuf_size=DEFAULT_BUFFER_SIZE;
104 ctx->obuf_size=DEFAULT_BUFFER_SIZE;
353 if ((ibs > DEFAULT_BUFFER_SIZE) && (ibs != ctx->ibuf_size))
358 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size))
  /external/openssl/crypto/bio/
bf_buff.c 72 #define DEFAULT_BUFFER_SIZE 4096
99 ctx->ibuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
101 ctx->obuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
103 ctx->ibuf_size=DEFAULT_BUFFER_SIZE;
104 ctx->obuf_size=DEFAULT_BUFFER_SIZE;
353 if ((ibs > DEFAULT_BUFFER_SIZE) && (ibs != ctx->ibuf_size))
358 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size))
  /external/chromium_org/third_party/icu/source/test/cintltst/
bocu1tst.c 874 static const int32_t DEFAULT_BUFFER_SIZE = 30000;
886 roundtripRef = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
887 roundtripICU = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
888 bocu1Ref = malloc(DEFAULT_BUFFER_SIZE);
889 bocu1ICU = malloc(DEFAULT_BUFFER_SIZE);
895 bocu1ICULength=ucnv_fromUChars(bocu1, bocu1ICU, DEFAULT_BUFFER_SIZE, text, length, &errorCode);
913 roundtripICULength=ucnv_toUChars(bocu1, roundtripICU, DEFAULT_BUFFER_SIZE, bocu1ICU, bocu1ICULength, &errorCode);
991 text = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
  /external/icu4c/test/cintltst/
bocu1tst.c 875 static const int32_t DEFAULT_BUFFER_SIZE = 30000;
887 roundtripRef = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
888 roundtripICU = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
889 bocu1Ref = malloc(DEFAULT_BUFFER_SIZE);
890 bocu1ICU = malloc(DEFAULT_BUFFER_SIZE);
896 bocu1ICULength=ucnv_fromUChars(bocu1, bocu1ICU, DEFAULT_BUFFER_SIZE, text, length, &errorCode);
913 roundtripICULength=ucnv_toUChars(bocu1, roundtripICU, DEFAULT_BUFFER_SIZE, bocu1ICU, bocu1ICULength, &errorCode);
992 text = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
BlenderInputStream.java 51 private static final int DEFAULT_BUFFER_SIZE = 1048576; //1MB
92 size = BlenderInputStream.DEFAULT_BUFFER_SIZE;
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUsbALSA.h 42 #define DEFAULT_BUFFER_SIZE 2048
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_context.cpp 120 const size_t DEFAULT_BUFFER_SIZE = 8192;
121 BufferedOutputStream *stream = new BufferedOutputStream(mStream, DEFAULT_BUFFER_SIZE);
  /external/chromium_org/third_party/icu/source/i18n/
ucoleitr.cpp 31 #define DEFAULT_BUFFER_SIZE 16
57 RCEI defaultBuffer[DEFAULT_BUFFER_SIZE];
74 bufferSize = DEFAULT_BUFFER_SIZE;
129 PCEI defaultBuffer[DEFAULT_BUFFER_SIZE];
147 bufferSize = DEFAULT_BUFFER_SIZE;

Completed in 1267 milliseconds

1 2 3