Home
last modified time | relevance | path

Searched refs:block_d (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/mesa/main/
Dtexcompress_astc.cpp545 Decoder(int block_w, int block_h, int block_d, bool srgb, bool output_unorm8) in Decoder() argument
546 : block_w(block_w), block_h(block_h), block_d(block_d), srgb(srgb), in Decoder()
551 int block_w, block_h, block_d; member in Decoder
640 void compute_infill_weights(int block_w, int block_h, int block_d);
656 for (int i = 0; i < block_w * block_h * block_d; ++i) { in decode()
1263 void Block::compute_infill_weights(int block_w, int block_h, int block_d) in compute_infill_weights() argument
1267 int Dr = block_d <= 1 ? 0 : (1024 + block_d / 2) / (block_d - 1); in compute_infill_weights()
1268 for (int r = 0; r < block_d; ++r) { in compute_infill_weights()
1474 if (wt_w > decoder.block_w || wt_h > decoder.block_h || wt_d > decoder.block_d) in decode()
1583 compute_infill_weights(decoder.block_w, decoder.block_h, decoder.block_d); in decode()
[all …]
/external/libaom/libaom/aom_dsp/
Dnoise_model.c1341 double *block_d = NULL, *plane_d = NULL; in aom_wiener_denoise_2d() local
1366 block_d = (double *)aom_malloc(block_size * block_size * sizeof(*block_d)); in aom_wiener_denoise_2d()
1383 (plane_d != NULL) && (block != NULL) && (block_d != NULL) && in aom_wiener_denoise_2d()
1412 by * (block_size >> chroma_sub_h) + offsy, plane_d, block_d); in aom_wiener_denoise_2d()
1414 block[j] = (float)block_d[j]; in aom_wiener_denoise_2d()
1456 aom_free(block_d); in aom_wiener_denoise_2d()