/external/opencv/cv/src/ |
cvrotcalipers.cpp | 65 // points - convex hull vertices ( any orientation ) 70 // left, bottom, right, top - indexes of extremal points 72 // In case CV_CALIPERS_MAXDIST it points to float value - 93 icvRotatingCalipers( CvPoint2D32f* points, int n, int mode, float* out ) 113 CvPoint2D32f pt0 = points[0]; 134 CvPoint2D32f pt = points[(i+1) & (i+1 < n ? -1 : 0)]; 250 float dx = points[seq[opposite_el]].x - points[seq[main_element]].x; 251 float dy = points[seq[opposite_el]].y - points[seq[main_element]].y 352 CvPoint2D32f* points = 0; local [all...] |
cvlinefit.cpp | 46 icvFitLine2D_wods( CvPoint2D32f * points, int _count, float *weights, float *line ) 60 x += points[i].x; 61 y += points[i].y; 62 x2 += points[i].x * points[i].x; 63 y2 += points[i].y * points[i].y; 64 xy += points[i].x * points[i].y; 72 x += weights[i] * points[i].x [all...] |
/external/skia/include/core/ |
SkPathRef.h | 23 * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods 24 * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an 30 * The points and verbs are stored in a single allocation. The points are at the begining of the 31 * allocation while the verbs are stored at end of the allocation, in reverse order. Thus the points 50 * Returns the array of points. 52 SkPoint* points() { return fPathRef->getPoints(); } function in class:SkPathRef::Editor 53 const SkPoint* points() const { return fPathRef->points(); } function in class:SkPathRef::Editor 56 * Gets the ith point. Shortcut for this->points() + 219 const SkPoint* points() const { SkDEBUGCODE(this->validate();) return fPoints; } function in class:SkPathRef [all...] |
/external/chromium/ui/gfx/ |
point.cc | 23 POINTS points = MAKEPOINTS(point); local 24 x_ = points.x; 25 y_ = points.y;
|
/external/chromium_org/chrome/browser/resources/chromeos/first_run/ |
bubble.css | 17 .bubble .arrow.points-up { 22 .bubble .arrow.points-right { 27 .bubble .arrow.points-down { 32 .bubble .arrow.points-left {
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/docs/ |
source_layout.txt | 9 gd3d10 contains the implementation of Direct3D 10 and 10.1 with Gallium-specific entry points 10 gd3d11 contains the implementation of Direct3D 11 with Gallium-specific entry points 12 dxgid3d10 contains the DXGI-based "official" entry points to Direct3D 10.0 and 10.1 13 dxgid3d11 contains the DXGI-based "official" entry points to Direct3D 11
|
/external/chromium_org/third_party/molokocacao/ |
NSBezierPath+MCAdditions.m | 22 CGPoint *points = element->points; 27 [path moveToPoint:NSMakePoint(points[0].x, points[0].y)]; 32 [path lineToPoint:NSMakePoint(points[0].x, points[0].y)]; 39 NSPoint interpolatedPoint = NSMakePoint((currentPoint.x + 2*points[0].x) / 3, (currentPoint.y + 2*points[0].y) / 3); 40 [path curveToPoint:NSMakePoint(points[1].x, points[1].y) controlPoint1:interpolatedPoint controlPoint2:interpolatedPoint] [all...] |
/external/chromium_org/ui/gfx/ |
path_gtk.cc | 22 scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); 23 getPoints(points.get(), point_count); 27 gdk_points[i].x = SkScalarRound(points[i].fX); 28 gdk_points[i].y = SkScalarRound(points[i].fY);
|
path_x11.cc | 32 scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); 33 path.getPoints(points.get(), point_count); 36 x11_points[i].x = SkScalarRound(points[i].fX); 37 x11_points[i].y = SkScalarRound(points[i].fY);
|
point.cc | 19 POINTS points = MAKEPOINTS(point); local 20 set_x(points.x); 21 set_y(points.y);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/docs/ |
source_layout.txt | 9 gd3d10 contains the implementation of Direct3D 10 and 10.1 with Gallium-specific entry points 10 gd3d11 contains the implementation of Direct3D 11 with Gallium-specific entry points 12 dxgid3d10 contains the DXGI-based "official" entry points to Direct3D 10.0 and 10.1 13 dxgid3d11 contains the DXGI-based "official" entry points to Direct3D 11
|
/external/valgrind/main/memcheck/tests/ |
execve2.stderr.exp | 1 Syscall param execve(filename) points to unaddressable byte(s)
|
/ndk/sources/android/support/src/musl-locale/ |
wcsxfrm.c | 3 /* collate only by code points */
|
/frameworks/av/media/libstagefright/codecs/aacenc/inc/ |
bitbuffer.h | 37 The pointer 'pReadNext' points to the next available word, where bits can be read from. The pointer 38 'pWriteNext' points to the next available word, where bits can be written to. The pointer pBitBufBase 39 points to the start of the bitstream buffer and the pointer pBitBufEnd points to the end of the bitstream 48 UWord8 *pBitBufBase; /*!< pointer points to first position in bitstream buffer */ 49 UWord8 *pBitBufEnd; /*!< pointer points to last position in bitstream buffer */ 51 UWord8 *pWriteNext; /*!< pointer points to next available word in bitstream buffer to write */
|
/external/chromium_org/chrome/browser/ui/gtk/bubble/ |
bubble_gtk_browsertest.cc | 61 } points[] = { local 76 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(points); ++i) { 82 gfx::Rect rect(points[i].x, points[i].y, 0, 0); 92 EXPECT_EQ(points[i].expected, bubble->actual_frame_style_); 104 } points[] = { local 117 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(points); ++i) { 123 gfx::Rect rect(points[i].x, points[i].y, 0, 0); 133 EXPECT_EQ(points[i].expected, bubble->actual_frame_style_) [all...] |
/external/chromium_org/content/browser/web_contents/aura/ |
shadow_layer_delegate.cc | 37 SkPoint points[2]; local 40 points[0].iset(0, 0); 41 points[1].iset(kShadowThick, 0); 44 SkGradientShader::CreateLinear(points, kShadowColors, NULL, 45 arraysize(points), SkShader::kRepeat_TileMode, NULL));
|
/packages/apps/Settings/src/com/android/settings/widget/ |
InvertedChartAxis.java | 61 final float[] points = mWrapped.getTickPoints(); local 62 for (int i = 0; i < points.length; i++) { 63 points[i] = mSize - points[i]; 65 return points;
|
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
ShadowUtil.java | 61 * Updates a points arrays with the frustum corners of the provided camera.
63 * @param points
65 public static void updateFrustumPoints2(Camera viewCam, Vector3f[] points) {
71 points[0].set(viewCam.getWorldCoordinates(new Vector2f(0, 0), n));
72 points[1].set(viewCam.getWorldCoordinates(new Vector2f(0, h), n));
73 points[2].set(viewCam.getWorldCoordinates(new Vector2f(w, h), n));
74 points[3].set(viewCam.getWorldCoordinates(new Vector2f(w, 0), n));
76 points[4].set(viewCam.getWorldCoordinates(new Vector2f(0, 0), f));
77 points[5].set(viewCam.getWorldCoordinates(new Vector2f(0, h), f));
78 points[6].set(viewCam.getWorldCoordinates(new Vector2f(w, h), f)); [all...] |
/external/chromium_org/third_party/flot/ |
jquery.flot.errorbars.min.js | 11 This plugin allows you to plot error-bars over points. Set "errorbars" inside 12 the points series to the axis name over which there will be error values in 19 points: { 57 Color and radius both default to the same ones of the points series if not 60 points (with radius: 0), and still showing end caps on the error-bars. 61 shadowSize and lineWidth are derived as well from the points series. 63 */(function(e){function n(e,t,n,r){if(!t.points.errorbars)return;var i=[{x:!0,number:!0,required:!0},{y:!0,number:!0,required:!0}],s=t.points.errorbars;if(s=="x"||s=="xy")t.points.xerr.asymmetric?(i.push({x:!0,number:!0,required:!0}),i.push({x:!0,number:!0,required:!0})):i.push({x:!0,number:!0,required:!0});if(s=="y"||s=="xy")t.points.yerr.asymmetric?(i.push({y:!0,number:!0,required:!0}),i.push({y:!0,number:!0,required:!0})):i.push (…) [all...] |
/external/chromium_org/third_party/freetype/src/autofit/ |
afhints.h | 72 * points that are approximately aligned along a coordinate axis. The 75 * A segment must have at least two points, except in the case of 153 * Touched points 163 * Segments are `round' or `flat', depending on the series of points 166 * points) are both conic or cubic control points. Otherwise, a 170 * Strong Points 172 * Experience has shown that points which are not part of an edge need 174 * these are not part of the contour of those particular points. 177 * - angle points (i.e., points where the `in' and `out' directio 343 AF_Point points; \/* points array *\/ member in struct:AF_GlyphHintsRec_ [all...] |
afhints.c | 184 AF_Point points = hints->points; local 185 AF_Point limit = points + hints->num_points; 189 FT_TRACE7(( "Table of points:\n" 193 for ( point = points; point < limit; point++ ) 196 point - points, 258 AF_Point points = hints->points; local 284 AF_INDEX_NUM( seg->first, points ), 285 AF_INDEX_NUM( seg->last, points ), 597 AF_Point points; local 914 AF_Point points = hints->points; local 1169 AF_Point points = hints->points; local 1302 AF_Point points = hints->points; local [all...] |
/external/freetype/src/autofit/ |
afhints.h | 72 * points that are approximately aligned along a coordinate axis. The 75 * A segment must have at least two points, except in the case of 153 * Touched points 163 * Segments are `round' or `flat', depending on the series of points 166 * points) are both conic or cubic control points. Otherwise, a 170 * Strong Points 172 * Experience has shown that points which are not part of an edge need 174 * these are not part of the contour of those particular points. 177 * - angle points (i.e., points where the `in' and `out' directio 343 AF_Point points; \/* points array *\/ member in struct:AF_GlyphHintsRec_ [all...] |
afhints.c | 184 AF_Point points = hints->points; local 185 AF_Point limit = points + hints->num_points; 189 FT_TRACE7(( "Table of points:\n" 193 for ( point = points; point < limit; point++ ) 196 point - points, 258 AF_Point points = hints->points; local 284 AF_INDEX_NUM( seg->first, points ), 285 AF_INDEX_NUM( seg->last, points ), 597 AF_Point points; local 914 AF_Point points = hints->points; local 1169 AF_Point points = hints->points; local 1302 AF_Point points = hints->points; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/ |
WireFrustum.java | 44 public WireFrustum(Vector3f[] points){ 45 if (points != null) 46 setBuffer(Type.Position, 3, BufferUtils.createFloatBuffer(points)); 69 public void update(Vector3f[] points){ 72 setBuffer(Type.Position, 3, BufferUtils.createFloatBuffer(points)); 76 FloatBuffer b = BufferUtils.createFloatBuffer(points);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
punyref.h | 61 /* is represented as an array of Unicode code points (not code */ 63 /* will be represented as an array of ASCII code points. The */ 67 /* needed.) The input_length is the number of code points in */ 69 /* caller passes in the maximum number of code points that it */ 71 /* number of code points actually output. The case_flags array */ 75 /* it be forced to lowercase (if possible). ASCII code points */ 79 /* letters are left as they are, and other code points are */ 93 /* represented as an array of ASCII code points, and the output */ 94 /* will be represented as an array of Unicode code points. The */ 95 /* input_length is the number of code points in the input. The * [all...] |