HomeSort by relevance Sort by last modified time
    Searched refs:KERNEL_SIZE (Results 1 - 2 of 2) sorted by null

  /external/libyuv/files/util/
ssim.cc 35 enum { KERNEL = 3, KERNEL_SIZE = 2 * KERNEL + 1 };
40 static const int K[KERNEL_SIZE] = {
124 for (int y_ = 0; y_ < KERNEL_SIZE; ++y_, org += stride, rec += stride) {
128 for (int x_ = 0; x_ < KERNEL_SIZE; ++x_) {
331 uint8 scratch_org[KERNEL_SIZE * kScratchStride] = {0};
332 uint8 scratch_rec[KERNEL_SIZE * kScratchStride] = {0};
334 for (int k = 0; k < KERNEL_SIZE; ++k) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 560 #define KERNEL_SIZE 3
563 static uint8_t fp_dn_kernal_3[KERNEL_SIZE * KERNEL_SIZE] = { 1, 2, 1, 2, 4,
584 for (i = 0; i < KERNEL_SIZE; ++i) {
585 for (j = 0; j < KERNEL_SIZE; ++j) {
626 for (i = 0; i < KERNEL_SIZE; ++i) {
628 for (j = 0; j < KERNEL_SIZE; ++j) {
    [all...]

Completed in 151 milliseconds