Home | History | Annotate | Download | only in cintltst

Lines Matching defs:used

123     (void)a;     /* Suppress set but not used warning. */
1847 int32_t used;
1859 used = unum_getTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, 64, &status);
1860 unum_setTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, used, &status);
1865 used = unum_formatDouble(nf, -1234.5, ubuffer, 64, NULL, &status);
1866 if (U_FAILURE(status) || 64 < used) {
1873 used = unum_formatDouble(nf, 1234.5, ubuffer, 64, NULL, &status);
1874 if (U_FAILURE(status) || 64 < used) {
2349 (void)ulen; // Suppress variable not used warning.