HomeSort by relevance Sort by last modified time
    Searched defs:ntv (Results 1 - 3 of 3) sorted by null

  /external/icu4c/tools/genprops/
store.c 122 6..15 numeric type and value (ntv)
124 Encoding of numeric type and value in the 10-bit ntv field:
125 ntv type value
133 ntv value
135 0xb0..0x1df fraction ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16
136 0x1e0..0x2ff large int ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
259 int32_t type, value, exp, ntv; local
267 ntv=-1; /* the numeric type and value cannot be encoded if ntv remains -1 *
    [all...]
  /external/icu4c/common/
uprops.cpp 404 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getUnicodeProperties(c, -1)); local
405 return UPROPS_NTV_GET_TYPE(ntv);
uchar.c 602 int32_t ntv; local
604 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props);
606 if(ntv==UPROPS_NTV_NONE) {
608 } else if(ntv<UPROPS_NTV_DIGIT_START) {
610 return ntv-UPROPS_NTV_DECIMAL_START;
611 } else if(ntv<UPROPS_NTV_NUMERIC_START) {
613 return ntv-UPROPS_NTV_DIGIT_START;
614 } else if(ntv<UPROPS_NTV_FRACTION_START) {
616 return ntv-UPROPS_NTV_NUMERIC_START;
617 } else if(ntv<UPROPS_NTV_LARGE_START)
    [all...]

Completed in 43 milliseconds