HomeSort by relevance Sort by last modified time
    Searched defs:by (Results 1 - 25 of 65) sorted by null

1 2 3

  /ndk/build/core/
definitions-utils.mk 9 # Unless required by applicable law or agreed to in writing, software
43 # Note : This is equivalent to the 'uniq' function provided by GMSL,
74 # Function : filter-by
81 filter-by = $(strip \
85 -test-filter-by = \
87 $(call test-expect,,$(call filter-by,,-local-func))\
88 $(call test-expect,foo,$(call filter-by,foo,-local-func))\
89 $(call test-expect,foo,$(call filter-by,foo bar,-local-func))\
90 $(call test-expect,foo foo,$(call filter-by,aaa foo bar foo,-local-func))\
92 $(call test-expect,,$(call filter-by,,-local-func))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
UnitBezier.h 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
43 by = 3.0 * (p2y - p1y) - cy;
44 ay = 1.0 - cy - by;
55 return ((ay * t + by) * t + cy) * t;
124 double by; member in struct:WebCore::UnitBezier
  /external/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 4 * 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);
PathOpsSimplifyQuadThreadedTest.cpp 4 * 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);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 4 * 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);
PathOpsSimplifyTrianglesThreadedTest.cpp 4 * 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)) {
PathOpsQuadLineIntersectionThreadedTest.cpp 4 * Use of this source code is governed by a BSD-style license that can be
69 // find a point on a quad by choosing a t from 0 to 1
81 int by = state.fB >> 2; local
84 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
WritePixelsTest.cpp 5 * Use of this source code is governed by a BSD-style license that can be
252 int by = cy - writeY; local
253 uint32_t bmpColor8888 = getBitmapColor(bx, by, bitmap.width(), config8888);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 10 * Unless required by applicable law or agreed to in writing, software
25 byte [] by; field in class:YuvTest
47 by = new byte[w*h];
51 for (int i=0; i < by.length; i++) {
52 by[i] = (byte)r.nextInt(256);
72 ay.copyFrom(by);
97 tmp[i++] = by[j];
143 tmp[i++] = by[j];
186 tmp[i++] = by[j];
  /external/chromium_org/tools/site_compare/commands/
maskmaker.py 2 # Use of this source code is governed by a BSD-style license that can be
7 Works by repeated invokation of a browser and scraping of the resulting page.
15 import time # Used for sleep() and naming masks by time namespace
230 print (" Scrape differed from baseline by %.2f percent, ignoring"
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolator.java 10 * Unless required by applicable law or agreed to in writing, software
96 // B(bx,by) is the slope vector of the tangent at p2.
98 final float by = (mYCoords[p3] - mP1Y) / 2.0f; local
99 final float crossProdAB = ax * by - ay * bx;
100 final float dotProdAB = ax * bx + ay * by;
120 // B(bx,by) is the slope vector of the tangent at p1.
122 final float by = (mP2Y - mYCoords[p0]) / 2.0f; local
123 final float crossProdAB = ax * by - ay * bx;
124 final float dotProdAB = ax * bx + ay * by;
142 * can be defined by
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 147 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/v8/src/
interpreter-irregexp.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
155 // A simple abstraction over the backtracking stack used by the interpreter.
157 // the memory held by the stack is released or remembered in a cache if the
597 int by = static_cast<uint32_t>(insn) >> BYTECODE_SHIFT; local
598 if (subject.length() - current > by) {
599 current = subject.length() - by;
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 147 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/v8/src/
interpreter-irregexp.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
148 // A simple abstraction over the backtracking stack used by the interpreter.
150 // the memory held by the stack is released or remembered in a cache if the
612 int by = static_cast<uint32_t>(insn) >> BYTECODE_SHIFT; local
613 if (subject.length() - current > by) {
614 current = subject.length() - by;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbshelve.py 3 # Copyright (c) 1997-2001 by Total Control Software
41 import cPickle # Will be converted to "pickle" by "2to3" namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbshelve.py 3 # Copyright (c) 1997-2001 by Total Control Software
41 import cPickle # Will be converted to "pickle" by "2to3" namespace
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.cpp 11 * License as published by the Free Software Foundation; either
584 String by = byValue(); local
594 m_animationValid = calculateFromAndByValues(from, by);
596 m_animationValid = calculateFromAndByValues(emptyString(), by);
  /external/opencv/cv/src/
cvrotcalipers.cpp 5 // By downloading, copying, installing or using the software you agree to this license.
29 // This software is provided by the copyright holders and contributors "as is" and
107 /* this is a first base bector (a,b) initialized by (1,0) */
156 double by = vect[i].y; local
158 double convexity = ax * by - ay * bx;
166 ay = by;
181 /* all of edges will be checked while rotating calipers by 90 degrees */
cvconvhull.cpp 5 // By downloading, copying, installing or using the software you agree to this license.
29 // This software is provided by the copyright holders and contributors "as is" and
71 int by = nexty - cury; local
73 if( CV_SIGN(by) != nsign )
78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */
144 float by = nexty - cury; local
146 if( CV_SIGN( by ) != nsign )
151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */
344 // sort the point set by x-coordinate, find min and max y
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 10 * Unless required by applicable law or agreed to in writing, software
30 /*Compute the linear constraint on H obtained by requiring that the
42 /*Compute two constraints on H generated by the correspondence (Xp,X),
52 each constraint is generated by considering the ratio between a
111 generated by a rotation with a common unknown focal length. No specific normalization
116 double m,ax,ay,apx,apy,bx,by,bpx,bpy; local
137 by=x2[1]*m;
143 by dividing out the root l=0 from the equation
144 (l(ax*bx+ay*by)+1)^2*(l(apx^2+apy^2)+1)*(l(bpx^2+bpy^2)+1)=
145 (l(apx*bpx+apy*bpy)+1)^2*(l(ax^2+ay^2)+1)*(l(bx^2+by^2)+1)*
    [all...]
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_image_homography.cpp 10 * Unless required by applicable law or agreed to in writing, software
30 /*Compute the linear constraint on H obtained by requiring that the
42 /*Compute two constraints on H generated by the correspondence (Xp,X),
52 each constraint is generated by considering the ratio between a
111 generated by a rotation with a common unknown focal length. No specific normalization
116 double m,ax,ay,apx,apy,bx,by,bpx,bpy; local
137 by=x2[1]*m;
143 by dividing out the root l=0 from the equation
144 (l(ax*bx+ay*by)+1)^2*(l(apx^2+apy^2)+1)*(l(bpx^2+bpy^2)+1)=
145 (l(apx*bpx+apy*bpy)+1)^2*(l(ax^2+ay^2)+1)*(l(bx^2+by^2)+1)*
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 10 * Unless required by applicable law or agreed to in writing, software
30 /*Compute the linear constraint on H obtained by requiring that the
42 /*Compute two constraints on H generated by the correspondence (Xp,X),
52 each constraint is generated by considering the ratio between a
111 generated by a rotation with a common unknown focal length. No specific normalization
116 double m,ax,ay,apx,apy,bx,by,bpx,bpy; local
137 by=x2[1]*m;
143 by dividing out the root l=0 from the equation
144 (l(ax*bx+ay*by)+1)^2*(l(apx^2+apy^2)+1)*(l(bpx^2+bpy^2)+1)=
145 (l(apx*bpx+apy*bpy)+1)^2*(l(ax^2+ay^2)+1)*(l(bx^2+by^2)+1)*
    [all...]
  /external/dropbear/libtommath/
bn.tex 80 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
159 ``tommath\_superclass.h''. By default, the symbol ``LTM\_ALL'' shall be defined which simply
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 mus
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 4 * Use of this source code is governed by a BSD-style license
450 * a gaussian distribution with sigma determined by q.
1108 int by, bx; local
    [all...]

Completed in 1977 milliseconds

1 2 3