/lvgl-latest/src/libs/thorvg/ |
D | tvgArray.h | 40 uint32_t count = 0; member 58 if (count + 1 > reserved) { in push() 59 reserved = count + (count + 2) / 2; in push() 62 data[count++] = element; in push() 67 if (rhs.count == 0) return; in push() 68 grow(rhs.count); in push() 69 memcpy(data + count, rhs.data, rhs.count * sizeof(T)); in push() 70 count += rhs.count; in push() 84 return reserve(count + size); in grow() 109 return data + count; in end() [all …]
|
D | tvgLottieProperty.h | 168 inPts.count = pathset->ptsCnt; in _copy() 179 inCmds.count = pathset->cmdsCnt; in _copy() 189 int32_t high = int32_t(frames->count) - 1; in _bsearch() 208 if (key == frames->count - 1) return key; in _nearest() 220 if (key >= (int32_t) frames->count) key = (int32_t)(frames->count - 1); in _frameNo() 243 …return fmodf(frameNo, (*frames)[frames->count - 1 - exp->loop.key].no - frames->first().no) + fram… in _loop() 246 auto range = (*frames)[frames->count - 1 - exp->loop.key].no - frames->first().no; in _loop() 289 return frames ? frames->count : 1; in frameCnt() 300 if (frames->count + 1 >= frames->reserved) { in newFrame() 302 frames->grow(frames->count + 2); in newFrame() [all …]
|
D | tvgSvgPath.cpp | 273 int count = 0; in _numberCount() local 281 count = 2; in _numberCount() 288 count = 6; in _numberCount() 295 count = 1; in _numberCount() 302 count = 4; in _numberCount() 307 count = 7; in _numberCount() 313 return count; in _numberCount() 317 …nd(Array<PathCommand>* cmds, Array<Point>* pts, char cmd, float* arr, int count, Point* cur, Point… in _processCommand() argument 326 for (int i = 0; i < count - 1; i += 2) { in _processCommand() 386 if ((cmds->count > 1) && (cmds->last() == PathCommand::CubicTo) && in _processCommand() [all …]
|
D | tvgTaskScheduler.cpp | 148 for (uint32_t x = 0; x < threads.count * 2; ++x) { in run() 149 if (taskQueues[(i + x) % threads.count]->tryPop(&task)) { in run() 163 if (threads.count > 0 && _async) { in request() 166 for (uint32_t n = 0; n < threads.count; ++n) { in request() 167 if (taskQueues[(i + n) % threads.count]->tryPush(task)) return; in request() 169 taskQueues[i % threads.count]->push(task); in request() 178 return threads.count; in threadCnt()
|
D | tvgLottieModel.cpp | 189 uint32_t LottieGradient::populate(ColorStop& color, size_t count) in populate() argument 193 uint32_t alphaCnt = (color.input->count - (count * 4)) / 2; in populate() 194 Array<Fill::ColorStop> output(count + alphaCnt); in populate() 196 uint32_t clast = count * 4; in populate() 197 if (clast > color.input->count) clast = color.input->count; in populate() 202 for (uint32_t i = 0; i < color.input->count; ++i) { in populate() 203 if (cidx == clast || aidx == color.input->count) break; in populate() 218 if (output.count > 0) { in populate() 227 if (output.count > 0) { in populate() 248 cs.a = (output.count > 0) ? output.last().a : 255; in populate() [all …]
|
D | tvgLottieModifier.cpp | 144 state.movetoOutIndex = outPts.count; in line() 182 auto ptsCnt = outPts.count; in modifyPath() 188 startIndex = outPts.count; in modifyPath() 226 for (auto i = ptsCnt; i < outPts.count; ++i) { in modifyPath() 242 outCmds.grow((uint32_t)(1.5 * inCmds.count)); in modifyPolystar() 243 outPts.grow((uint32_t)(4.5 * inCmds.count)); in modifyPolystar() 249 for (uint32_t i = 1 + start; i < inPts.count; i += 6) { in modifyPolystar() 252 auto& next = (i < inPts.count - start) ? inPts[i + 4] : inPts[2]; in modifyPolystar() 253 auto& nextCtrl = (i < inPts.count - start) ? inPts[i + 5] : inPts[3]; in modifyPolystar() 270 outCmds.grow(2 * inCmds.count); in modifyPolystar() [all …]
|
D | tvgSwStroke.cpp | 73 auto count = border->ptsCnt; in _borderClose() local 76 if (count <= start + 1U) { in _borderClose() 81 border->ptsCnt = --count; in _borderClose() 82 border->pts[start] = border->pts[count]; in _borderClose() 87 auto pt2 = border->pts + count - 1; in _borderClose() 99 auto tag2 = border->tags + count - 1; in _borderClose() 111 border->tags[count - 1] |= SW_STROKE_TAG_END; in _borderClose() 739 auto count = border->ptsCnt; in _getCounts() local 745 while (count > 0) { in _getCounts() 755 --count; in _getCounts() [all …]
|
D | tvgSwShape.cpp | 37 outline.cntrs.push(outline.pts.count - 1); in _outlineBegin() 48 outline.cntrs.push(outline.pts.count - 1); in _outlineEnd() 88 if (outline.cntrs.count > 0) i = outline.cntrs.last() + 1; in _outlineClose() 92 if (outline.pts.count == i) return false; in _outlineClose() 96 outline.cntrs.push(outline.pts.count - 1); in _outlineClose() 281 auto cmdCnt = rshape->path.cmds.count - shiftCmds; in _outlineLength() 283 auto ptsCnt = rshape->path.pts.count - shiftPts; in _outlineLength() 332 auto cmdCnt = rshape->path.cmds.count; in _genDashOutline() 334 auto ptsCnt = rshape->path.pts.count; in _genDashOutline() 426 if (outline->pts.count != 5) return false; in _axisAlignedRect() [all …]
|
D | tvgStr.cpp | 122 int count = 0; in strToFloat() local 127 for (; isdigit(*iter); iter++, count++) { in strToFloat() 128 if (count < 19) { in strToFloat()
|
D | tvgSvgCssStyle.cpp | 141 if (from->stroke.dash.array.count > 0) { in _copyStyle() 143 to->stroke.dash.array.reserve(from->stroke.dash.array.count); in _copyStyle() 144 for (uint32_t i = 0; i < from->stroke.dash.array.count; ++i) { in _copyStyle() 218 for (uint32_t i = 0; i < style->child.count; ++i, ++child) { in cssFindStyleNode() 232 for (uint32_t i = 0; i < style->child.count; ++i, ++child) { in cssFindStyleNode() 243 if (doc->child.count > 0) { in cssUpdateStyle() 245 for (uint32_t i = 0; i < doc->child.count; ++i, ++child) { in cssUpdateStyle() 257 for (uint32_t i = 0; i < postponeds.count; ++i) { in cssApplyStyleToPostponeds()
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | stringbuffer.h | 68 void Reserve(size_t count) { stack_.template Reserve<Ch>(count); } in Reserve() argument 69 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() argument 70 Ch* PushUnsafe(size_t count) { return stack_.template PushUnsafe<Ch>(count); } in PushUnsafe() argument 71 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop() argument 100 inline void PutReserve(GenericStringBuffer<Encoding, Allocator>& stream, size_t count) { in PutReserve() argument 101 stream.Reserve(count); in PutReserve()
|
D | memorybuffer.h | 47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() 48 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop()
|
D | stream.h | 84 inline void PutReserve(Stream& stream, size_t count) { in PutReserve() argument 86 (void)count; in PutReserve() 205 Ch* Push(size_t count) { Ch* begin = dst_; dst_ += count; return begin; } 206 void Pop(size_t count) { dst_ -= count; }
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | stack.h | 116 RAPIDJSON_FORCEINLINE void Reserve(size_t count = 1) { 118 … if (RAPIDJSON_UNLIKELY(static_cast<std::ptrdiff_t>(sizeof(T) * count) > (stackEnd_ - stackTop_))) 119 Expand<T>(count); 123 RAPIDJSON_FORCEINLINE T* Push(size_t count = 1) { 124 Reserve<T>(count); 125 return PushUnsafe<T>(count); 129 RAPIDJSON_FORCEINLINE T* PushUnsafe(size_t count = 1) { 131 RAPIDJSON_ASSERT(static_cast<std::ptrdiff_t>(sizeof(T) * count) <= (stackEnd_ - stackTop_)); 133 stackTop_ += sizeof(T) * count; 138 T* Pop(size_t count) { in Pop() argument [all …]
|
D | strfunc.h | 69 SizeType count = 0; in CountStringCodePoint() local 74 count++; in CountStringCodePoint() 76 *outCount = count; in CountStringCodePoint()
|
/lvgl-latest/src/stdlib/clib/ |
D | lv_sprintf_clib.c | 40 int lv_snprintf(char * buffer, size_t count, const char * format, ...) in lv_snprintf() argument 44 const int ret = vsnprintf(buffer, count, format, va); in lv_snprintf() 49 int lv_vsnprintf(char * buffer, size_t count, const char * format, va_list va) in lv_vsnprintf() argument 51 return vsnprintf(buffer, count, format, va); in lv_vsnprintf()
|
/lvgl-latest/src/stdlib/rtthread/ |
D | lv_sprintf_rtthread.c | 43 int lv_snprintf(char * buffer, size_t count, const char * format, ...) in lv_snprintf() argument 47 const int ret = rt_vsnprintf(buffer, count, format, va); in lv_snprintf() 52 int lv_vsnprintf(char * buffer, size_t count, const char * format, va_list va) in lv_vsnprintf() argument 54 return rt_vsnprintf(buffer, count, format, va); in lv_vsnprintf()
|
/lvgl-latest/src/others/ime/ |
D | lv_ime_pinyin.c | 897 volatile uint8_t count = 0; in pinyin_search_matching() local 909 count = pinyin_ime->py_num[offset]; in pinyin_search_matching() 911 while(count--) { in pinyin_search_matching() 1006 uint16_t count = 0; in pinyin_k9_get_legal_py() local 1017 if((count >= ll_len) || (ll_len == 0)) { in pinyin_k9_get_legal_py() 1021 else if((count < ll_len)) { in pinyin_k9_get_legal_py() 1025 count++; in pinyin_k9_get_legal_py() 1043 if(count > 0) { in pinyin_k9_get_legal_py() 1045 pinyin_ime->k9_legal_py_count = count; in pinyin_k9_get_legal_py() 1056 volatile uint8_t count = 0; in pinyin_k9_is_valid_py() local [all …]
|
/lvgl-latest/src/misc/cache/ |
D | lv_image_header_cache.c | 54 lv_result_t lv_image_header_cache_init(uint32_t count) in lv_image_header_cache_init() argument 61 sizeof(lv_image_header_cache_data_t), count, (lv_cache_ops_t) { in lv_image_header_cache_init() 71 void lv_image_header_cache_resize(uint32_t count, bool evict_now) in lv_image_header_cache_resize() argument 73 lv_cache_set_max_size(img_header_cache_p, count, NULL); in lv_image_header_cache_resize() 75 lv_cache_reserve(img_header_cache_p, count, NULL); in lv_image_header_cache_resize()
|
D | lv_image_header_cache.h | 37 lv_result_t lv_image_header_cache_init(uint32_t count); 45 void lv_image_header_cache_resize(uint32_t count, bool evict_now);
|
/lvgl-latest/src/libs/freetype/ |
D | lv_ftsystem.c | 48 unsigned long count); 268 unsigned long count) in ft_lv_fs_stream_io() argument 272 if(!count && offset > stream->size) in ft_lv_fs_stream_io() 280 if(count == 0) in ft_lv_fs_stream_io() 284 lv_fs_res_t res = lv_fs_read(file_p, buffer, count, &br); in ft_lv_fs_stream_io()
|
/lvgl-latest/src/drivers/glfw/ |
D | lv_opengles_driver.c | 42 static void lv_opengles_index_buffer_init(const unsigned int * data, unsigned int count); 55 static void lv_opengles_shader_set_uniformmatrix3fv(const char * name, int count, bool transpose, c… 325 static void lv_opengles_index_buffer_init(const unsigned int * data, unsigned int count) in lv_opengles_index_buffer_init() argument 327 index_buffer_count = count; in lv_opengles_index_buffer_init() 332 GL_CALL(glBufferData(GL_ELEMENT_ARRAY_BUFFER, count * sizeof(GLuint), data, GL_STATIC_DRAW)); in lv_opengles_index_buffer_init() 451 static void lv_opengles_shader_set_uniformmatrix3fv(const char * name, int count, bool transpose, c… in lv_opengles_shader_set_uniformmatrix3fv() argument 453 …GL_CALL(glUniformMatrix3fv(lv_opengles_shader_get_uniform_location(name), count, transpose, values… in lv_opengles_shader_set_uniformmatrix3fv() 471 unsigned int count = lv_opengles_index_buffer_get_count(); in lv_opengles_render_draw() local 472 GL_CALL(glDrawElements(GL_TRIANGLES, count, GL_UNSIGNED_INT, NULL)); in lv_opengles_render_draw()
|
/lvgl-latest/src/stdlib/ |
D | lv_sprintf.h | 37 int lv_snprintf(char * buffer, size_t count, const char * format, ...); 39 int lv_vsnprintf(char * buffer, size_t count, const char * format, va_list va);
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite_tvg.cpp | 197 void set_CLUT(vg_lite_uint32_t count, const vg_lite_uint32_t * colors) in set_CLUT() argument 199 switch(count) { in set_CLUT() 1079 vg_lite_uint32_t count, in vg_lite_get_path_length() argument 1083 LV_UNUSED(count); in vg_lite_get_path_length() 1106 vg_lite_error_t vg_lite_set_CLUT(vg_lite_uint32_t count, in vg_lite_set_CLUT() argument 1115 ctx->set_CLUT(count, colors); in vg_lite_set_CLUT() 1166 grad->count = 0; in vg_lite_init_grad() 1172 vg_lite_uint32_t count, in vg_lite_set_linear_grad() argument 1205 if(!count || count > VLC_MAX_COLOR_RAMP_STOPS || color_ramp == NULL) in vg_lite_set_linear_grad() 1208 for(i = 0; i < count; i++) in vg_lite_set_linear_grad() [all …]
|
/lvgl-latest/src/font/ |
D | lv_font_fmt_txt.c | 519 rle->count = 0; in rle_init() 531 rle->count = 0; in rle_next() 540 rle->count++; in rle_next() 544 if(rle->count == 11) { in rle_next() 545 rle->count = get_bits(rle->in, rle->rdp, 6); in rle_next() 547 if(rle->count != 0) { in rle_next() 568 rle->count--; in rle_next() 569 if(rle->count == 0) { in rle_next()
|