Home | History | Annotate | Download | only in cintltst

Lines Matching full:buffersize

664     int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
693 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, 0))
699 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
708 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n");
713 bufferSize = 0;
714 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || U_FAILURE(err) || bufferSize <= 0)
719 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize)
724 if (0 == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err))
730 --bufferSize;
731 if (0 == (col = ucol_safeClone(someCollators[0], 0, &bufferSize, &err)) || err != U_SAFECLONE_ALLOCATED_WARNING)
737 bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
741 if (0 == (col = ucol_safeClone(someCollators[0], 0, &bufferSize, &err)) || err != U_SAFECLONE_ALLOCATED_WARNING)
749 if (0 != ucol_safeClone(0, buffer[0], &bufferSize, &err) || err != U_ILLEGAL_ARGUMENT_ERROR)
758 bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
759 someClonedCollators[0] = ucol_safeClone(col, buffer[0], &bufferSize, &err);
775 bufferSize = 1;
777 ucol_close(ucol_safeClone(someCollators[idx], buffer[idx], &bufferSize, &err));
783 bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
785 someClonedCollators[idx] = ucol_safeClone(someCollators[idx], buffer[idx], &bufferSize, &err);