Lines Matching refs:ntv
390 int32_t ntv; in u_getNumericValue() local
392 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue()
394 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue()
396 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue()
398 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue()
399 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue()
401 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue()
402 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue()
404 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue()
405 } else if(ntv<UPROPS_NTV_LARGE_START) { in u_getNumericValue()
407 int32_t numerator=(ntv>>4)-12; in u_getNumericValue()
408 int32_t denominator=(ntv&0xf)+1; in u_getNumericValue()
410 } else if(ntv<UPROPS_NTV_RESERVED_START) { in u_getNumericValue()
413 int32_t mant=(ntv>>5)-14; in u_getNumericValue()
414 int32_t exp=(ntv&0x1f)+2; in u_getNumericValue()