Searched refs:x_end (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/components/littlevgl/src/lv_draw/ |
A D | lv_draw_arc.c | 65 lv_coord_t x_end[4]; in lv_draw_arc() local 94 x_end[0] = LV_COORD_MIN; in lv_draw_arc() 95 x_end[1] = LV_COORD_MIN; in lv_draw_arc() 96 x_end[2] = LV_COORD_MIN; in lv_draw_arc() 97 x_end[3] = LV_COORD_MIN; in lv_draw_arc() 109 x_end[0] = xi - 1; in lv_draw_arc() 116 x_end[1] = xi - 1; in lv_draw_arc() 139 if(x_end[0] == LV_COORD_MIN) x_end[0] = xi - 1; in lv_draw_arc() 144 if(x_end[1] == LV_COORD_MIN) x_end[1] = xi - 1; in lv_draw_arc() 149 if(x_end[2] == LV_COORD_MIN) x_end[2] = xi - 1; in lv_draw_arc() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | predictor_enc.c | 236 int x_start, int x_end, int y, int max_quantization, int exact, in GetResidual() argument 239 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row, in GetResidual() 244 for (x = x_start; x < x_end; ++x) { in GetResidual() 460 int x_end = x + (1 << bits); in CopyImageWithPrediction() local 461 if (x_end > width) x_end = width; in CopyImageWithPrediction() 463 mode, x, x_end, y, max_quantization, exact, in CopyImageWithPrediction() 465 x = x_end; in CopyImageWithPrediction()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | lossless.c | 225 int x_end = (x & ~mask) + tile_width; in GENERATE_PREDICTOR_ADD() local 226 if (x_end > width) x_end = width; in GENERATE_PREDICTOR_ADD() 227 pred_func(in + x, out + x - width, x_end - x, out + x); in GENERATE_PREDICTOR_ADD() 228 x = x_end; in GENERATE_PREDICTOR_ADD()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/mux/ |
A D | anim_encode.c | 722 const int x_end = (rect->x_offset_ + rect->width_) & ~(block_size - 1); in FlattenSimilarBlocks() local 728 for (i = x_start; i < x_end; i += block_size) { in FlattenSimilarBlocks()
|
Completed in 11 milliseconds