HomeSort by relevance Sort by last modified time
    Searched refs:currentBufferSize (Results 1 - 4 of 4) sorted by null

  /external/icu4c/tools/toolutil/
flagparser.c 14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE;
24 char* buffer = uprv_malloc(sizeof(char) * currentBufferSize);
43 currentBufferSize *= 2;
45 buffer = uprv_malloc(sizeof(char) * currentBufferSize);
52 if (T_FileStream_readLine(f, buffer, currentBufferSize) == NULL) {
57 if (uprv_strlen(buffer) == (currentBufferSize - 1) && buffer[currentBufferSize-2] != '\n') {
63 extractFlag(buffer, currentBufferSize, flagBuffer[i], flagBufferSize, status);
66 result = currentBufferSize;
81 currentBufferSize = DEFAULT_BUFFER_SIZE
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 126 unsigned currentBufferSize() const { return m_currentBufferSize; }
324 m_reader->setReadOffset(m_reader->currentBufferSize() - png_process_data_pause(png, 0));
326 m_reader->setReadOffset(m_reader->currentBufferSize() - png->buffer_size);
  /external/webrtc/src/
common_types.h 251 WebRtc_UWord16 currentBufferSize;
  /external/icu4c/tools/pkgdata/
pkgdata.cpp 754 int32_t currentBufferSize = SMALL_BUFFER_MAX_SIZE;
766 pkgDataFlags[i] = (char*)uprv_malloc(sizeof(char) * currentBufferSize);
789 tmpResult = parseFlagsFile(o->options, pkgDataFlags, currentBufferSize, (int32_t)PKGDATA_FLAGS_SIZE, &status);
794 currentBufferSize = tmpResult;
    [all...]

Completed in 1731 milliseconds