Home
last modified time | relevance | path

Searched refs:ilength (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/dsp/
Dfilters_mips_dsp_r2.c39 const int ilength = (int)(LENGTH); \
99 : [length]"r"(ilength) \
113 const int ilength = (int)(LENGTH); \
163 : [length]"r"(ilength) \
/external/python/cpython3/Modules/cjkcodecs/
D_codecs_iso2022.c845 Py_ssize_t ilength = *length; in jisx0213_2000_1_encoder_paironly() local
848 switch (ilength) { in jisx0213_2000_1_encoder_paironly()
892 Py_ssize_t ilength = *length; in jisx0213_2004_1_encoder_paironly() local
895 switch (ilength) { in jisx0213_2004_1_encoder_paironly()
/external/python/cpython2/Modules/cjkcodecs/
D_codecs_iso2022.c837 Py_ssize_t ilength = *length; in jisx0213_2000_1_encoder_paironly() local
840 switch (ilength) { in jisx0213_2000_1_encoder_paironly()
884 Py_ssize_t ilength = *length; in jisx0213_2004_1_encoder_paironly() local
887 switch (ilength) { in jisx0213_2004_1_encoder_paironly()
/external/icu/icu4c/source/i18n/
DdecNumber.cpp7593 Int ilength=dn->digits+dn->exponent; /* integral length */ local
7641 if (ilength<11) {
7644 for (; got<ilength; up++) {
7648 if (ilength==10) { /* need to check for wrap */
7649 if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11;
7651 else if (neg && theInt>1999999997) ilength=11;
7652 else if (!neg && theInt>999999999) ilength=11;
7653 if (ilength==11) theInt=save; /* restore correct low bit */
7657 if (ilength>10) { /* too big */