Home
last modified time | relevance | path

Searched refs:xdim (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
Dastc_block_sizes2.cpp233 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 …]
Dastc_codec_internals.h99 int xdim; member
138 int xdim,
255 int xdim,
Dastc_decompress_symbolic.cpp131 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()
Dastc_image_load_store.cpp179 int xdim, in update_imageblock_flags() argument
189 int texels_per_block = xdim * ydim * zdim; in update_imageblock_flags()
Dastc_partition_tables.cpp239 for (x = 0; x < bsd->xdim; x++) in generate_one_partition_table()
/third_party/ffmpeg/libavfilter/
Dvf_nnedi.c53 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/
DASTC_Decoder.cpp37 int xdim, int ydim, int zdim, in write_imageblock() argument
48 for(int x = 0; x < xdim; x++) in write_imageblock()