/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/ |
D | MemoryDeferredOutputStream.java | 14 private static final int DEFAULT_BUFFER_SIZE = 16 * 1024; field in MemoryDeferredOutputStream 21 this(DEFAULT_BUFFER_SIZE); in MemoryDeferredOutputStream() 77 return getFactory(DEFAULT_BUFFER_SIZE); in getFactory()
|
D | FileDeferredOutputStream.java | 13 private static final int DEFAULT_BUFFER_SIZE = 4 * 1024; field in FileDeferredOutputStream 20 this(backingFile, DEFAULT_BUFFER_SIZE); in FileDeferredOutputStream() 91 return getFactory(containingDirectory, DEFAULT_BUFFER_SIZE); in getFactory()
|
/external/chromium_org/third_party/boringssl/src/crypto/bio/ |
D | buffer.c | 64 #define DEFAULT_BUFFER_SIZE 4096 macro 97 ctx->ibuf = OPENSSL_malloc(DEFAULT_BUFFER_SIZE); in buffer_new() 101 ctx->obuf = (char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE); in buffer_new() 105 ctx->ibuf_size = DEFAULT_BUFFER_SIZE; in buffer_new() 106 ctx->obuf_size = DEFAULT_BUFFER_SIZE; in buffer_new() 343 if (ibs > DEFAULT_BUFFER_SIZE && ibs != ctx->ibuf_size) { in buffer_ctrl() 349 if (obs > DEFAULT_BUFFER_SIZE && obs != ctx->obuf_size) { in buffer_ctrl()
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
D | BufferedResourceLoader.java | 30 public static final int DEFAULT_BUFFER_SIZE = 1024; field in BufferedResourceLoader 33 private int bufferSize = DEFAULT_BUFFER_SIZE;
|
/external/openssl/crypto/bio/ |
D | bf_buff.c | 72 #define DEFAULT_BUFFER_SIZE 4096 macro 99 ctx->ibuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE); in buffer_new() 101 ctx->obuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE); in buffer_new() 103 ctx->ibuf_size=DEFAULT_BUFFER_SIZE; in buffer_new() 104 ctx->obuf_size=DEFAULT_BUFFER_SIZE; in buffer_new() 353 if ((ibs > DEFAULT_BUFFER_SIZE) && (ibs != ctx->ibuf_size)) in buffer_ctrl() 358 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) in buffer_ctrl()
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
D | flagparser.c | 12 #define DEFAULT_BUFFER_SIZE 512 macro 14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE; 98 currentBufferSize = DEFAULT_BUFFER_SIZE; in parseFlagsFile()
|
/external/icu/icu4c/source/tools/toolutil/ |
D | flagparser.c | 12 #define DEFAULT_BUFFER_SIZE 512 macro 14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE; 98 currentBufferSize = DEFAULT_BUFFER_SIZE; in parseFlagsFile()
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
D | bocu1tst.c | 875 static const int32_t DEFAULT_BUFFER_SIZE = 30000; variable 887 roundtripRef = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar)); in roundtripBOCU1() 888 roundtripICU = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar)); in roundtripBOCU1() 889 bocu1Ref = malloc(DEFAULT_BUFFER_SIZE); in roundtripBOCU1() 890 bocu1ICU = malloc(DEFAULT_BUFFER_SIZE); in roundtripBOCU1() 896 bocu1ICULength=ucnv_fromUChars(bocu1, bocu1ICU, DEFAULT_BUFFER_SIZE, text, length, &errorCode); in roundtripBOCU1() 913 …roundtripICULength=ucnv_toUChars(bocu1, roundtripICU, DEFAULT_BUFFER_SIZE, bocu1ICU, bocu1ICULengt… in roundtripBOCU1() 992 text = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar)); in TestBOCU1()
|
/external/icu/icu4c/source/test/cintltst/ |
D | bocu1tst.c | 875 static const int32_t DEFAULT_BUFFER_SIZE = 30000; variable 887 roundtripRef = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar)); in roundtripBOCU1() 888 roundtripICU = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar)); in roundtripBOCU1() 889 bocu1Ref = malloc(DEFAULT_BUFFER_SIZE); in roundtripBOCU1() 890 bocu1ICU = malloc(DEFAULT_BUFFER_SIZE); in roundtripBOCU1() 896 bocu1ICULength=ucnv_fromUChars(bocu1, bocu1ICU, DEFAULT_BUFFER_SIZE, text, length, &errorCode); in roundtripBOCU1() 913 …roundtripICULength=ucnv_toUChars(bocu1, roundtripICU, DEFAULT_BUFFER_SIZE, bocu1ICU, bocu1ICULengt… in roundtripBOCU1() 992 text = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar)); in TestBOCU1()
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | ucoleitr.cpp | 31 #define DEFAULT_BUFFER_SIZE 16 macro 57 RCEI defaultBuffer[DEFAULT_BUFFER_SIZE]; 74 bufferSize = DEFAULT_BUFFER_SIZE; in RCEBuffer() 129 PCEI defaultBuffer[DEFAULT_BUFFER_SIZE]; 147 bufferSize = DEFAULT_BUFFER_SIZE; in PCEBuffer()
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/ |
D | ServiceConnection.java | 33 public static final int DEFAULT_BUFFER_SIZE = 256 * 1024; // 256 Kb field
|
D | Transport.java | 62 private int bufferLength = ServiceConnection.DEFAULT_BUFFER_SIZE;
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 61 public static final int DEFAULT_BUFFER_SIZE = 4096; field in CodedOutputStream 71 if (dataLength > DEFAULT_BUFFER_SIZE) return DEFAULT_BUFFER_SIZE; in computePreferredBufferSize() 95 return newInstance(output, DEFAULT_BUFFER_SIZE); in newInstance()
|
/external/icu/icu4c/source/i18n/ |
D | ucoleitr.cpp | 36 #define DEFAULT_BUFFER_SIZE 16 macro 60 RCEI defaultBuffer[DEFAULT_BUFFER_SIZE];
|
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/ |
D | storage_api.py | 180 DEFAULT_BUFFER_SIZE = 1024 * 1024 variable in ReadBuffer 181 MAX_REQUEST_SIZE = 30 * DEFAULT_BUFFER_SIZE 186 buffer_size=DEFAULT_BUFFER_SIZE,
|
D | cloudstorage_api.py | 44 read_buffer_size=storage_api.ReadBuffer.DEFAULT_BUFFER_SIZE,
|
/external/srec/srec/include/ |
D | utteranc.h | 42 #define DEFAULT_BUFFER_SIZE 100 /* in frames */ macro
|
/external/srec/srec/ca/ |
D | utt_basi.c | 77 DEFAULT_BUFFER_SIZE, KEEP_FRAMES, in CA_InitUtteranceForFrontend()
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 61 public static final int DEFAULT_BUFFER_SIZE = 4096; field in CodedOutputStreamMicro 83 return newInstance(output, DEFAULT_BUFFER_SIZE); in newInstance()
|