Lines Matching refs:expectedLen
392 int32_t expectedLen = 0;
396 expectedLen = ucol_getSortKey(coll, source[i], -1, currBuffer, bufferLen);
397 if (expectedLen > bufferLen) {
399 currBuffer = (char*)malloc(expectedLen);
401 currBuffer = (char*)realloc(currBuffer, expectedLen);
404 bufferLen = ucol_getSortKey(coll, source[i], -1, currBuffer, expectedLen);
509 int32_t length, expectedLen;
528 expectedLen = ucol_getSortKey(coll, s[i], -1,temp2,length );
529 if (expectedLen > length) {
531 temp2 =(char*)malloc(expectedLen);
533 temp2 =(char*)realloc(temp2, expectedLen);
535 length =ucol_getSortKey(coll, s[i], -1, temp2, expectedLen);