/external/ceres-solver/internal/ceres/ |
D | polynomial.cc | 274 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()
|
D | polynomial.h | 82 double x_max, 128 double x_max,
|
/external/chromium_org/cc/debug/ |
D | invalidation_benchmark.cc | 94 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/ |
D | normalize.cc | 48 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()
|
D | glyph.h | 37 int16_t x_max; variable
|
D | glyph.cc | 89 !buffer.ReadS16(&glyph->x_max) || in ReadGlyph() 224 Store16(glyph.x_max, offset, dst); in StoreBbox()
|
D | woff2_dec.cc | 303 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()
|
D | transform.cc | 169 WriteUShort(&bbox_stream_, glyph.x_max); in WriteBbox()
|
/external/chromium_org/chrome/browser/ui/pdf/ |
D | pdf_browsertest_base.cc | 157 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/ |
D | scroller.cc | 71 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/ |
D | image_operations_unittest.cc | 25 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/ |
D | aec_core_sse2.c | 307 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/ |
D | woff2.cc | 407 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/ |
D | aec_core_sse2.c | 323 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()
|
D | aec_core_neon.c | 338 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()
|