Home
last modified time | relevance | path

Searched refs:blue_ (Results 1 – 12 of 12) sorted by relevance

/external/opencv3/3rdparty/libwebp/enc/
Dhistogram.c27 memset(p->blue_, 0, sizeof(p->blue_)); in HistogramClear()
88 ++histo->blue_[PixOrCopyLiteral(v, 0)]; in VP8LHistogramAddSinglePixOrCopy()
206 + PopulationCost(p->blue_, 256) in VP8LHistogramEstimateBits()
216 + BitsEntropy(p->blue_, 256) in VP8LHistogramEstimateBitsBulk()
238 out->blue_[i] += in->blue_[i]; in HistogramAdd()
275 for (i = 0; i < 256; ++i) out->blue_[i] = a->blue_[i] + b->blue_[i]; in HistogramAddEval()
276 cost += PopulationCost(out->blue_, 256); in HistogramAddEval()
316 for (i = 0; i < 256; ++i) tmp[i] = a->blue_[i] + b->blue_[i]; in HistogramAddThresh()
Dhistogram.h37 int blue_[256]; member
Dbackward_references.c380 double blue_[VALUES_IN_BYTE]; member
436 VALUES_IN_BYTE, histo.blue_, m->blue_); in CostModelBuild()
452 m->blue_[v & 0xff]; in GetLiteralCost()
Dvp8l.c231 ok = ok && VP8LCreateHuffmanTree(histo->blue_, 15, codes + 2); in GetHuffBitLengthsAndCodes()
654 ++histo->blue_[(c >> 0) & 0xff]; in EvalAndApplySubtractGreen()
663 ++histo->blue_[((c >> 0) - green) & 0xff]; in EvalAndApplySubtractGreen()
/external/webp/src/dsp/
Dlossless_enc_mips32.c347 ADD_VECTOR(a->blue_, b->blue_, out->blue_, NUM_LITERAL_CODES, 0); in HistogramAdd()
354 ADD_VECTOR_EQ(a->blue_, out->blue_, NUM_LITERAL_CODES, 0); in HistogramAdd()
Dlossless_enc_sse2.c237 AddVector(a->blue_, b->blue_, out->blue_, NUM_LITERAL_CODES); in HistogramAdd()
242 AddVectorEq(a->blue_, out->blue_, NUM_LITERAL_CODES); in HistogramAdd()
Dlossless_enc.c1114 out->blue_[i] = a->blue_[i] + b->blue_[i]; in HistogramAdd()
1126 out->blue_[i] += a->blue_[i]; in HistogramAdd()
/external/vulkan-validation-layers/demos/smoke/
DSimulation.cpp81 blue_(0.0f, 1.0f) in ColorPicker()
89 blue_(rng_) }; in pick()
96 std::uniform_real_distribution<float> blue_; member in __anonaac04e910111::ColorPicker
/external/webp/src/enc/
Dhistogram.h36 uint32_t blue_[NUM_LITERAL_CODES]; member
Dhistogram.c145 ++histo->blue_[PixOrCopyLiteral(v, 0)]; in VP8LHistogramAddSinglePixOrCopy()
255 + PopulationCost(p->blue_, NUM_LITERAL_CODES, NULL) in VP8LHistogramEstimateBits()
281 *cost += GetCombinedEntropy(a->blue_, b->blue_, NUM_LITERAL_CODES); in GetCombinedHistogramEntropy()
377 h->blue_cost_ = PopulationCost(h->blue_, NUM_LITERAL_CODES, &blue_sym); in UpdateHistogramCost()
Dbackward_references.c478 double blue_[VALUES_IN_BYTE]; member
523 VALUES_IN_BYTE, histo->blue_, m->blue_); in CostModelBuild()
539 m->blue_[v & 0xff]; in GetLiteralCost()
866 ++histo->blue_[pix & 0xff]; in ComputeCacheEntropy()
Dvp8l.c481 VP8LCreateHuffmanTree(histo->blue_, 15, buf_rle, huff_tree, codes + 2); in GetHuffBitLengthsAndCodes()