/lvgl-latest/src/libs/thorvg/ |
D | tvgSwMath.cpp | 101 int64_t mathMultiply(int64_t a, int64_t b) in mathMultiply() 114 int64_t c = (a * b + 0x8000L) >> 16; in mathMultiply() 119 int64_t mathDivide(int64_t a, int64_t b) in mathDivide() 132 int64_t q = b > 0 ? ((a << 16) + (b >> 1)) / b : 0x7FFFFFFFL; in mathDivide() 137 int64_t mathMulDiv(int64_t a, int64_t b, int64_t c) in mathMulDiv() 154 int64_t d = c > 0 ? (a * b + (c >> 1)) / c : 0x7FFFFFFFL; in mathMulDiv()
|
D | tvgLottieParserHandler.h | 112 bool Int64(int64_t i) in Int64() 119 bool Uint64(int64_t u) in Uint64()
|
D | tvgSwCommon.h | 485 int64_t mathMultiply(int64_t a, int64_t b); 486 int64_t mathDivide(int64_t a, int64_t b); 487 int64_t mathMulDiv(int64_t a, int64_t b, int64_t c);
|
/lvgl-latest/src/libs/thorvg/rapidjson/msinttypes/ |
D | stdint.h | 135 typedef signed __int64 int64_t; typedef 143 typedef int64_t int_least64_t; 153 typedef int64_t int_fast64_t; 169 typedef int64_t intmax_t; 184 #define INT64_MIN ((int64_t)_I64_MIN)
|
/lvgl-latest/tests/unity/ |
D | unity_support.h | 42 …ge, threshold) TEST_ASSERT_LESS_OR_EQUAL(threshold, LV_ABS((int64_t)(prev_usage) - (int64_t)lv_te…
|
/lvgl-latest/src/misc/ |
D | lv_math.c | 114 int64_t ret; in do_cubic_bezier() 132 int64_t d; /*slope value at specified t*/ in lv_cubic_bezier() 172 d = ((int64_t)xs * (1L << CUBIC_PRECISION_BITS)) / d; in lv_cubic_bezier() 391 int64_t lv_pow(int64_t base, int8_t exp) in lv_pow() 393 int64_t result = 1; in lv_pow()
|
D | lv_math.h | 129 int64_t lv_pow(int64_t base, int8_t exp);
|
D | lv_types.h | 70 typedef int64_t lv_intptr_t;
|
D | lv_lru.c | 245 if(item->access_count < min_access_count || (int64_t) min_access_count == -1) { in lv_lru_remove_lru_item()
|
/lvgl-latest/src/drivers/display/drm/ |
D | lv_linux_drm.h | 34 void lv_linux_drm_set_file(lv_display_t * disp, const char * file, int64_t connector_id);
|
D | lv_linux_drm.c | 90 static int drm_find_connector(drm_dev_t * drm_dev, int64_t connector_id); 92 static int drm_setup(drm_dev_t * drm_dev, const char * device_path, int64_t connector_id, unsigned … 136 void lv_linux_drm_set_file(lv_display_t * disp, const char * file, int64_t connector_id) in lv_linux_drm_set_file() 460 static int drm_find_connector(drm_dev_t * drm_dev, int64_t connector_id) in drm_find_connector() 648 static int drm_setup(drm_dev_t * drm_dev, const char * device_path, int64_t connector_id, unsigned … in drm_setup()
|
/lvgl-latest/tests/makefile_uefi/ |
D | efi.h | 67 typedef INT64 int64_t; typedef 154 _Static_assert(sizeof(int64_t) == 8, "Size check for 'int64_t' failed.");
|
/lvgl-latest/src/drivers/uefi/ |
D | lv_uefi_std_wrapper.h | 23 typedef INT64 int64_t; typedef
|
/lvgl-latest/src/libs/ffmpeg/ |
D | lv_ffmpeg.c | 83 static int64_t ffmpeg_lvfs_seek(void * ptr, int64_t pos, int whence); 635 int period = 1000 * (int64_t)ffmpeg_ctx->video_stream->avg_frame_rate.den in ffmpeg_get_frame_refr_period() 695 static int64_t ffmpeg_lvfs_seek(void * ptr, int64_t pos, int whence) in ffmpeg_lvfs_seek()
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | document.h | 566 struct TypeHelper<ValueType, int64_t> { 568 static int64_t Get(const ValueType& v) { return v.GetInt64(); } 569 static ValueType& Set(ValueType& v, int64_t data) { return v.SetInt64(data); } 570 …static ValueType& Set(ValueType& v, int64_t data, typename ValueType::AllocatorType&) { return v.S… 804 explicit GenericValue(int64_t i64) RAPIDJSON_NOEXCEPT : data_() { 814 else if (i64 >= static_cast<int64_t>(RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x80000000))) 1137 int64_t i = GetInt64(); 1139 return (d >= static_cast<double>((std::numeric_limits<int64_t>::min)())) 1140 && (d < static_cast<double>((std::numeric_limits<int64_t>::max)())) 1141 && (i == static_cast<int64_t>(d)); [all …]
|
D | writer.h | 186 bool Int64(int64_t i64) { Prefix(kNumberType); return EndValue(WriteInt64(i64)); } in Int64() 331 bool WriteInt64(int64_t i64) { in WriteInt64() 530 inline bool Writer<StringBuffer>::WriteInt64(int64_t i64) { in WriteInt64()
|
D | schema.h | 117 inline void PrintMethodData(const char* method, int64_t i) { in PrintMethodData() 283 virtual void NotMultipleOf(int64_t actual, const SValue& expected) = 0; 286 virtual void AboveMaximum(int64_t actual, const SValue& expected, bool exclusive) = 0; 289 virtual void BelowMinimum(int64_t actual, const SValue& expected, bool exclusive) = 0; 346 …bool Int64(int64_t i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); } in Int64() 350 if (d < 0) n.u.i = static_cast<int64_t>(d); in Double() 399 int64_t i; 1011 RAPIDJSON_SCHEMA_PRINT(Method, "Schema::Int", (int64_t)i); in Int() 1024 bool Int64(Context& context, int64_t i) const { in Int64() 1534 bool CheckInt(Context& context, int64_t i) const { in CheckInt() [all …]
|
D | prettywriter.h | 99 …bool Int64(int64_t i64) { PrettyPrefix(kNumberType); return Base::EndValue(Base::WriteInt64(i6… in Int64()
|
D | reader.h | 208 bool Int64(int64_t) { return static_cast<Override&>(*this).Default(); } in Int64() 1734 cont = handler.Int64(static_cast<int64_t>(~i64 + 1)); in ParseNumber()
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | strtod.h | 148 int64_t error = (remaining == 0) ? 0 : kUlp / 2; in StrtodDiyFp()
|
D | itoa.h | 294 inline char* i64toa(int64_t value, char* buffer) { in i64toa()
|
/lvgl-latest/src/widgets/spinbox/ |
D | lv_spinbox.c | 99 const int64_t max_val = lv_pow(10, digit_count); in lv_spinbox_set_digit_format()
|
/lvgl-latest/src/drivers/windows/ |
D | lv_windows_context.c | 138 due_time.QuadPart = -((int64_t)ms) * 1000 * 10; in lv_windows_delay_callback()
|