OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
568
#define
KERNEL_SIZE
3
571
static uint8_t fp_dn_kernal_3[
KERNEL_SIZE
*
KERNEL_SIZE
] = { 1, 2, 1, 2, 4,
592
for (i = 0; i <
KERNEL_SIZE
; ++i) {
593
for (j = 0; j <
KERNEL_SIZE
; ++j) {
634
for (i = 0; i <
KERNEL_SIZE
; ++i) {
636
for (j = 0; j <
KERNEL_SIZE
; ++j) {
[
all
...]
Completed in 113 milliseconds