Home | History | Annotate | Download | only in common

Lines Matching refs:ntv

76     /** Fractions: ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16 */
80 * ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
86 * ((ntv>>2)-0xbf) * 60^((ntv&3)+1) = (1..9)*(60^1..60^4)
95 #define UPROPS_NTV_GET_TYPE(ntv) \
96 ((ntv==UPROPS_NTV_NONE) ? U_NT_NONE : \
97 (ntv<UPROPS_NTV_DIGIT_START) ? U_NT_DECIMAL : \
98 (ntv<UPROPS_NTV_NUMERIC_START) ? U_NT_DIGIT : \