OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ntv
(Results
1 - 4
of
4
) 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/
uchar.c
390
int32_t
ntv
;
local
392
ntv
=(int32_t)GET_NUMERIC_TYPE_VALUE(props);
394
if(
ntv
==UPROPS_NTV_NONE) {
396
} else if(
ntv
<UPROPS_NTV_DIGIT_START) {
398
return
ntv
-UPROPS_NTV_DECIMAL_START;
399
} else if(
ntv
<UPROPS_NTV_NUMERIC_START) {
401
return
ntv
-UPROPS_NTV_DIGIT_START;
402
} else if(
ntv
<UPROPS_NTV_FRACTION_START) {
404
return
ntv
-UPROPS_NTV_NUMERIC_START;
405
} else if(
ntv
<UPROPS_NTV_LARGE_START)
[
all
...]
uprops.h
79
#define UPROPS_NTV_GET_TYPE(
ntv
) \
80
((
ntv
==UPROPS_NTV_NONE) ? U_NT_NONE : \
81
(
ntv
<UPROPS_NTV_DIGIT_START) ? U_NT_DECIMAL : \
82
(
ntv
<UPROPS_NTV_NUMERIC_START) ? U_NT_DIGIT : \
uprops.cpp
374
int32_t
ntv
=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getUnicodeProperties(c, -1));
local
375
return UPROPS_NTV_GET_TYPE(
ntv
);
Completed in 34 milliseconds