/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/examples/ |
A D | pngpixel.c | 45 row = (png_const_bytep)(((const png_byte (*)[8])row) + bit_offset_hi); in component() 46 row += bit_offset_lo >> 3; in component() 58 case 8: return row[0]; in component() 59 case 16: return (row[0] << 8) + row[1]; in component() 120 component(row, x, 1, bit_depth, 3), in print_pixel() 156 volatile png_bytep row = NULL; in main() local 211 row_tmp = row; in main() 320 row = NULL; in main() 335 if (row != NULL) in main() 342 png_bytep row_tmp = row; in main() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/intel/ |
A D | filter_sse2_intrinsics.c | 69 store3(row, d); in png_read_filter_row_sub3_sse2() 71 row += 3; in png_read_filter_row_sub3_sse2() 77 store3(row, d); in png_read_filter_row_sub3_sse2() 79 row += 3; in png_read_filter_row_sub3_sse2() 104 row += 4; in png_read_filter_row_sub4_sse2() 142 row += 3; in png_read_filter_row_avg3_sse2() 160 row += 3; in png_read_filter_row_avg3_sse2() 196 row += 4; in png_read_filter_row_avg4_sse2() 287 row += 3; in png_read_filter_row_paeth3_sse2() 323 row += 3; in png_read_filter_row_paeth3_sse2() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiffcmp.c | 159 uint32 row; in tiffcmp() local 192 for (row = 0; row < imagelength; row++) { in tiffcmp() 194 checkEOF(tif2, row, -1) in tiffcmp() 197 checkEOF(tif1, row, s) in tiffcmp() 204 for (row = 0; row < imagelength; row++) { in tiffcmp() 206 checkEOF(tif1, row, -1) in tiffcmp() 209 checkEOF(tif2, row, s) in tiffcmp() 217 for (row = 0; row < imagelength; row++) { in tiffcmp() 219 checkEOF(tif1, row, s) in tiffcmp() 221 checkEOF(tif2, row, s) in tiffcmp() [all …]
|
A D | tiffinfo.c | 223 uint32 row, h=0; in TIFFReadContigStripData() local 228 for (row = 0; row < h; row += rowsperstrip) { in TIFFReadContigStripData() 229 uint32 nrow = (row+rowsperstrip > h ? in TIFFReadContigStripData() 230 h-row : rowsperstrip); in TIFFReadContigStripData() 250 uint32 row, h=0; in TIFFReadSeparateStripData() local 257 for (row = 0; row < h; row += rowsperstrip) { in TIFFReadSeparateStripData() 260 h-row : rowsperstrip); in TIFFReadSeparateStripData() 303 uint32 row, col; in TIFFReadContigTileData() local 315 for (row = 0; row < h; row += th) { in TIFFReadContigTileData() 338 uint32 row, col; in TIFFReadSeparateTileData() local [all …]
|
A D | tiffcp.c | 848 for (row = 0; row < imagelength; row++) { in DECLAREcpFunc() 919 for (row = 0; row < imagelength; row++) { in DECLAREcpFunc() 1035 for (row = 0; row < imagelength; row++) { in DECLAREcpFunc() 1089 for (row = 0; row < imagelength; row++) { in DECLAREcpFunc() 1150 for (row = 0; row < imagelength; row++) { in DECLAREcpFunc() 1277 for (row = 0; row < imagelength; row++) { in DECLAREreadFunc() 1308 for (row = 0; row < imagelength; row++) { in DECLAREreadFunc() 1355 for (row = 0; row < imagelength; row += tl) { in DECLAREreadFunc() 1423 for (row = 0; row < imagelength; row += tl) { in DECLAREreadFunc() 1551 for (row = 0; row < imagelength; row += tilelength) { in DECLAREwriteFunc() [all …]
|
A D | tiff2rgba.c | 147 uint32 row, col; in cvt_by_tile() local 198 for( row = 0; ok && row < height; row += tile_height ) in cvt_by_tile() 262 uint32 row; in cvt_by_strip() local 311 for( row = 0; ok && row < height; row += rowsperstrip ) in cvt_by_strip() 316 if (!TIFFReadRGBAStrip(in, row, raster)) { in cvt_by_strip() 332 if( row + rowsperstrip > height ) in cvt_by_strip() 333 rows_to_write = height - row; in cvt_by_strip() 386 uint32 row; in cvt_whole_image() local 448 for (row = 0; row < height; row += rowsperstrip) in cvt_whole_image() 465 if( row + rowsperstrip > height ) in cvt_whole_image() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | filters_neon.c | 30 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \ 78 if (row == 0) { in DoHorizontalFilter_NEON() 82 row = 1; in DoHorizontalFilter_NEON() 92 ++row; in DoHorizontalFilter_NEON() 117 if (row == 0) { in DoVerticalFilter_NEON() 122 row = 1; in DoVerticalFilter_NEON() 130 ++row; in DoVerticalFilter_NEON() 164 out[i] = row[i] - GradientPredictor_C(row[i - 1], top[i], top[i - 1]); in GradientPredictDirect_NEON() 180 if (row == 0) { in DoGradientFilter_NEON() 183 row = 1; in DoGradientFilter_NEON() [all …]
|
A D | filters_sse2.c | 32 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \ 85 if (row == 0) { in DoHorizontalFilter_SSE2() 89 row = 1; in DoHorizontalFilter_SSE2() 99 ++row; in DoHorizontalFilter_SSE2() 118 if (row == 0) { in DoVerticalFilter_SSE2() 123 row = 1; in DoVerticalFilter_SSE2() 131 ++row; in DoVerticalFilter_SSE2() 166 out[i] = row[i] - GradientPredictor_SSE2(row[i - 1], top[i], top[i - 1]); in GradientPredictDirect_SSE2() 181 if (row == 0) { in DoGradientFilter_SSE2() 184 row = 1; in DoGradientFilter_SSE2() [all …]
|
A D | filters.c | 28 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \ 57 if (row == 0) { in DoHorizontalFilter_C() 61 row = 1; in DoHorizontalFilter_C() 68 while (row < last_row) { in DoHorizontalFilter_C() 72 ++row; in DoHorizontalFilter_C() 94 if (row == 0) { in DoVerticalFilter_C() 99 row = 1; in DoVerticalFilter_C() 110 ++row; in DoVerticalFilter_C() 140 if (row == 0) { in DoGradientFilter_C() 143 row = 1; in DoGradientFilter_C() [all …]
|
A D | filters_mips_dsp_r2.c | 33 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \ 201 const size_t start_offset = row * stride; in DoHorizontalFilter_MIPSdspR2() 202 const int last_row = row + num_rows; in DoHorizontalFilter_MIPSdspR2() 208 if (row == 0) { in DoHorizontalFilter_MIPSdspR2() 212 row = 1; in DoHorizontalFilter_MIPSdspR2() 250 const int last_row = row + num_rows; in DoVerticalFilter_MIPSdspR2() 256 if (row == 0) { in DoVerticalFilter_MIPSdspR2() 261 row = 1; in DoVerticalFilter_MIPSdspR2() 318 const int last_row = row + num_rows; in DoGradientFilter_MIPSdspR2() 325 if (row == 0) { in DoGradientFilter_MIPSdspR2() [all …]
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/linkLP/ |
A D | linkLP.axml | 5 <view class="form-row"> 7 <view class="form-row-content"> 11 <view class="form-row"> 13 <view class="form-row-content"> 17 <view class="form-row"> 19 <view class="form-row-content"> 23 <view class="form-row"> 29 <view class="form-row"> 31 <view class="form-row-content"> 40 <view class="form-row"> [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/pds/ |
A D | tif_imageiter.c | 265 uint32 col, row; in gtTileContig() local 279 for (row = 0; row < h; row += th) { in gtTileContig() 280 nrow = (row + th > h ? h - row : th); in gtTileContig() 313 uint32 col, row; in gtTileSeparate() local 340 for (row = 0; row < h; row += th) { in gtTileSeparate() 341 nrow = (row + th > h ? h - row : th); in gtTileSeparate() 380 uint32 row, nrow; in gtStripContig() local 396 for (row = 0; row < h; row += rowsperstrip) { in gtStripContig() 397 nrow = (row + rowsperstrip > h ? h - row : rowsperstrip); in gtStripContig() 444 for (row = 0; row < h; row += rowsperstrip) { in gtStripSeparate() [all …]
|
/AliOS-Things-master/components/SDL2/src/render/ |
A D | SDL_yuv_sw.c | 153 int row; in SDL_SW_UpdateYUVTexture() local 160 for (row = 0; row < rect->h; ++row) { in SDL_SW_UpdateYUVTexture() 171 for (row = 0; row < (rect->h + 1)/2; ++row) { in SDL_SW_UpdateYUVTexture() 183 for (row = 0; row < (rect->h + 1)/2; ++row) { in SDL_SW_UpdateYUVTexture() 203 for (row = 0; row < rect->h; ++row) { in SDL_SW_UpdateYUVTexture() 226 for (row = 0; row < rect->h; ++row) { in SDL_SW_UpdateYUVTexture() 237 for (row = 0; row < (rect->h + 1)/2; ++row) { in SDL_SW_UpdateYUVTexture() 256 int row; in SDL_SW_UpdateYUVTexturePlanar() local 263 for (row = 0; row < rect->h; ++row) { in SDL_SW_UpdateYUVTexturePlanar() 279 for (row = 0; row < (rect->h + 1)/2; ++row) { in SDL_SW_UpdateYUVTexturePlanar() [all …]
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/netCfg/ |
A D | netCfg.axml | 5 <view class="form-row"> 6 <view class="form-row-label">选择设备</view> 7 <view class="form-row-content"> 21 <view class="form-row"> 27 <view class="form-row"> 29 <view class="form-row-content" style="display:flex; flex-direction: row;"> 38 <view class="form-row"> 39 <view class="form-row-label">密码</view> 40 <view class="form-row-content"> 50 <view class="form-row"> [all …]
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_table.h | 106 void lv_table_set_cell_value(lv_obj_t * table, uint16_t row, uint16_t col, const char * txt); 137 void lv_table_set_cell_align(lv_obj_t * table, uint16_t row, uint16_t col, lv_label_align_t align); 146 void lv_table_set_cell_type(lv_obj_t * table, uint16_t row, uint16_t col, uint8_t type); 155 void lv_table_set_cell_crop(lv_obj_t * table, uint16_t row, uint16_t col, bool crop); 164 void lv_table_set_cell_merge_right(lv_obj_t * table, uint16_t row, uint16_t col, bool en); 185 const char * lv_table_get_cell_value(lv_obj_t * table, uint16_t row, uint16_t col); 217 lv_label_align_t lv_table_get_cell_align(lv_obj_t * table, uint16_t row, uint16_t col); 226 lv_label_align_t lv_table_get_cell_type(lv_obj_t * table, uint16_t row, uint16_t col); 235 lv_label_align_t lv_table_get_cell_crop(lv_obj_t * table, uint16_t row, uint16_t col); 244 bool lv_table_get_cell_merge_right(lv_obj_t * table, uint16_t row, uint16_t col);
|
A D | lv_table.c | 140 uint32_t cell = row * ext->col_cnt + col; in lv_table_set_cell_value() 254 uint32_t cell = row * ext->col_cnt + col; in lv_table_set_cell_align() 282 uint32_t cell = row * ext->col_cnt + col; in lv_table_set_cell_type() 313 uint32_t cell = row * ext->col_cnt + col; in lv_table_set_cell_crop() 342 uint32_t cell = row * ext->col_cnt + col; in lv_table_set_cell_merge_right() 409 uint32_t cell = row * ext->col_cnt + col; in lv_table_get_cell_value() 470 uint32_t cell = row * ext->col_cnt + col; in lv_table_get_cell_align() 495 uint32_t cell = row * ext->col_cnt + col; in lv_table_get_cell_type() 520 uint32_t cell = row * ext->col_cnt + col; in lv_table_get_cell_crop() 615 uint16_t row; in lv_table_design() local [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | jquant1.c | 468 int row; in color_quantize() local 473 for (row = 0; row < num_rows; row++) { in color_quantize() 474 ptrin = input_buf[row]; in color_quantize() 498 int row; in color_quantize3() local 502 for (row = 0; row < num_rows; row++) { in color_quantize3() 528 int row; in quantize_ord_dither() local 532 for (row = 0; row < num_rows; row++) { in quantize_ord_dither() 581 int row; in quantize3_ord_dither() local 585 for (row = 0; row < num_rows; row++) { in quantize3_ord_dither() 631 int row; in quantize_fs_dither() local [all …]
|
A D | rdrle.c | 69 JDIMENSION row; /* current row # in the virtual array */ member 191 source->row--; in get_rle_row() 215 source->row--; in get_pseudocolor_row() 244 JDIMENSION row, col; in load_image() local 274 for (row = 0; row < cinfo->image_height; row++) { in load_image() 276 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE); in load_image() 289 for (row = 0; row < cinfo->image_height; row++) { in load_image() 291 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE); in load_image() 312 for (row = 0; row < cinfo->image_height; row++) { in load_image() 314 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE); in load_image() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngwtran.c | 41 sp = row; in png_do_pack() 42 dp = row; in png_do_pack() 79 sp = row; in png_do_pack() 80 dp = row; in png_do_pack() 119 sp = row; in png_do_pack() 120 dp = row; in png_do_pack() 172 png_do_shift(png_row_infop row_info, png_bytep row, in png_do_shift() argument 214 png_bytep bp = row; in png_do_shift() 251 png_bytep bp = row; in png_do_shift() 283 for (bp = row, i = 0; i < istop; i++) in png_do_shift() [all …]
|
/AliOS-Things-master/components/littlevgl/src/lv_draw/ |
A D | lv_draw_basic.c | 183 for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { in lv_draw_fill() 208 for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { in lv_draw_fill() 326 for(row = row_start; row < row_end; row++) { in lv_draw_letter() 430 lv_coord_t row; in lv_draw_map() local 444 for(row = masked_a.y1; row <= masked_a.y2; row++) { in lv_draw_map() 455 for(row = masked_a.y1; row <= masked_a.y2; row++) { in lv_draw_map() 477 for(row = masked_a.y1; row <= masked_a.y2; row++) { in lv_draw_map() 591 lv_coord_t row; in sw_color_fill() local 597 for(row = fill_area->y1; row <= fill_area->y2; row++) { in sw_color_fill() 617 for(row = fill_area->y1 + 1; row <= fill_area->y2; row++) { in sw_color_fill() [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | matrix.h | 178 for (int row = 0; row < mat.layout().rows(); row++) { variable 180 stream << static_cast<double>(Element(mat, row, col)) << " "; 188 inline int Offset(const Layout& layout, int row, int col) { in Offset() argument 198 return row * row_stride + col * col_stride; in Offset() 202 const Scalar* ElementPtr(const Matrix<Scalar>& mat, int row, int col) { in ElementPtr() argument 203 return mat.data() + Offset(mat.layout(), row, col); in ElementPtr() 207 Scalar* ElementPtr(Matrix<Scalar>* mat, int row, int col) { in ElementPtr() argument 208 return mat->data() + Offset(mat->layout(), row, col); in ElementPtr() 212 Scalar Element(const Matrix<Scalar>& mat, int row, int col) { in Element() argument 213 return *ElementPtr(mat, row, col); in Element()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | readpng.c | 39 png_bytep row = NULL, display = NULL; in read_png() local 47 if (row != NULL) free(row); in read_png() 66 row = malloc(rowbytes); in read_png() 69 if (row == NULL || display == NULL) in read_png() 97 png_read_row(png_ptr, row, display); in read_png() 105 free(row); in read_png()
|
A D | makepng.c | 342 row += offset; in set_value() 355 *row = (png_byte)((*row & ~mask) | value); in set_value() 423 row[0] = 0x01U; in generate_row() 425 row[2] = 0x45U; in generate_row() 426 row[3] = 0x67U; in generate_row() 427 row[4] = 0x89U; in generate_row() 428 row[5] = 0xABU; in generate_row() 429 row[6] = 0xCDU; in generate_row() 793 if (row != NULL) free(row); in write_png() 957 if (row == NULL) in write_png() [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/ |
A D | sse_tensor_utils.cc | 106 for (std::intptr_t row = 0; row < m_rows; ++row) { in SseMatrixBatchVectorMultiplyAccumulateImpl() local 298 for (std::intptr_t row = 0; row < m_rows; ++row) { in SseSparseMatrixVectorMultiplyAccumulate() local 317 result[row] += dotprod * scaling_factor; in SseSparseMatrixVectorMultiplyAccumulate() 341 for (std::intptr_t row = 0; row < m_rows; ++row) { in SseSparseMatrix4VectorsMultiplyAccumulate() local 378 _mm_set_ps(result3[row], result2[row], result1[row], result0[row]); in SseSparseMatrix4VectorsMultiplyAccumulate() 383 result0[row] = GetFloatVectorElement<0>(result_fx4); in SseSparseMatrix4VectorsMultiplyAccumulate() 384 result1[row] = GetFloatVectorElement<1>(result_fx4); in SseSparseMatrix4VectorsMultiplyAccumulate() 385 result2[row] = GetFloatVectorElement<2>(result_fx4); in SseSparseMatrix4VectorsMultiplyAccumulate() 386 result3[row] = GetFloatVectorElement<3>(result_fx4); in SseSparseMatrix4VectorsMultiplyAccumulate() 421 for (std::intptr_t row = 0; row < output_size; ++row) { in SseReductionSumVector() local [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | rpng2-x.c | 1097 ulg i, row; in rpng2_x_load_bg_image() local 1136 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_load_bg_image() 1203 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_load_bg_image() 1255 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_load_bg_image() 1310 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_load_bg_image() 1348 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_load_bg_image() 1655 for (lastrow = row = startrow; row < startrow+height; ++row) { in rpng2_x_redisplay_image() 1782 for (lastrow = row = startrow; row < startrow+height; ++row) { in rpng2_x_redisplay_image() 1908 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_reload_bg_image() 1975 for (row = 0; row < rpng2_info.height; ++row) { in rpng2_x_reload_bg_image() [all …]
|