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

  /external/chromium_org/third_party/icu/source/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/icu4c/tools/toolutil/
flagparser.c 14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE;
24 char* buffer = uprv_malloc(sizeof(char) * currentBufferSize);
44 currentBufferSize *= 2;
46 buffer = uprv_malloc(sizeof(char) * currentBufferSize);
54 if (T_FileStream_readLine(f, buffer, currentBufferSize) == NULL) {
62 if (uprv_strlen(buffer) == (currentBufferSize - 1) && buffer[currentBufferSize-2] != '\n') {
68 idx = extractFlag(buffer, currentBufferSize, tmpFlagBuffer, flagBufferSize, flagNames, numOfFlags, status);
71 result = currentBufferSize;
98 currentBufferSize = DEFAULT_BUFFER_SIZE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/png/
PNGImageDecoder.cpp 169 unsigned currentBufferSize() const { return m_currentBufferSize; }
387 m_reader->setReadOffset(m_reader->currentBufferSize() - png_process_data_pause(png, 0));
389 m_reader->setReadOffset(m_reader->currentBufferSize() - png->buffer_size);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CallbackProcessor.cpp 370 size_t currentBufferSize = (mCallbackHeap == 0) ?
372 if (bufferSize != currentBufferSize) {
  /external/webrtc/src/
common_types.h 251 WebRtc_UWord16 currentBufferSize;
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu4c/tools/pkgdata/
pkgdata.cpp 793 int32_t currentBufferSize = SMALL_BUFFER_MAX_SIZE;
805 pkgDataFlags[i] = (char*)uprv_malloc(sizeof(char) * currentBufferSize);
828 tmpResult = parseFlagsFile(o->options, pkgDataFlags, currentBufferSize, FLAG_NAMES, (int32_t)PKGDATA_FLAGS_SIZE, &status);
833 currentBufferSize = tmpResult;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvoiceengine.cc     [all...]

Completed in 1454 milliseconds