Lines Matching refs:kern2
244 lv_font_fmt_txt_kern_classes_t * kern2 = (lv_font_fmt_txt_kern_classes_t *)dsc2->kern_dsc; in compare_fonts() local
245 if(kern1 != NULL && kern2 != NULL) { in compare_fonts()
246 … TEST_ASSERT_EQUAL_INT_MESSAGE(kern1->right_class_cnt, kern2->right_class_cnt, "right_class_cnt"); in compare_fonts()
247 … TEST_ASSERT_EQUAL_INT_MESSAGE(kern1->left_class_cnt, kern2->left_class_cnt, "left_class_cnt"); in compare_fonts()
251 (uint8_t *)kern2->left_class_mapping, in compare_fonts()
257 (uint8_t *)kern2->right_class_mapping, in compare_fonts()
263 (uint8_t *)kern2->class_pair_values, in compare_fonts()
268 TEST_ASSERT_EQUAL_PTR_MESSAGE(kern1, kern2, "kern"); in compare_fonts()
273 lv_font_fmt_txt_kern_pair_t * kern2 = (lv_font_fmt_txt_kern_pair_t *)dsc2->kern_dsc; in compare_fonts() local
274 if(kern1 != NULL && kern2 != NULL) { in compare_fonts()
275 … TEST_ASSERT_EQUAL_INT_MESSAGE(kern1->glyph_ids_size, kern2->glyph_ids_size, "glyph_ids_size"); in compare_fonts()
276 TEST_ASSERT_EQUAL_INT_MESSAGE(kern1->pair_cnt, kern2->pair_cnt, "pair_cnt"); in compare_fonts()
287 … TEST_ASSERT_EQUAL_UINT8_ARRAY_MESSAGE(kern1->glyph_ids, kern2->glyph_ids, ids_size, "glyph_ids"); in compare_fonts()
290 (uint8_t *) kern2->values, in compare_fonts()