Searched defs:by (Results 1 - 25 of 74) sorted by path

123

/external/chromium_org/components/visitedlink/test/
H A Dvisitedlink_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
166 // as were generated by TestIO_Create(). This also checks the URLs with a
398 // This tests that the file is written correctly by reading it in using
503 void CountAddEvent(int by) { argument
504 add_count_ += by;
643 // events received by the renderer.
653 // Test whether the coalescing continues by adding a few more URLs.
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp2 // Use of this source code is governed by a BSD-style license that can be
138 // on layers with no repeat by testing whether the image covers the layout rect.
233 // We shrink the rectangle by one pixel on each side because the bleed is one pixel maximum.
347 // BorderFillBox radius clipping is taken care of by BackgroundBleedClipBackground
427 // by verifying whether the background image covers the entire layout rect.
475 // Now draw the text into the mask. We do this by painting using a special paint phase that signals to
592 // anonymous blocks created by inline <body> tags etc. We can locate the <body>
662 // The background of the box generated by the root element covers the entire canvas including
919 // offset for the side, let f = min(Lwidth/(Wleft+Wright), Lheight/(Wtop+Wbottom)). If f < 1, then all W are reduced by
920 // multiplying them by
2123 float by = quad[2].y() - quad[1].y(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimationElement.cpp11 * License as published by the Free Software Foundation; either
567 String by = byValue(); local
580 m_animationValid = calculateFromAndByValues(from, by);
582 m_animationValid = calculateFromAndByValues(emptyString(), by);
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DUnitBezier.h44 by = 3.0 * (p2y - p1y) - cy;
45 ay = 1.0 - cy - by;
86 return ((ay * t + by) * t + cy) * t;
155 double by; member in struct:blink::UnitBezier
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrix.cpp55 // Adapted from Matrix Inversion by Richard Carling, Graphics Gems <http://tog.acm.org/GraphicsGems/index.html>.
153 // Let a denote the minor determinant of matrix A obtained by
234 // End of code adapted from Matrix Inversion by Richard Carling
247 // Multiply a homogeneous point by a matrix and return the transformed point
332 // Solve the equation by inverting perspectiveMatrix and multiplying
333 // rightHandSide by the inverse. (This is the easiest way, not
476 double bx, by, bz, bw; local
482 bx = qb[0]; by = qb[1]; bz = qb[2]; bw = qb[3];
484 angle = ax * bx + ay * by + az * bz + aw * bw;
504 by
[all...]
/external/chromium_org/third_party/android_opengl/etc1/
H A Detc1.cpp9 // Unless required by applicable law or agreed to in writing, software
34 <internalformat> is given by ETC1_RGB8_OES.
42 by the following 64 bit integer:
275 int by = 0; local
277 by = 2;
280 int yy = by + y;
361 int by = 0; local
363 by = 2;
366 int yy = by + y;
/external/chromium_org/third_party/libjpeg_turbo/
H A Dturbojpeg.c462 can potentially be used for other purposes by different implementations. */
1307 int ci, y; JDIMENSION by; local
1315 for(by=0; by<compptr->height_in_blocks; by+=compptr->v_samp_factor)
1318 ((j_common_ptr)dinfo, dstcoefs[ci], by, compptr->v_samp_factor,
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dpostproc.c4 * Use of this source code is governed by a BSD-style license
449 * a gaussian distribution with sigma determined by q.
1107 int by, bx; local
1115 for (by = 0; by < 16; by += 4)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_inlines.h362 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) argument
364 return cfg.reachableBy(&by->cfg, &term->cfg);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_rendering.c147 int mbx, mby, bx, by; local
213 for (by = 0; by < MACROBLOCK_HEIGHT_IN_BLOCKS; ++by)
230 for (by = 0; by < MACROBLOCK_HEIGHT_IN_BLOCKS / 2; ++by)
/external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.cpp4 * Use of this source code is governed by a BSD-style license that can be
76 * will be offset by 1.0
211 // alpha 0 vertex, offset by a scaled normal.
227 // by .5 pixels
309 // TODO: support square cap by changing this offset to incorporate halfStrokeWidth
396 // TODO: support square cap by changing this offset to incorporate halfStrokeWidth
665 // multiplying by sqrInvScaleY/X equivalent to multiplying in dimensional scale factors
668 // below thresh, draw line by adding endpoint
701 float bx, float by,
705 float dy = by
699 RecursiveQuadraticBezierVertices( float ax, float ay, float bx, float by, float cx, float cy, float sqrInvScaleX, float sqrInvScaleY, SkTArray<Vertex, true>* outputVertices) argument
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicParameterization_TestUtility.cpp1 // included by CubicParameterization.cpp
13 double ay, by, cy, dy; local
15 alt_set_abcd(&cubic[0].y, ay, by, cy, dy);
17 set_abcd(&cubic[0].y, ay, by, cy, dy);
20 if (!try_alt) calc_bc(dy, by, cy);
27 double by = cubic[1].y;
30 calc_ABCD(ax, bx, cx, dx, ay, by, cy, dy, coeffs);
34 coeffs[index] = (*calc_proc[procIndex])(ax, bx, cx, dx, ay, by, cy, dy);
H A DEdgeWalkerPolygon4x4_Test.cpp4 * Use of this source code is governed by a BSD-style license that can be
20 int by = state.b >> 2; local
40 path.lineTo(bx, by);
52 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
114 int by = state.b >> 2; local
135 path.lineTo(bx, by);
145 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
181 int by = b >> 2; local
188 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
211 int by local
276 int by = b >> 2; local
[all...]
H A DEdgeWalkerPolygons_Mismatches.cpp4 * Use of this source code is governed by a BSD-style license that can be
1595 int by = miss.b >> 2; local
1611 path.lineTo(bx, by);
H A DEdgeWalkerQuadratic4x4_Test.cpp4 * Use of this source code is governed by a BSD-style license that can be
23 int by = state.b >> 2; local
43 path.quadTo(bx, by, cx, cy);
53 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
H A DLineQuadraticIntersection_Test.cpp4 * Use of this source code is governed by a BSD-style license that can be
174 // find a point on a quad by choosing a t from 0 to 1
187 int by = state.b >> 2; local
190 Quadratic quad = {{ax, ay}, {bx, by}, {cx, cy}};
/external/chromium_org/third_party/skia/experimental/
H A DSkSetPoly3To3.cpp5 * Use of this source code is governed by a BSD-style license that can be
29 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
30 return SkScalarMul(ax, bx) + SkScalarMul(ay, by);
H A DSkSetPoly3To3_A.cpp5 * Use of this source code is governed by a BSD-style license that can be
42 static SkDScalar ddot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
43 return SkDScalar_setMul(ax, bx) + SkDScalar_setMul(ay, by);
46 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
47 return SkDScalar_toScalar(ddot(ax, ay, bx, by));
H A DSkSetPoly3To3_D.cpp5 * Use of this source code is governed by a BSD-style license that can be
49 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
51 SkDScalar_setMul(ay, by));
/external/chromium_org/third_party/skia/src/utils/
H A DSkInterpolator.cpp5 * Use of this source code is governed by a BSD-style license that can be
232 SkScalar SkUnitCubicInterp(SkScalar value, SkScalar bx, SkScalar by, argument
265 b = pin_and_convert(by);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsQuadLineIntersectionThreadedTest.cpp4 * Use of this source code is governed by a BSD-style license that can be
68 // find a point on a quad by choosing a t from 0 to 1
80 int by = state.fB >> 2; local
83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
H A DPathOpsSimplifyDegenerateThreadedTest.cpp4 * Use of this source code is governed by a BSD-style license that can be
21 int by = state.fB >> 2; local
40 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
50 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
78 int by = b >> 2; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyQuadThreadedTest.cpp4 * Use of this source code is governed by a BSD-style license that can be
22 int by = state.fB >> 2; local
42 path.quadTo(SkIntToScalar(bx), SkIntToScalar(by),
55 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp4 * Use of this source code is governed by a BSD-style license that can be
22 int by = state.fB >> 2; local
42 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
55 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp4 * Use of this source code is governed by a BSD-style license that can be
22 int by = state.fB >> 2; local
43 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
53 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
83 int by = b >> 2; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {

Completed in 3129 milliseconds

123