Lines Matching defs:b3_tbl
467 uint16_t b3_tbl;
514 b3_tbl = u8_toupper_b3_tbl[uv][b2][b3].tbl_id;
515 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
518 start_id = u8_toupper_b4_tbl[uv][b3_tbl][b4];
519 end_id = u8_toupper_b4_tbl[uv][b3_tbl][b4 + 1];
531 b3_tbl = u8_tolower_b3_tbl[uv][b2][b3].tbl_id;
532 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
535 start_id = u8_tolower_b4_tbl[uv][b3_tbl][b4];
536 end_id = u8_tolower_b4_tbl[uv][b3_tbl][b4 + 1];
755 uint16_t b3_tbl;
861 b3_tbl = u8_decomp_b3_tbl[uv][b2][b3].tbl_id;
862 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
866 * If b3_tbl is bigger than or equal to U8_16BIT_TABLE_INDICATOR
870 if (b3_tbl >= U8_16BIT_TABLE_INDICATOR) {
871 b3_tbl -= U8_16BIT_TABLE_INDICATOR;
872 start_id = u8_decomp_b4_16bit_tbl[uv][b3_tbl][b4];
873 end_id = u8_decomp_b4_16bit_tbl[uv][b3_tbl][b4 + 1];
876 start_id = u8_decomp_b4_tbl[uv][b3_tbl][b4];
878 end_id = u8_decomp_b4_tbl[uv][b3_tbl][b4 + 1];
979 uint16_t b3_tbl;
1015 b3_tbl = u8_composition_b3_tbl[uv][b2][b3].tbl_id;
1016 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
1019 if (b3_tbl >= U8_16BIT_TABLE_INDICATOR) {
1020 b3_tbl -= U8_16BIT_TABLE_INDICATOR;
1021 start_id = u8_composition_b4_16bit_tbl[uv][b3_tbl][b4];
1022 end_id = u8_composition_b4_16bit_tbl[uv][b3_tbl][b4 + 1];
1025 start_id = u8_composition_b4_tbl[uv][b3_tbl][b4];
1027 end_id = u8_composition_b4_tbl[uv][b3_tbl][b4 + 1];