/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/ |
D | astc_block_sizes2.cpp | 233 int xdim, in initialize_decimation_table_2d() argument 242 int texels_per_block = xdim * ydim; in initialize_decimation_table_2d() 253 for (x = 0; x < xdim; x++) in initialize_decimation_table_2d() 255 int texel = y * xdim + x; in initialize_decimation_table_2d() 257 int x_weight = (((1024 + xdim / 2) / (xdim - 1)) * x * (x_weights - 1) + 32) >> 6; in initialize_decimation_table_2d() 314 int xdim, in initialize_decimation_table_3d() argument 325 int texels_per_block = xdim * ydim * zdim; in initialize_decimation_table_3d() 339 for (x = 0; x < xdim; x++) in initialize_decimation_table_3d() 341 int texel = (z * ydim + y) * xdim + x; in initialize_decimation_table_3d() 343 int x_weight = (((1024 + xdim / 2) / (xdim - 1)) * x * (x_weights - 1) + 32) >> 6; in initialize_decimation_table_3d() [all …]
|
D | astc_codec_internals.h | 99 int xdim; member 138 int xdim, 255 int xdim,
|
D | astc_decompress_symbolic.cpp | 131 update_imageblock_flags(blk, bsd->xdim, bsd->ydim, bsd->zdim); in decompress_symbolic_block() 197 update_imageblock_flags(blk, bsd->xdim, bsd->ydim, bsd->zdim); in decompress_symbolic_block() 289 update_imageblock_flags(blk, bsd->xdim, bsd->ydim, bsd->zdim); in decompress_symbolic_block()
|
D | astc_image_load_store.cpp | 179 int xdim, in update_imageblock_flags() argument 189 int texels_per_block = xdim * ydim * zdim; in update_imageblock_flags()
|
D | astc_partition_tables.cpp | 239 for (x = 0; x < bsd->xdim; x++) in generate_one_partition_table()
|
/third_party/astc-encoder/Source/ |
D | astcenc_percentile_tables.cpp | 35 uint8_t xdim; member 1105 int xdim, in get_packed_table() argument 1108 int idx = (ydim << 8) | xdim; in get_packed_table() 1161 unsigned int xdim, in get_2d_percentile_table() argument 1165 const packed_percentile_table *apt = get_packed_table(xdim, ydim); in get_2d_percentile_table() 1197 unsigned int xdim, in is_legal_2d_block_size() argument 1200 unsigned int idx = (xdim << 8) | ydim; in is_legal_2d_block_size() 1225 unsigned int xdim, in is_legal_3d_block_size() argument 1229 unsigned int idx = (xdim << 16) | (ydim << 8) | zdim; in is_legal_3d_block_size()
|
D | astcenc_image.cpp | 220 for (unsigned int x = 0; x < bsd.xdim; x++) in fetch_image_block() 299 for (unsigned int x = xpos; x < xpos + bsd.xdim; x++) in fetch_image_block_fast_ldr() 349 unsigned int x_end = std::min(xsize, xpos + bsd.xdim); in write_image_block() 350 unsigned int x_nudge = bsd.xdim - (x_end - x_start); in write_image_block() 354 unsigned int y_nudge = (bsd.ydim - (y_end - y_start)) * bsd.xdim; in write_image_block()
|
D | astcenc_internal.h | 666 uint8_t xdim; member 1490 unsigned int xdim, 1499 unsigned int xdim, 1508 unsigned int xdim,
|
D | astcenc_partition_tables.cpp | 276 for (unsigned int x = 0; x < bsd.xdim; x++) in generate_one_partition_info_entry()
|
D | astcenc_block_sizes.cpp | 833 bsd.xdim = static_cast<uint8_t>(x_texels); in construct_block_size_descriptor_2d() 1040 bsd.xdim = static_cast<uint8_t>(x_texels); in construct_block_size_descriptor_3d()
|
D | astcenc_entry.cpp | 822 int block_x = bsd.xdim; in compress_image()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_nnedi.c | 53 int xdim, ydim, nns, nsize; member 344 memcpy(buf, src, model->xdim * sizeof(float)); in gather_input() 346 for (int j = 0; j < model->xdim; j++) { in gather_input() 354 buf += model->xdim; in gather_input() 407 const float *window = src_p - (model->ydim / 2) * src_stride - (model->xdim / 2 - 1); in predictor() 764 static int allocate_model(PredictorCoefficients *coeffs, int xdim, int ydim, int nns) in allocate_model() argument 766 int filter_size = nns * xdim * ydim; in allocate_model() 775 coeffs->xdim = xdim; in allocate_model() 777 coeffs->nsize = xdim * ydim; in allocate_model() 834 const int xdim = NNEDI_XDIM[j]; in read_weights() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | ASTC_Decoder.cpp | 37 int xdim, int ydim, int zdim, in write_imageblock() argument 48 for(int x = 0; x < xdim; x++) in write_imageblock()
|