Home | History | Annotate | Download | only in i18n

Lines Matching refs:order

21 /* mask off anything but primary order */
23 /* mask off anything but secondary order */
25 /* mask off anything but tertiary order */
27 /* primary order shift */
29 /* secondary order shift */
35 #define UCOL_PRIMARYORDER(order) (((order) >> 16) & 0xffff)
36 #define UCOL_SECONDARYORDER(order) (((order) & UCOL_SECONDARYORDERMASK)>> UCOL_SECONDARYORDERSHIFT)
37 #define UCOL_TERTIARYORDER(order) ((order) & UCOL_TERTIARYORDERMASK)