Searched defs:by (Results 1 - 20 of 20) sorted by relevance

/external/webkit/WebCore/platform/graphics/
H A DUnitBezier.h42 by = 3.0 * (p2y - p1y) - cy;
43 ay = 1.0 - cy - by;
54 return ((ay * t + by) * t + cy) * t;
119 double by; member in struct:WebCore::UnitBezier
/external/skia/experimental/
H A DSkSetPoly3To3.cpp19 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
20 return SkScalarMul(ax, bx) + SkScalarMul(ay, by);
H A DSkSetPoly3To3_D.cpp39 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
41 SkDScalar_setMul(ay, by));
H A DSkSetPoly3To3_A.cpp47 static SkDScalar ddot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
48 return SkDScalar_setMul(ax, bx) + SkDScalar_setMul(ay, by);
51 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
52 return SkDScalar_toScalar(ddot(ax, ay, bx, by));
/external/v8/src/x64/
H A Dregexp-macro-assembler-x64.cc93 * The first seven values must be provided by the calling code by
145 void RegExpMacroAssemblerX64::AdvanceCurrentPosition(int by) { argument
146 if (by != 0) {
148 __ addq(rdi, Immediate(by * char_size()));
153 void RegExpMacroAssemblerX64::AdvanceRegister(int reg, int by) { argument
156 if (by != 0) {
157 __ addq(register_location(reg), Immediate(by));
235 // TODO(lrn): Test multiple characters at a time by loading 4 or 8 bytes
377 // On success, increment position by lengt
[all...]
/external/skia/src/utils/
H A DSkInterpolator.cpp10 * Unless required by applicable law or agreed to in writing, software
243 SkScalar SkUnitCubicInterp(SkScalar value, SkScalar bx, SkScalar by, argument
276 b = pin_and_convert(by);
/external/v8/src/
H A Dregexp-macro-assembler-tracer.cc56 void RegExpMacroAssemblerTracer::AdvanceCurrentPosition(int by) { argument
57 PrintF(" AdvanceCurrentPosition(by=%d);\n", by);
58 assembler_->AdvanceCurrentPosition(by);
127 void RegExpMacroAssemblerTracer::AdvanceRegister(int reg, int by) { argument
128 PrintF(" AdvanceRegister(register=%d, by=%d);\n", reg, by);
129 assembler_->AdvanceRegister(reg, by);
H A Dregexp-macro-assembler-irregexp.cc156 void RegExpMacroAssemblerIrregexp::AdvanceRegister(int register_index, int by) { argument
160 Emit32(by);
210 void RegExpMacroAssemblerIrregexp::AdvanceCurrentPosition(int by) { argument
211 ASSERT(by >= kMinCPOffset);
212 ASSERT(by <= kMaxCPOffset);
214 advance_current_offset_ = by;
215 Emit(BC_ADVANCE_CP, by);
H A Druntime.cc757 // Determine if the property is local by comparing the holder
780 // Fall-through and introduce the absent property by using
905 // Declare the property by setting it to the initial value if provided,
1070 // constant. For now, we determine this by checking if the
1112 // In most situations, the property introduced by the const
1115 // property might have been deleted (if it was introduced by eval)
1154 // This is the property that was introduced by the const
1367 // The function_data field of the shared function info is used exclusively by
1541 // start position - as used by StringBuilderConcatHelper?
1597 void IncrementCharacterCount(int by) { argument
[all...]
H A Djsregexp.cc550 // by the choice nodes, whereas the registers are saved and restored by
551 // by the action nodes that manipulate them.
554 // at the point where they are needed by a recursive call to Emit(). If
575 // backtracking stack, then pop them off one by one. This would use space
1017 // Here we have a concrete backtrack location. These are set up by choice
1316 // If c1 and c2 differ only by one bit.
1326 // If the characters differ by 2^n but don't differ by one bit then
1445 // This is a common case hit by no
1917 Advance(int by, bool ascii) argument
2440 AdvanceCurrentPositionInTrace(int by, RegExpCompiler* compiler) argument
[all...]
/external/webkit/WebCore/platform/graphics/skia/
H A DSkiaFontWin.cpp116 SkScalar by = FIXEDToSkScalar(polyCurve->apfx[i].y); local
123 cy = SkScalarAve(by, cy);
128 path->quadTo(bx, -by, cx, -cy);
178 // should be selected into the given DC. The returned path is owned by the
185 // Keep in MRU order by removing & reinserting the value.
/external/dropbear/libtommath/
H A Dbn.tex80 to implement ``bignum'' math. However, the resulting code has proven to be very useful. It has been used by numerous
87 release as well. This textbook is meant to compliment the project by providing a more solid walkthrough of the development
90 Since both\footnote{Note that the MPI files under mtest/ are copyrighted by Michael Fromberger. They are not required to use LibTomMath.} are in the
96 also build in MSVC, Borland C out of the box. For any other ISO C compiler a makefile will have to be made by the end
120 and static then install (by default) into /usr/lib as well as install the header files in /usr/include. The shared
136 results. ``mtest/mtest'' will generate test vectors using the MPI library by Michael Fromberger\footnote{A copy of MPI
169 In the file tommath\_class.h you will see a large list of C ``defines'' followed by a series of ``ifdefs''
259 are the pros and cons of LibTomMath by comparing it to the math routines from GnuPG\footnote{GnuPG v1.2.3 versus LibTomMath v0.28}.
321 The last two codes listed are not actually ``return'ed'' by a function. They are placed in an integer (the caller must
348 platforms by definin
[all...]
/external/v8/src/arm/
H A Dregexp-macro-assembler-arm.cc51 * - r9 : Unused, might be used by C code and expected unchanged.
55 * - r12 : IP register, used by assembler. Very volatile.
89 * The data up to the return address must be placed there by the calling
90 * code, by calling the code entry as cast to a function with the signature:
99 * The call is performed by NativeRegExpMacroAssembler::Execute()
142 void RegExpMacroAssemblerARM::AdvanceCurrentPosition(int by) { argument
143 if (by != 0) {
146 current_input_offset(), Operand(by * char_size()));
151 void RegExpMacroAssemblerARM::AdvanceRegister(int reg, int by) { argument
154 if (by !
[all...]
/external/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc85 * The data up to the return address must be placed there by the calling
86 * code, by calling the code entry as cast to a function with the signature:
135 void RegExpMacroAssemblerIA32::AdvanceCurrentPosition(int by) { argument
136 if (by != 0) {
138 __ add(Operand(edi), Immediate(by * char_size()));
143 void RegExpMacroAssemblerIA32::AdvanceRegister(int reg, int by) { argument
146 if (by != 0) {
147 __ add(register_location(reg), Immediate(by));
338 // Found by adding negative string-end offset of current position (edi)
359 // On success, increment position by lengt
[all...]
/external/libvpx/vp8/common/
H A Dpostproc.c4 * Use of this source code is governed by a BSD-style license
401 * a gaussian distribution with sigma determined by q.
1026 int by, bx; local
1034 for (by = 0; by < 16; by += 4)
/external/webkit/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.cpp48 // Adapted from Matrix Inversion by Richard Carling, Graphics Gems <http://tog.acm.org/GraphicsGems/index.html>.
134 // Let a denote the minor determinant of matrix A obtained by
215 // End of code adapted from Matrix Inversion by Richard Carling
228 // Multiply a homogeneous point by a matrix and return the transformed point
313 // Solve the equation by inverting perspectiveMatrix and multiplying
314 // rightHandSide by the inverse. (This is the easiest way, not
453 double bx, by, bz, bw; local
459 bx = qb[0]; by = qb[1]; bz = qb[2]; bw = qb[3];
461 angle = ax * bx + ay * by + az * bz + aw * bw;
481 by
[all...]
/external/webkit/WebCore/rendering/
H A DRenderLayerBacking.cpp238 // is affected by the layer dimensions.
895 // is done by passing a nil paintingRoot down to our renderer (as if no paintingRoot was ever set).
926 int by = ty - box->marginTop(); local
929 paintBox = IntRect(bx, by, bw, bh);
H A DRenderBox.cpp10 * License as published by the Free Software Foundation; either
65 // Used by flexible boxes when flexing this element.
211 // (2) We are the primary <body> (can be checked by looking at document.body).
581 // anonymous blocks created by inline <body> tags etc. We can locate the <body>
605 // The background of the box generated by the root element covers the entire canvas including
608 int by = ty - marginTop(); local
612 paintFillLayers(paintInfo, bgColor, bgLayer, bx, by, bw, bh, CompositeSourceOver, bodyObject);
1222 // its controlClipRect will be wrong. For overflow clip we use the values cached by the layer.
1436 // Children of a horizontal marquee do not fill the container by default.
1483 // Cell height is managed by th
[all...]
/external/svox/pico/lib/
H A Dpicoos.c10 * Unless required by applicable law or agreed to in writing, software
392 the size is therefore computed by inspecting the end addresses of the fields 'size' and 'leftCell';
1202 picoos_bool picoos_ReadByte(picoos_File f, picoos_uint8 * by) argument
1206 return picoos_ReadBytes(f, by, &n) && (n == 1);
1241 picoos_uint8 picoos_WriteByte(picoos_File f, picoos_char by) argument
1245 return picoos_WriteBytes(f, (picoos_char *) &by, &n);
2038 picoos_uint8 by[2]; local
2040 if (picoos_ReadBytes(file, by, &n) && 2 == n) {
2042 *val = (picoos_uint16) by[1] << 8 | (picoos_uint16) by[
2057 picoos_uint8 by[4]; local
2097 picoos_uint8 * by = data + *pos; local
2107 picoos_uint8 * by = data + *pos; local
2122 picoos_uint8 by[2]; local
2131 picoos_uint8 by[4]; local
2143 picoos_uint8 * by = data + *pos; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c74 ** Include the configuration header output by 'configure' if we're using the
143 ** some extent by SQLITE_MAX_SQL_LENGTH. But sometime you might
211 ** imposed by the necessity of storing the value in a 2-byte unsigned integer
361 ** SQLITE_CONFIG_MEMSTATUS are available by default or not. This value can
540 ** notice, and should not be referenced by programs that use SQLite.
598 ** Ensure these symbols were not defined by some previous header file.
646 ** verify that values returned by these interfaces match the macros in
692 ** This interface can be used by an application to make sure that the
698 ** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but
703 ** thread safety, not any run-time changes to that setting made by
52905 } by; member in union:vdbeExecUnion
[all...]

Completed in 563 milliseconds