Home
last modified time | relevance | path

Searched refs:squares (Results 1 – 25 of 63) sorted by relevance

123

/third_party/skia/gm/
Dthinrects.cpp124 constexpr SkRect squares[] = { in drawSquares() local
135 for (size_t j = 0; j < SK_ARRAY_COUNT(squares); ++j) { in drawSquares()
137 rrect.setRectXY(squares[j], 1/32.f, 2/32.f); in drawSquares()
140 canvas->drawRect(squares[j], p); in drawSquares()
/third_party/flutter/skia/gm/
Dthinrects.cpp107 constexpr SkRect squares[] = { in DrawSquares() local
117 for (size_t j = 0; j < SK_ARRAY_COUNT(squares); ++j) { in DrawSquares()
118 canvas->drawRect(squares[j], p); in DrawSquares()
/third_party/flutter/flutter/packages/flutter/test/gestures/
Dlsq_solver_test.dart15 test('Least-squares fit: linear polynomial to line', () {
29 test('Least-squares fit: linear polynomial to sloped line', () {
43 test('Least-squares fit: quadratic polynomial to line', () {
58 test('Least-squares fit: quadratic polynomial to sloped line', () {
/third_party/gettext/gettext-tools/examples/hello-java-swing/
DBUGS4 IBM JDK 1.3.0 de_DE, sr_YU work - ja_JP, zh_CN don't work (displays squares)
5 Sun JDK 1.4.2 de_DE, sr_YU work - ja_JP, zh_CN don't work (displays squares)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
DvktRayQueryCullRayFlagsTests.cpp672 std::vector<std::vector<tcu::UVec2>> squares = in verifyImage() local
714 for (deUint32 squareNdx = 0; squareNdx < squares.size(); ++squareNdx) in verifyImage()
717 for (deUint32 y = squares[squareNdx][0].y(); y < squares[squareNdx][1].y(); ++y) in verifyImage()
718 for (deUint32 x = squares[squareNdx][0].x(); x < squares[squareNdx][1].x(); ++x) in verifyImage()
866 std::vector<std::vector<tcu::UVec2>> squares = in verifyImage() local
877 for (deUint32 squareNdx = 0; squareNdx < squares.size(); ++squareNdx) in verifyImage()
880 for (deUint32 y = squares[squareNdx][0].y(); y < squares[squareNdx][1].y(); ++y) in verifyImage()
881 for (deUint32 x = squares[squareNdx][0].x(); x < squares[squareNdx][1].x(); ++x) in verifyImage()
1125 std::vector<std::vector<tcu::UVec2>> squares = in verifyImage() local
1136 for (deUint32 squareNdx = 0; squareNdx < squares.size(); ++squareNdx) in verifyImage()
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dlsq_solver.dart80 /// Uses the least-squares algorithm to fit a polynomial to a set of data.
82 /// Creates a least-squares solver.
159 // ...where sumSquaredError is the residual sum of squares (variance of the
160 // error), and sumSquaredTotal is the total sum of squares (variance of the
/third_party/python/Lib/test/
Dtest_generators.py1604 squares = [" " for j in range(n)]
1605 squares[row2col[i]] = "Q"
1606 print("|" + "|".join(squares) + "|")
1791 squares = [[None] * n for i in range(m)]
1795 squares[i1][j1] = format % k
1801 row = squares[i]
/third_party/python/Doc/tutorial/
Dintroduction.rst389 >>> squares = [1, 4, 9, 16, 25]
390 >>> squares
396 >>> squares[0] # indexing returns the item
398 >>> squares[-1]
400 >>> squares[-3:] # slicing returns a new list
407 >>> squares[:]
412 >>> squares + [36, 49, 64, 81, 100]
Ddatastructures.rst204 For example, assume we want to create a list of squares, like::
206 >>> squares = []
208 ... squares.append(x**2)
210 >>> squares
214 after the loop completes. We can calculate the list of squares without any
217 squares = list(map(lambda x: x**2, range(10)))
221 squares = [x**2 for x in range(10)]
Dinputoutput.rst193 set of columns giving integers and their squares and cubes::
216 Here's the same table of squares and cubes, formatted manually::
/third_party/mesa3d/docs/_extra/specs/OLD/
DMESA_sprite_point.spec73 squares. One could define rotated texture images if desired. A 3D
/third_party/ffmpeg/libavutil/x86/
Dlls.asm2 ;* linear least squares model
/third_party/boost/libs/math/doc/statistics/
Dlinear_regression.qbk30 A simple ordinary least squares finds the numbers /c/[sub 0] and /c/[sub 1] which minimizes the mer…
/third_party/boost/libs/compute/cmake/
DFindEigen.cmake1 # Ceres Solver - A fast non-linear least squares minimizer
/third_party/python/Doc/faq/
Dprogramming.rst206 >>> squares = []
208 ... squares.append(lambda: x**2)
215 >>> squares[2]()
217 >>> squares[4]()
227 >>> squares[2]()
233 >>> squares = []
235 ... squares.append(lambda n=x: n**2)
243 >>> squares[2]()
245 >>> squares[4]()
/third_party/skia/third_party/externals/opengl-registry/extensions/INTEL/
DINTEL_conservative_rasterization.txt106 rasterization produces all fragments for which any part of their squares
284 rasterization produces all fragments for which any part of their squares
/third_party/openGLES/extensions/INTEL/
DINTEL_conservative_rasterization.txt106 rasterization produces all fragments for which any part of their squares
284 rasterization produces all fragments for which any part of their squares
/third_party/mesa3d/docs/relnotes/
D17.1.0.rst63 Black squares in the Spec Ops: The Line chapter select screen
D19.2.0.rst74 - [Regression, NIR, bisected] Black squares in Unigine Heaven via
/third_party/boost/libs/histogram/doc/
Drationale.qbk96squares fitting: Often you have a model of the expected number of counts ['lambda] per bin, which …
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_point_sprite.txt144 RESOLVED: Point sprites are rasterized as squares, even in
/third_party/openGLES/extensions/OES/
DOES_point_sprite.txt154 RESOLVED: Point sprites are rasterized as squares, even in
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/
Dpesto_demo.dart711 …RecipeStep(duration: '10 min', description: 'Fill phyllo squares half-full with filling and fold.'…
/third_party/skia/third_party/externals/imgui/docs/
DFAQ.md22 …ui in my engine and little squares are showing instead of text...](#q-i-integrated-dear-imgui-in-m…
164 ### Q: I integrated Dear ImGui in my engine and little squares are showing instead of text...
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_point_sprite.txt149 RESOLVED: Point sprites are rasterized as squares, even in

123