Home
last modified time | relevance | path

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

/external/ceres-solver/examples/
Dellipse_approximation.cc276 : num_segments_(num_segments), y_(y) { in PointToLineSegmentContourCostFunction()
280 for (int i = 0; i < num_segments_; ++i) { in PointToLineSegmentContourCostFunction()
294 CHECK_LT(t, num_segments_); in Evaluate()
295 const int i0 = floor(t), i1 = (i0 + 1) % num_segments_; in Evaluate()
310 for (int i = 0; i < num_segments_; ++i) { in Evaluate()
332 return t - num_segments_ * floor(t / num_segments_); in ModuloNumSegments()
335 const int num_segments_; member in PointToLineSegmentContourCostFunction
/external/webp/src/enc/
Danalysis.c79 const int nb = enc->segment_hdr_.num_segments_; in SetSegmentAlphas()
147 const int nb = (enc->segment_hdr_.num_segments_ < NUM_MB_SEGMENTS) ? in AssignSegments()
148 enc->segment_hdr_.num_segments_ : NUM_MB_SEGMENTS; in AssignSegments()
450 (enc->segment_hdr_.num_segments_ > 1) || in VP8EncAnalyze()
Dwebpenc.c42 hdr->num_segments_ = enc->config_->segments; in ResetSegmentHeader()
43 hdr->update_map_ = (hdr->num_segments_ > 1); in ResetSegmentHeader()
Dquant.c244 const int num_segments = enc->segment_hdr_.num_segments_; in SetupMatrices()
351 const int num_segments = enc->segment_hdr_.num_segments_; in SimplifySegments()
376 enc->segment_hdr_.num_segments_ = num_final_segments; in SimplifySegments()
387 const int num_segments = enc->segment_hdr_.num_segments_; in VP8SetSegmentParams()
Dvp8enci.h142 int num_segments_; // Actual number of segments. 1 segment only = unused. member
Dsyntax.c191 if (VP8PutBitUniform(bw, (hdr->num_segments_ > 1))) { in PutSegmentHeader()
Dframe.c201 if (enc->segment_hdr_.num_segments_ > 1) { in SetSegmentProbas()