Searched defs:bufferCapacity (Results 1 - 6 of 6) sorted by relevance

/external/icu4c/common/unicode/
H A Duniset.h279 int32_t bufferCapacity; // capacity of buffer member in class:UnicodeSet
/external/icu4c/common/
H A Dloclikely.cpp1192 int32_t bufferCapacity,
1198 bufferCapacity,
1190 do_canonicalize(const char* localeID, char* buffer, int32_t bufferCapacity, UErrorCode* err) argument
H A Ducnvsel.cpp279 void* buffer, int32_t bufferCapacity, UErrorCode* status) {
286 if (bufferCapacity < 0 ||
287 (bufferCapacity > 0 && (p == NULL || (U_POINTER_MASK_LSB(p, 3) != 0)))
320 if (totalSize > bufferCapacity) {
278 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) argument
H A Duloc.c823 char* buffer, int32_t bufferCapacity,
888 if(startSearchHere && startSearchHere - nextSeparator < bufferCapacity) {
893 result = u_terminateChars(buffer, bufferCapacity, (int32_t)(startSearchHere - nextSeparator), status);
894 } else if(!startSearchHere && (int32_t)uprv_strlen(nextSeparator) < bufferCapacity) { /* last item in string */
900 result = u_terminateChars(buffer, bufferCapacity, i, status);
920 char* buffer, int32_t bufferCapacity,
942 if(bufferCapacity>1) {
948 if(bufferCapacity<bufLen) {
978 if(needLen >= bufferCapacity) {
1050 if((bufLen+delta) >= bufferCapacity) {
821 uloc_getKeywordValue(const char* localeID, const char* keywordName, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
918 uloc_setKeywordValue(const char* keywordName, const char* keywordValue, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
[all...]
/external/webkit/Source/JavaScriptCore/
H A Djsc.cpp557 size_t bufferCapacity = 1024; local
559 buffer.resize(bufferCapacity);
562 bufferSize += fread(buffer.data() + bufferSize, 1, bufferCapacity - bufferSize, f);
563 if (bufferSize == bufferCapacity) { // guarantees space for trailing '\0'
564 bufferCapacity *= 2;
565 buffer.resize(bufferCapacity);
/external/webkit/Source/WebCore/plugins/
H A DPluginDatabase.cpp484 size_t bufferCapacity = 1024; local
485 buffer.resize(bufferCapacity);
488 bufferSize += readFromFile(file, buffer.data() + bufferSize, bufferCapacity - bufferSize);
489 if (bufferSize == bufferCapacity) {
490 if (bufferCapacity < maximumPersistentPluginMetadataCacheSize) {
491 bufferCapacity *= 2;
492 buffer.resize(bufferCapacity);

Completed in 171 milliseconds