Home
last modified time | relevance | path

Searched refs:x_max (Results 1 – 15 of 15) sorted by relevance

/external/ceres-solver/internal/ceres/
Dpolynomial.cc274 const double x_max, in MinimizePolynomial() argument
282 *optimal_x = (x_min + x_max) / 2.0; in MinimizePolynomial()
291 const double x_max_value = EvaluatePolynomial(polynomial, x_max); in MinimizePolynomial()
294 *optimal_x = x_max; in MinimizePolynomial()
314 if ((root < x_min) || (root > x_max)) { in MinimizePolynomial()
374 double x_max, in MinimizeInterpolatingPolynomial() argument
378 MinimizePolynomial(polynomial, x_min, x_max, optimal_x, optimal_value); in MinimizeInterpolatingPolynomial()
381 if ((sample.x < x_min) || (sample.x > x_max)) { in MinimizeInterpolatingPolynomial()
Dpolynomial.h82 double x_max,
128 double x_max,
/external/chromium_org/cc/debug/
Dinvalidation_benchmark.cc94 int x_max = LCGRandom() * visible_content_rect.width(); in RunOnLayer() local
97 if (x_min > x_max) in RunOnLayer()
98 std::swap(x_min, x_max); in RunOnLayer()
101 gfx::Rect invalidation_rect(x_min, y_min, x_max - x_min, y_max - y_min); in RunOnLayer()
/external/chromium_org/third_party/brotli/src/woff2/
Dnormalize.cc48 int16_t x_max = x_min; in NormalizeSimpleGlyphBoundingBox() local
53 if (point.x > x_max) x_max = point.x; in NormalizeSimpleGlyphBoundingBox()
60 glyph->x_max = x_max; in NormalizeSimpleGlyphBoundingBox()
Dglyph.h37 int16_t x_max; variable
Dglyph.cc89 !buffer.ReadS16(&glyph->x_max) || in ReadGlyph()
224 Store16(glyph.x_max, offset, dst); in StoreBbox()
Dwoff2_dec.cc303 int x_max = 0; in ComputeBbox() local
310 if (i == 0 || x > x_max) x_max = x; in ComputeBbox()
317 offset = Store16(dst, offset, x_max); in ComputeBbox()
Dtransform.cc169 WriteUShort(&bbox_stream_, glyph.x_max); in WriteBbox()
/external/chromium_org/chrome/browser/ui/pdf/
Dpdf_browsertest_base.cc157 int x_max = std::min(w - ref_x_offset, bitmap.width() - snapshot_x_offset); in CopyFromBackingStoreCallback() local
162 for (int x = 0; x < x_max && !snapshot_different_; ++x) { in CopyFromBackingStoreCallback()
/external/chromium_org/ui/gfx/android/
Dscroller.cc71 float x_max = 1.0f; in SplineConstants() local
74 x = x_min + (x_max - x_min) / 2.0f; in SplineConstants()
80 x_max = x; in SplineConstants()
/external/chromium_org/skia/ext/
Dimage_operations_unittest.cc25 int x_min, int x_max, in AveragePixel() argument
30 for (int x = x_min; x <= x_max; x++) { in AveragePixel()
65 int x_min, int x_max, in PrintPixel() argument
70 for (int x = x_min; x <= x_max; ++x) { in PrintPixel()
/external/webrtc/src/modules/audio_processing/aec/
Daec_core_sse2.c307 const __m128 x_max = _mm_max_ps(x_min, *((__m128 *)min_input)); in mm_pow_ps() local
311 const __m128 x_minus_half = _mm_sub_ps(x_max, *((__m128 *)half)); in mm_pow_ps()
322 const __m128 y = _mm_sub_ps(x_max, _mm_cvtepi32_ps(x_minus_half_floor)); in mm_pow_ps()
/external/chromium_org/third_party/ots/src/
Dwoff2.cc407 int x_max = 0; in ComputeBbox() local
414 if (i == 0 || x > x_max) x_max = x; in ComputeBbox()
421 offset = Store16(dst, offset, x_max); in ComputeBbox()
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
Daec_core_sse2.c323 const __m128 x_max = _mm_max_ps(x_min, *((__m128*)min_input)); in mm_pow_ps() local
327 const __m128 x_minus_half = _mm_sub_ps(x_max, *((__m128*)half)); in mm_pow_ps()
338 const __m128 y = _mm_sub_ps(x_max, _mm_cvtepi32_ps(x_minus_half_floor)); in mm_pow_ps()
Daec_core_neon.c338 const float32x4_t x_max = vmaxq_f32(x_min, min_input); in vpowq_f32() local
341 const float32x4_t x_minus_half = vsubq_f32(x_max, half); in vpowq_f32()
351 const float32x4_t y = vsubq_f32(x_max, vcvtq_f32_s32(x_minus_half_floor)); in vpowq_f32()