Home
last modified time | relevance | path

Searched defs:threshold (Results 1 – 9 of 9) sorted by relevance

/lvgl-latest/tests/unity/
Dunity.h171 #define TEST_ASSERT_NOT_EQUAL_INT(threshold, actual) … argument
172 #define TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual) … argument
173 #define TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual) … argument
174 #define TEST_ASSERT_NOT_EQUAL_INT32(threshold, actual) … argument
175 #define TEST_ASSERT_NOT_EQUAL_INT64(threshold, actual) … argument
176 #define TEST_ASSERT_NOT_EQUAL_UINT(threshold, actual) … argument
177 #define TEST_ASSERT_NOT_EQUAL_UINT8(threshold, actual) … argument
178 #define TEST_ASSERT_NOT_EQUAL_UINT16(threshold, actual) … argument
179 #define TEST_ASSERT_NOT_EQUAL_UINT32(threshold, actual) … argument
180 #define TEST_ASSERT_NOT_EQUAL_UINT64(threshold, actual) … argument
[all …]
Dunity_internals.h898 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT(threshold, actual, line, message) Un… argument
899 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual, line, message) Un… argument
900 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual, line, message) Un… argument
901 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT32(threshold, actual, line, message) Un… argument
902 #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT(threshold, actual, line, message) Un… argument
903 #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT8(threshold, actual, line, message) Un… argument
904 #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT16(threshold, actual, line, message) Un… argument
905 #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT32(threshold, actual, line, message) Un… argument
906 #define UNITY_TEST_ASSERT_NOT_EQUAL_HEX8(threshold, actual, line, message) Un… argument
907 #define UNITY_TEST_ASSERT_NOT_EQUAL_HEX16(threshold, actual, line, message) Un… argument
[all …]
Dunity_support.h42 # define TEST_ASSERT_MEM_LEAK_LESS_THAN(prev_usage, threshold) TEST_ASSERT_LESS_OR_EQUAL(threshol… argument
Dunity.c732 void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold, in UnityAssertGreaterOrLessOrEqualNumber()
1052 void UnityAssertGreaterOrLessFloat(const UNITY_FLOAT threshold, in UnityAssertGreaterOrLessFloat()
1279 void UnityAssertGreaterOrLessDouble(const UNITY_DOUBLE threshold, in UnityAssertGreaterOrLessDouble()
/lvgl-latest/src/indev/
Dlv_indev_gesture.c63 void lv_indev_set_pinch_up_threshold(lv_indev_gesture_recognizer_t * recognizer, float threshold) in lv_indev_set_pinch_up_threshold()
78 void lv_indev_set_pinch_down_threshold(lv_indev_gesture_recognizer_t * recognizer, float threshold) in lv_indev_set_pinch_down_threshold()
/lvgl-latest/src/libs/thorvg/
DtvgSwPostEffect.cpp176 auto threshold = (std::min(w, h) < 300) ? 2 : 1; in effectGaussianBlur() local
DtvgLottieModifier.cpp316 auto threshold = 1.0f / fabsf(offset) + 1.0f; in modifyPath() local
DtvgSwFill.cpp86 constexpr float threshold = 0.1f; in _adjustAAMargin() local
/lvgl-latest/scripts/
DLVGLImage.py1129 def rle_compress(self, data: bytearray, blksize: int, threshold=16): argument
1177 def get_nonrepeat_count(self, data: bytearray, blksize: int, threshold): argument