Lines Matching refs:result

62     uint32_t result = 0;  in test_txt_get_encoded_next_should_decode_valid_ascii()  local
64 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_should_decode_valid_ascii()
66 TEST_ASSERT_EQUAL_UINT32((uint32_t) 'H', result); in test_txt_get_encoded_next_should_decode_valid_ascii()
72 uint32_t result = 0; in test_txt_get_encoded_next_detect_valid_2_byte_input() local
74 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_detect_valid_2_byte_input()
76 TEST_ASSERT_EQUAL_UINT32(241, result); in test_txt_get_encoded_next_detect_valid_2_byte_input()
82 uint32_t result = 0; in test_txt_get_encoded_next_detect_invalid_2_byte_input() local
84 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_detect_invalid_2_byte_input()
86 TEST_ASSERT_EQUAL_UINT32(0, result); in test_txt_get_encoded_next_detect_invalid_2_byte_input()
92 uint32_t result = 0; in test_txt_get_encoded_next_detect_valid_3_byte_input() local
94 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_detect_valid_3_byte_input()
96 TEST_ASSERT_EQUAL_UINT32(8353, result); in test_txt_get_encoded_next_detect_valid_3_byte_input()
102 uint32_t result = 0; in test_txt_get_encoded_next_detect_invalid_3_byte_input() local
104 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_detect_invalid_3_byte_input()
106 TEST_ASSERT_EQUAL_UINT32(0, result); in test_txt_get_encoded_next_detect_invalid_3_byte_input()
112 uint32_t result = 0; in test_txt_get_encoded_next_detect_valid_4_byte_input() local
114 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_detect_valid_4_byte_input()
116 TEST_ASSERT_EQUAL_UINT32(66364, result); in test_txt_get_encoded_next_detect_valid_4_byte_input()
122 uint32_t result = 0; in test_txt_get_encoded_next_detect_invalid_4_byte_input() local
124 result = lv_text_encoded_next(msg, NULL); in test_txt_get_encoded_next_detect_invalid_4_byte_input()
126 TEST_ASSERT_EQUAL_UINT32(0, result); in test_txt_get_encoded_next_detect_invalid_4_byte_input()