OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SLOPE_TAIL_COUNT
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/i18n/
bocsu.cpp
36
*p++=(uint8_t)(SLOPE_START_POS_2+(diff/
SLOPE_TAIL_COUNT
));
37
*p++=(uint8_t)(SLOPE_MIN+diff%
SLOPE_TAIL_COUNT
);
39
p[2]=(uint8_t)(SLOPE_MIN+diff%
SLOPE_TAIL_COUNT
);
40
diff/=
SLOPE_TAIL_COUNT
;
41
p[1]=(uint8_t)(SLOPE_MIN+diff%
SLOPE_TAIL_COUNT
);
42
*p=(uint8_t)(SLOPE_START_POS_3+(diff/
SLOPE_TAIL_COUNT
));
45
p[3]=(uint8_t)(SLOPE_MIN+diff%
SLOPE_TAIL_COUNT
);
46
diff/=
SLOPE_TAIL_COUNT
;
47
p[2]=(uint8_t)(SLOPE_MIN+diff%
SLOPE_TAIL_COUNT
);
48
diff/=
SLOPE_TAIL_COUNT
;
[
all
...]
bocsu.h
89
#define
SLOPE_TAIL_COUNT
(SLOPE_MAX-SLOPE_MIN+1)
101
* The sum must be <=
SLOPE_TAIL_COUNT
.
126
#define SLOPE_REACH_POS_2 (SLOPE_LEAD_2*
SLOPE_TAIL_COUNT
+(SLOPE_LEAD_2-1))
130
#define SLOPE_REACH_POS_3 (SLOPE_LEAD_3*
SLOPE_TAIL_COUNT
*
SLOPE_TAIL_COUNT
+(SLOPE_LEAD_3-1)*
SLOPE_TAIL_COUNT
+(
SLOPE_TAIL_COUNT
-1))
Completed in 57 milliseconds