HomeSort by relevance Sort by last modified time
    Searched defs:points (Results 101 - 125 of 226) sorted by null

1 2 3 45 6 7 8 910

  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_lib.c 1023 int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx)
1034 if (group->meth != points[i]->meth)
1040 return group->meth->points_make_affine(group, num, points, ctx);
1051 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
1055 return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
1057 return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
1065 const EC_POINT *points[1]; local
1068 points[0] = point;
1071 return EC_POINTs_mul(group, r, g_scalar, (point != NULL && p_scalar != NULL), points, scalars, ctx);
ectest.c 345 EC_POINT *points[3];
347 points[0] = R;
348 points[1] = Q;
349 points[2] = P;
350 if (!EC_POINTs_make_affine(group, 2, points, ctx)) ABORT;
632 const EC_POINT *points[4]; local
637 points[0] = Q;
638 points[1] = Q;
639 points[2] = Q;
640 points[3] = Q
1108 const EC_POINT *points[3]; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPathRef.h 16 * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods
17 * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an
23 * The points and verbs are stored in a single allocation. The points are at the begining of the
24 * allocation while the verbs are stored at end of the allocation, in reverse order. Thus the points
57 * Returns the array of points.
59 SkPoint* points() { return fPathRef->fPoints; } function in class:SkPathRef::Editor
62 * Gets the ith point. Shortcut for this->points() + i
66 return this->points() + i;
70 * Adds the verb and allocates space for the number of points indicated by the verb. Th
228 const SkPoint* points() const { this->validate(); return fPoints; } function in class:SkPathRef
    [all...]
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkLinearGradient.cpp 504 SkPoint points[] = {{random->nextUScalar1(), random->nextUScalar1()}, local
512 SkAutoTUnref<SkShader> shader(SkGradientShader::CreateLinear(points,
  /external/chromium_org/ui/aura/test/
event_generator.cc 300 gfx::Point points[kMaxTouchPoints]; local
309 points[i] = start[i];
310 ui::TouchEvent press(ui::ET_TOUCH_PRESSED, points[i], i, press_time);
318 points[i].Offset(delta_x, delta_y);
319 ui::TouchEvent move(ui::ET_TOUCH_MOVED, points[i], i, move_time);
328 ui::ET_TOUCH_RELEASED, points[i], i, release_time);
  /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...]
  /external/opencv/cvaux/src/
cv3dtracker.cpp 82 CvPoint3D32f *object_points = NULL; // real-world coordinates of checkerboard points
83 CvPoint2D32f *points = NULL; // 2d coordinates of checkerboard points as seen by a camera local
128 CV_CALL(points = (CvPoint2D32f *)cvAlloc(num_points * sizeof(CvPoint2D32f)));
130 // fill in the real-world coordinates of the checkerboard points
172 etalon_size, points, &count) != 0;
176 // If found is true, it means all the points were found (count = num_points).
177 // If found is false but count is non-zero, it means that not all points were found.
179 cvFindCornerSubPix(img, points, count, cvSize(5,5), cvSize(-1,-1),
187 points[i].y = samples[c]->height - 1 - points[i].y
    [all...]
  /external/openssl/crypto/ec/
ec_lib.c 1023 int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx)
1034 if (group->meth != points[i]->meth)
1040 return group->meth->points_make_affine(group, num, points, ctx);
1051 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
1055 return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
1057 return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
1065 const EC_POINT *points[1]; local
1068 points[0] = point;
1071 return EC_POINTs_mul(group, r, g_scalar, (point != NULL && p_scalar != NULL), points, scalars, ctx);
ectest.c 345 EC_POINT *points[3];
347 points[0] = R;
348 points[1] = Q;
349 points[2] = P;
350 if (!EC_POINTs_make_affine(group, 2, points, ctx)) ABORT;
632 const EC_POINT *points[4]; local
637 points[0] = Q;
638 points[1] = Q;
639 points[2] = Q;
640 points[3] = Q
1108 const EC_POINT *points[3]; local
    [all...]
  /external/skia/src/core/
SkPathRef.h 16 * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods
17 * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an
23 * The points and verbs are stored in a single allocation. The points are at the begining of the
24 * allocation while the verbs are stored at end of the allocation, in reverse order. Thus the points
57 * Returns the array of points.
59 SkPoint* points() { return fPathRef->fPoints; } function in class:SkPathRef::Editor
62 * Gets the ith point. Shortcut for this->points() + i
66 return this->points() + i;
70 * Adds the verb and allocates space for the number of points indicated by the verb. Th
228 const SkPoint* points() const { this->validate(); return fPoints; } function in class:SkPathRef
    [all...]
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 504 SkPoint points[] = {{random->nextUScalar1(), random->nextUScalar1()}, local
512 SkAutoTUnref<SkShader> shader(SkGradientShader::CreateLinear(points,
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java 203 ArrayList<Point> points = mPointCloud; local
206 for (int i = 0; i < points.size(); i++) {
207 Point point = points.get(i);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
PointCloud.java 205 ArrayList<Point> points = mPointCloud; local
208 for (int i = 0; i < points.size(); i++) {
209 Point point = points.get(i);
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java 205 ArrayList<Point> points = mPointCloud; local
208 for (int i = 0; i < points.size(); i++) {
209 Point point = points.get(i);
  /external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk.cc 285 std::vector<GdkPoint> points;
291 // If we're stroking the frame, we need to offset some of our points by 1
302 points.push_back(MakeBidiGdkPoint(
304 points.push_back(MakeBidiGdkPoint(
310 points.push_back(MakeBidiGdkPoint(
312 points.push_back(MakeBidiGdkPoint(
314 points.push_back(MakeBidiGdkPoint(
316 points.push_back(MakeBidiGdkPoint(
322 points.push_back(MakeBidiGdkPoint(
324 points.push_back(MakeBidiGdkPoint
454 std::vector<GdkPoint> points = MakeFramePolygonPoints( local
674 std::vector<GdkPoint> points = MakeFramePolygonPoints( local
    [all...]
  /external/chromium_org/chrome/installer/setup/
uninstall.cc 188 const rlz_lib::AccessPoint points[] = {rlz_lib::CHROME_OMNIBOX, local
192 rlz_lib::ClearProductState(rlz_lib::CHROME, points);
199 rlz_lib::ClearProductState(rlz_lib::CHROME, points);
    [all...]
  /external/chromium_org/chrome/third_party/mozilla_security_manager/
nsNSSCertHelper.cpp 756 CRLDistributionPoint** points; local
783 for (points = crldp->distPoints; *points; ++points) {
784 point = *points;
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afhints.c 173 AF_Point points = hints->points; local
174 AF_Point limit = points + hints->num_points;
178 printf( "Table of points:\n" );
182 for ( point = points; point < limit; point++ )
186 point - points,
527 * buffers since they are really within the hints->points array
547 FT_FREE( hints->points );
575 AF_Point points; local
606 * then reallocate the points arrays if necessary -
892 AF_Point points = hints->points; local
1147 AF_Point points = hints->points; local
1280 AF_Point points = hints->points; local
    [all...]
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...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttgxvar.c 107 /* Read a set of points to which the following deltas will apply. */
108 /* Points are packed with a run length encoding. */
114 /* point_cnt :: The number of points read. A zero value means that */
115 /* all points in the glyph will be affected, without */
119 /* An array of FT_UShort containing the affected points or the */
126 FT_UShort *points = NULL; local
145 if ( FT_NEW_ARRAY( points, n ) )
155 first = points[i++] = FT_GET_USHORT();
162 points[i++] = (FT_UShort)( first += FT_GET_USHORT() );
166 first = points[i++] = FT_GET_BYTE()
1342 FT_UShort* points; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 293 static INLINE VGboolean is_bezier_line(float (*points)[2], int count)
295 float dx13 = points[2][0] - points[0][0];
296 float dy13 = points[2][1] - points[0][1];
298 float dx12 = points[1][0] - points[0][0];
299 float dy12 = points[1][1] - points[0][1];
306 float dx14 = points[3][0] - points[0][0]
340 float points[4][2]; local
    [all...]
  /external/freetype/src/autofit/
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...]
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...]
  /external/freetype/src/truetype/
ttgxvar.c 109 /* Read a set of points to which the following deltas will apply. */
110 /* Points are packed with a run length encoding. */
116 /* point_cnt :: The number of points read. A zero value means that */
117 /* all points in the glyph will be affected, without */
121 /* An array of FT_UShort containing the affected points or the */
128 FT_UShort *points = NULL; local
147 if ( FT_NEW_ARRAY( points, n ) )
157 first = points[i++] = FT_GET_USHORT();
164 points[i++] = (FT_UShort)( first += FT_GET_USHORT() );
168 first = points[i++] = FT_GET_BYTE()
1323 FT_UShort* points; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
PssmShadowRenderer.java 141 private Vector3f[] points = new Vector3f[8]; field in class:PssmShadowRenderer
208 for (int i = 0; i < points.length; i++) {
209 points[i] = new Vector3f();
350 //We prevent computing the frustum points and splits with zeroed or negative near clip value
352 ShadowUtil.updateFrustumPoints(viewCam, frustumNear, zFar, 1.0f, points);
381 // update frustum points based on current camera and split
382 ShadowUtil.updateFrustumPoints(viewCam, splitsArray[i], splitsArray[i + 1], 1.0f, points);
385 ShadowUtil.updateShadowCamera(occluders, receivers, shadowCam, points, splitOccluders);

Completed in 2886 milliseconds

1 2 3 45 6 7 8 910