Home | History | Annotate | Download | only in cintltst

Lines Matching full:buffersize

665     int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
694 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, 0))
700 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
709 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n");
714 bufferSize = 0;
715 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || U_FAILURE(err) || bufferSize <= 0)
720 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize)
725 if (0 == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err))
731 --bufferSize;
732 if (0 == (col = ucol_safeClone(someCollators[0], 0, &bufferSize, &err)) || err != U_SAFECLONE_ALLOCATED_WARNING)
738 bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
742 if (0 == (col = ucol_safeClone(someCollators[0], 0, &bufferSize, &err)) || err != U_SAFECLONE_ALLOCATED_WARNING)
750 if (0 != ucol_safeClone(0, buffer[0], &bufferSize, &err) || err != U_ILLEGAL_ARGUMENT_ERROR)
759 bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
760 someClonedCollators[0] = ucol_safeClone(col, buffer[0], &bufferSize, &err);
776 bufferSize = 1;
778 ucol_close(ucol_safeClone(someCollators[idx], buffer[idx], &bufferSize, &err));
784 bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
786 someClonedCollators[idx] = ucol_safeClone(someCollators[idx], buffer[idx], &bufferSize, &err);