/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_weather.h | 50 void lv_demo_smartwatch_home_set_weather(int temp, const lv_img_dsc_t * icon); 68 void lv_demo_smartwatch_weather_add_daily(int day, int temp, int id); 80 void lv_demo_smartwatch_weather_add_hourly(int hour, int id, int temp, int humidity, int wind, int …
|
D | lv_demo_smartwatch.h | 203 void lv_demo_smartwatch_set_weather(int temp, uint8_t icon, bool day, int hour, int minute, const c… 221 void lv_demo_smartwatch_weather_add_daily(int day, int temp, int id); 233 void lv_demo_smartwatch_weather_add_hourly(int hour, int id, int temp, int humidity, int wind, int …
|
D | lv_demo_smartwatch_weather.c | 104 void lv_demo_smartwatch_set_weather(int temp, uint8_t icon, bool day, int hour, int minute, const c… in lv_demo_smartwatch_set_weather() argument 108 lv_label_set_text_fmt(weather_current_temp, "%d°C", temp); in lv_demo_smartwatch_set_weather() 113 lv_demo_smartwatch_home_set_weather(temp, get_weather_icon(icon, day)); in lv_demo_smartwatch_set_weather() 128 void lv_demo_smartwatch_weather_add_daily(int day, int temp, int id) in lv_demo_smartwatch_weather_add_daily() argument 175 lv_label_set_text_fmt(label, "%d°C", temp); in lv_demo_smartwatch_weather_add_daily() 181 void lv_demo_smartwatch_weather_add_hourly(int hour, int id, int temp, int humidity, int wind, int … in lv_demo_smartwatch_weather_add_hourly() argument 221 lv_label_set_text_fmt(temp_label, info ? "Temperature" : "%d°C", temp); in lv_demo_smartwatch_weather_add_hourly()
|
D | lv_demo_smartwatch_home.h | 84 void lv_demo_smartwatch_home_set_weather(int temp, const lv_img_dsc_t * icon);
|
D | lv_demo_smartwatch_home.c | 168 void lv_demo_smartwatch_home_set_weather(int temp, const lv_img_dsc_t * icon) in lv_demo_smartwatch_home_set_weather() argument 170 lv_label_set_text_fmt(weather_temperature, "%d°C", temp); in lv_demo_smartwatch_home_set_weather()
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite_matrix.c | 68 vg_lite_matrix_t temp; in multiply() local 76 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in multiply() 84 memcpy(matrix, &temp, sizeof(vg_lite_float_t) * 9); in multiply() 86 memcpy(matrix, &temp, sizeof(temp)); in multiply()
|
D | vg_lite_tvg.cpp | 2970 vg_lite_matrix_t temp; in vg_lite_matrix_multiply() local 2978 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in vg_lite_matrix_multiply() 2985 lv_memcpy(matrix->m, &temp.m, sizeof(temp.m)); in vg_lite_matrix_multiply()
|
/lvgl-latest/examples/widgets/bar/ |
D | lv_example_bar_3.c | 4 static void set_temp(void * bar, int32_t temp) in set_temp() argument 6 lv_bar_set_value(bar, temp, LV_ANIM_ON); in set_temp()
|
/lvgl-latest/src/libs/qrcode/ |
D | qrcodegen.c | 874 int temp = calcSegmentBitLength(mode, numChars); in qrcodegen_calcSegmentBufferSize() local 875 if(temp == -1) in qrcodegen_calcSegmentBufferSize() 877 LV_ASSERT(0 <= temp && temp <= INT16_MAX); in qrcodegen_calcSegmentBufferSize() 878 return ((size_t)temp + 7) / 8; in qrcodegen_calcSegmentBufferSize() 985 const char * temp = strchr(ALPHANUMERIC_CHARSET, *text); in qrcodegen_makeAlphanumeric() local 986 LV_ASSERT(temp != NULL); in qrcodegen_makeAlphanumeric() 987 accumData = accumData * 45 + (unsigned int)(temp - ALPHANUMERIC_CHARSET); in qrcodegen_makeAlphanumeric() 1069 static const int temp[] = {10, 12, 14}; in numCharCountBits() local 1070 return temp[i]; in numCharCountBits() 1073 static const int temp[] = { 9, 11, 13}; in numCharCountBits() local [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieLoader.cpp | 301 auto temp = strdup(slot); in override() local 304 LottieParser parser(temp, dirName); in override() 318 free(temp); in override()
|
D | tvgSwRle.cpp | 772 auto temp = clipSpans; in _intersectSpansRegion() local 773 while(temp < clipEnd && outSpansCnt > 0 && temp->y == clipSpans->y) { in _intersectSpansRegion() 776 auto cx1 = temp->x; in _intersectSpansRegion() 777 auto cx2 = cx1 + temp->len; in _intersectSpansRegion() 781 ++temp; in _intersectSpansRegion() 790 out->y = temp->y; in _intersectSpansRegion() 792 out->coverage = (uint8_t)(((spans->coverage * temp->coverage) + 0xff) >> 8); in _intersectSpansRegion() 796 ++temp; in _intersectSpansRegion()
|
D | tvgLottieBuilder.cpp | 1084 auto temp = (*s)->style.scale(frameNo); in updateText() local 1085 scaling.x *= temp.x * 0.01f; in updateText() 1086 scaling.y *= temp.y * 0.01f; in updateText()
|
/lvgl-latest/demos/vector_graphic/ |
D | lv_demo_vector_graphic.c | 205 lv_fpoint_t temp = {p.x + 50, p.y}; in draw_arc() local 206 lv_vector_path_line_to(path, &temp); in draw_arc()
|
/lvgl-latest/src/libs/expat/ |
D | xmlparse.c | 2002 void *const temp = XML_GetBuffer(parser, nLeftOver); in XML_Parse() local 2007 if (temp == NULL) { in XML_Parse() 2671 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); in storeRawNames() local 2672 if (temp == NULL) in storeRawNames() 2678 tag->name.str = (XML_Char *)temp; in storeRawNames() 2684 = (XML_Char *)temp + (tag->name.localPart - (XML_Char *)tag->buf); in storeRawNames() 2685 tag->buf = temp; in storeRawNames() 2686 tag->bufEnd = temp + bufSize; in storeRawNames() 2687 rawNameBuf = temp + nameLen; in storeRawNames() 3027 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); in doContent() local [all …]
|
/lvgl-latest/tests/src/test_cases/draw/ |
D | test_draw_vector.c | 116 lv_fpoint_t temp = {p.x + 50, p.y}; in draw_shapes() local 117 lv_vector_path_line_to(path, &temp); in draw_shapes()
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_utils.c | 1131 vg_lite_matrix_t temp; in lv_vg_lite_matrix_multiply() local 1140 temp.m[row][column] = (m[row][0] * mult->m[0][column]) in lv_vg_lite_matrix_multiply() 1147 *matrix = temp; in lv_vg_lite_matrix_multiply()
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | document.h | 926 GenericValue temp; 927 temp.RawAssign(rhs); 929 RawAssign(temp); 991 GenericValue temp; 992 temp.RawAssign(*this); 994 other.RawAssign(temp);
|
/lvgl-latest/docs/details/integration/os/yocto/ |
D | lvgl_recipe.rst | 272 ├── temp/ 277 This folder is very important and helps a lot during debug phases. The ``temp``
|
/lvgl-latest/src/draw/sw/blend/neon/ |
D | lv_blend_neon.S | 25 @ d26~29 : temp
|
/lvgl-latest/src/libs/lodepng/ |
D | lodepng.c | 502 size_t temp; in LodePNGBitReader_init() local 509 if(lodepng_addofl(reader->bitsize, 64u, &temp)) return 105; in LodePNGBitReader_init()
|