OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currentBufferSize
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferBuilder.cpp
50
unsigned
currentBufferSize
= m_buffer->byteLength();
61
if (
currentBufferSize
<= std::numeric_limits<unsigned>::max() / 2)
62
exponentialGrowthNewBufferSize =
currentBufferSize
* 2;
80
unsigned
currentBufferSize
= m_buffer->byteLength();
82
ASSERT(m_bytesUsed <=
currentBufferSize
);
84
unsigned remainingBufferSpace =
currentBufferSize
- m_bytesUsed;
/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
...]
/frameworks/av/services/camera/libcameraservice/api1/client2/
CallbackProcessor.cpp
370
size_t
currentBufferSize
= (mCallbackHeap == 0) ?
372
if (bufferSize !=
currentBufferSize
) {
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.cpp
168
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);
/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/webrtc/src/
common_types.h
251
WebRtc_UWord16
currentBufferSize
;
Completed in 161 milliseconds