Home
last modified time | relevance | path

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

/external/pdfium/third_party/agg23/
Dagg_basics.h71 rect_base(T x1_, T y1_, T x2_, T y2_) : in rect_base()
72 x1(x1_), y1(y1_), x2(x2_), y2(y2_) {} in rect_base()
/external/opencv3/3rdparty/libwebp/enc/
Dquant.c175 m->y2_.q_[0] = kDcTable[ clip(q + enc->dq_y2_dc_, 0, 127)] * 2; in SetupMatrices()
176 m->y2_.q_[1] = kAcTable2[clip(q + enc->dq_y2_ac_, 0, 127)]; in SetupMatrices()
182 q16 = ExpandMatrix(&m->y2_, 1); in SetupMatrices()
663 nz |= VP8EncQuantizeBlock(dc_tmp, rd->y_dc_levels, 0, &dqm->y2_) << 24; in ReconstructIntra16()
Dvp8enci.h245 VP8Matrix y1_, y2_, uv_; // quantization matrices member
/external/webp/src/enc/
Dquant.c252 m->y2_.q_[0] = kDcTable[ clip(q + enc->dq_y2_dc_, 0, 127)] * 2; in SetupMatrices()
253 m->y2_.q_[1] = kAcTable2[clip(q + enc->dq_y2_ac_, 0, 127)]; in SetupMatrices()
259 q16 = ExpandMatrix(&m->y2_, 1); in SetupMatrices()
753 nz |= VP8EncQuantizeBlockWHT(dc_tmp, rd->y_dc_levels, &dqm->y2_) << 24; in ReconstructIntra16()
Dfilter.c285 const int delta = (dqm->max_edge_ * dqm->y2_.q_[1]) >> 3; in VP8AdjustFilterStrength()
Dvp8enci.h191 VP8Matrix y1_, y2_, uv_; // quantization matrices member
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp3517 double y1_ = 0, y2_ = 0, y1y1_ = 0, y1y2_ = 0; in adjust3rdMatrix() local
3524 y1_ += y1; y2_ += y2; in adjust3rdMatrix()
3529 y2_ /= n; in adjust3rdMatrix()
3533 double a = (y1y2_ - y1_*y2_)/(y1y1_ - y1_*y1_); in adjust3rdMatrix()
3534 double b = y2_ - a*y1_; in adjust3rdMatrix()