Lines Matching defs:b3_tbl
468 uint16_t b3_tbl;
515 b3_tbl = u8_toupper_b3_tbl[uv][b2][b3].tbl_id;
516 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
519 start_id = u8_toupper_b4_tbl[uv][b3_tbl][b4];
520 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];
752 uint16_t b3_tbl;
858 b3_tbl = u8_decomp_b3_tbl[uv][b2][b3].tbl_id;
859 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
863 * If b3_tbl is bigger than or equal to U8_16BIT_TABLE_INDICATOR
867 if (b3_tbl >= U8_16BIT_TABLE_INDICATOR) {
868 b3_tbl -= U8_16BIT_TABLE_INDICATOR;
869 start_id = u8_decomp_b4_16bit_tbl[uv][b3_tbl][b4];
870 end_id = u8_decomp_b4_16bit_tbl[uv][b3_tbl][b4 + 1];
872 start_id = u8_decomp_b4_tbl[uv][b3_tbl][b4];
873 end_id = u8_decomp_b4_tbl[uv][b3_tbl][b4 + 1];
974 uint16_t b3_tbl;
1010 b3_tbl = u8_composition_b3_tbl[uv][b2][b3].tbl_id;
1011 if (b3_tbl == U8_TBL_ELEMENT_NOT_DEF)
1014 if (b3_tbl >= U8_16BIT_TABLE_INDICATOR) {
1015 b3_tbl -= U8_16BIT_TABLE_INDICATOR;
1016 start_id = u8_composition_b4_16bit_tbl[uv][b3_tbl][b4];
1017 end_id = u8_composition_b4_16bit_tbl[uv][b3_tbl][b4 + 1];
1019 start_id = u8_composition_b4_tbl[uv][b3_tbl][b4];
1020 end_id = u8_composition_b4_tbl[uv][b3_tbl][b4 + 1];