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

  /external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc 102 int tail_length = static_cast<int>(8.0f * sigma + 0.5f); local
103 gfx::Rect echo_rect(399 - tail_length, 299 - tail_length,
104 2 * tail_length + 1, 2 * tail_length + 1);
114 tail_length = static_cast<int>(8.0f * sigma + 0.5f);
115 echo_rect = gfx::Rect(399 - tail_length, 299 - tail_length,
116 2 * tail_length + 1, 2 * tail_length + 1)
145 int tail_length = static_cast<int>(8.0f * sigma + 0.5f); local
    [all...]
  /external/chromium_org/skia/ext/
convolver.cc 683 const int tail_length = static_cast<int>(4.0f * kernel_sigma + 0.5f); local
684 const int kernel_size = tail_length * 2 + 1;
689 kernel_weights[tail_length] = 1.0f;
691 for (int ii = 1; ii <= tail_length; ++ii) {
693 kernel_weights[tail_length + ii] = v;
694 kernel_weights[tail_length - ii] = v;
702 kernel_weights[tail_length] = 0.0;
703 for (int ii = 1; ii <= tail_length; ++ii) {
704 float v = sigmasq * kernel_weights[tail_length + ii] / ii;
705 kernel_weights[tail_length + ii] = v
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
backward_references.cc 114 const int tail_length = best_len_2 - best_len + 1; local
115 for (int k = 0; k < tail_length; ++k) {

Completed in 475 milliseconds