Searched refs:dstSize (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunistr_cnv.cpp132 uint32_t dstSize) const {
133 return extract(start, length, target, dstSize, 0);
143 uint32_t dstSize,
147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
154 // We need to cast dstSize to int32_t for all subsequent code.
156 // Also, dstSize==0xffffffff means "unlimited" but if we use target+dstSize
160 if(dstSize < 0x7fffffff) {
162 capacity = (int32_t)dstSize;
140 extract(int32_t start, int32_t length, char *target, uint32_t dstSize, const char *codepage) const argument
[all...]
H A Dunistr.cpp854 char *target, uint32_t dstSize) const {
856 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
859 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff);
/macosx-10.10.1/libauto-186/
H A DThread.cpp288 size_t dstSize = dstSubzone->size(dst_q); local
289 if (src > dstBase && src < ((char *)dstBase + dstSize))
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclCmdAH.c2023 int dstSize = MAX_FLOAT_SIZE;
2364 if (size > dstSize) {
2369 dstSize = size;
2004 int dstSize = MAX_FLOAT_SIZE; local

Completed in 124 milliseconds