Searched refs:cmaps1 (Results 1 – 1 of 1) sorted by relevance
/lvgl-latest/tests/src/test_cases/ |
D | test_font_loader.c | 206 lv_font_fmt_txt_cmap_t * cmaps1 = (lv_font_fmt_txt_cmap_t *)&dsc1->cmaps[i]; in compare_fonts() local 209 TEST_ASSERT_EQUAL_INT_MESSAGE(cmaps1->range_start, cmaps2->range_start, "range_start"); in compare_fonts() 210 TEST_ASSERT_EQUAL_INT_MESSAGE(cmaps1->range_length, cmaps2->range_length, "range_length"); in compare_fonts() 211 … TEST_ASSERT_EQUAL_INT_MESSAGE(cmaps1->glyph_id_start, cmaps2->glyph_id_start, "glyph_id_start"); in compare_fonts() 212 TEST_ASSERT_EQUAL_INT_MESSAGE(cmaps1->type, cmaps2->type, "type"); in compare_fonts() 213 TEST_ASSERT_EQUAL_INT_MESSAGE(cmaps1->list_length, cmaps2->list_length, "list_length"); in compare_fonts() 215 if(cmaps1->unicode_list != NULL && cmaps2->unicode_list != NULL) { in compare_fonts() 216 TEST_ASSERT_TRUE_MESSAGE(cmaps1->unicode_list && cmaps2->unicode_list, "unicode_list"); in compare_fonts() 219 (uint8_t *)cmaps1->unicode_list, in compare_fonts() 221 sizeof(uint16_t) * cmaps1->list_length, in compare_fonts() [all …]
|