Searched defs:point (Results 176 - 200 of 602) sorted by last modified time

1234567891011>>

/external/deqp/modules/gles3/functional/
H A Des3fFboRenderTest.cpp296 deUint32 point = ndx ? GL_STENCIL_ATTACHMENT : GL_DEPTH_ATTACHMENT; local
303 case GL_TEXTURE_2D: context.framebufferTexture2D(GL_FRAMEBUFFER, point, GL_TEXTURE_2D, m_depthStencilBuffer, 0); break;
304 case GL_RENDERBUFFER: context.framebufferRenderbuffer(GL_FRAMEBUFFER, point, GL_RENDERBUFFER, m_depthStencilBuffer); break;
892 deUint32 point = ndx ? GL_STENCIL_ATTACHMENT : GL_DEPTH_ATTACHMENT; local
899 case GL_TEXTURE_2D: context.framebufferTexture2D(GL_FRAMEBUFFER, point, GL_TEXTURE_2D, fboA.getDepthStencilBuffer(), 0); break;
900 case GL_RENDERBUFFER: context.framebufferRenderbuffer(GL_FRAMEBUFFER, point, GL_RENDERBUFFER, fboA.getDepthStencilBuffer()); break;
1373 deUint32 point = ndx == 0 ? GL_COLOR_ATTACHMENT0 : local
1387 ctx.framebufferTexture2D(GL_FRAMEBUFFER, point, GL_TEXTURE_2D, buf, 0);
1391 ctx.framebufferRenderbuffer(GL_FRAMEBUFFER, point, GL_RENDERBUFFER, buf);
H A Des3fMultisampleTests.cpp102 static inline bool isInsideQuad (const IVec2& point, const IVec2& p0, const IVec2& p1, const IVec2& p2, const IVec2& p3) argument
104 int dot0 = (point.x()-p0.x()) * (p1.y()-p0.y()) + (point.y()-p0.y()) * (p0.x()-p1.x());
105 int dot1 = (point.x()-p1.x()) * (p2.y()-p1.y()) + (point.y()-p1.y()) * (p1.x()-p2.x());
106 int dot2 = (point.x()-p2.x()) * (p3.y()-p2.y()) + (point.y()-p2.y()) * (p2.x()-p3.x());
107 int dot3 = (point.x()-p3.x()) * (p0.y()-p3.y()) + (point.y()-p3.y()) * (p3.x()-p0.x());
/external/clang/lib/Serialization/
H A DASTWriter.cpp2531 const DiagnosticsEngine::DiagStatePoint &point = *I; local
2532 if (point.Loc.isInvalid())
2535 Record.push_back(point.Loc.getRawEncoding());
2536 unsigned &DiagStateID = DiagStateIDMap[point.State];
2542 I = point.State->begin(), E = point.State->end(); I != E; ++I) {
3689 // If we only have a single declaration, there is no point in storing
/external/clang/test/Analysis/
H A Darray-struct-region.c61 struct point { int x; int y; }; struct
62 struct circle { struct point o; int r; };
66 result.o = (struct point){0, 0};
79 struct circle_f { struct point o; float r; };
83 result.o = (struct point){0, 0};
258 struct point center;
261 extern int test13116945(struct point x);
262 static void radar13116945(struct point centerCoordinate) {
/external/clang/test/CodeGen/
H A Dstruct.c6 } point; variable in typeref:struct:__anon18700
9 point.x = 42;
/external/clang/test/Sema/
H A Ddesignated-initializers.c25 struct point { struct
30 struct point p1 = {
33 .a = 4.0, // expected-error{{field designator 'a' does not refer to any field in type 'struct point'}}
36 struct point p2 = {
40 struct point array[10] = {
43 [2].z = 3.0, // expected-error{{field designator 'z' does not refer to any field in type 'struct point'}}
46 struct point array2[10] = {
52 struct point array3[10] = {
57 struct point top_left;
58 struct point bottom_righ
[all...]
H A Dflexible-array-init.c39 struct point { struct
45 struct point points[]; // expected-note{{initialized flexible array member 'points' is here}}
/external/chromium_org/v8/test/cctest/
H A Dtest-bignum-dtoa.cc63 int point; local
65 BignumDtoa(1.0, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
67 CHECK_EQ(1, point);
69 BignumDtoa(1.0, BIGNUM_DTOA_FIXED, 3, buffer, &length, &point);
70 CHECK_GE(3, length - point);
73 CHECK_EQ(1, point);
75 BignumDtoa(1.0, BIGNUM_DTOA_PRECISION, 3, buffer, &length, &point);
79 CHECK_EQ(1, point);
81 BignumDtoa(1.5, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
83 CHECK_EQ(1, point);
261 int point; local
279 int point; local
300 int point; local
[all...]
H A Dtest-dtoa.cc63 int point; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
68 CHECK_EQ(1, point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
73 CHECK_EQ(1, point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
78 CHECK_EQ(1, point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
82 CHECK_EQ(1, point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
272 int point; local
292 int point; local
315 int point; local
[all...]
H A Dtest-fast-dtoa.cc60 int point; local
65 buffer, &length, &point);
68 CHECK_EQ(-323, point);
72 buffer, &length, &point);
75 CHECK_EQ(309, point);
78 buffer, &length, &point);
81 CHECK_EQ(10, point);
84 buffer, &length, &point);
87 CHECK_EQ(299, point);
90 buffer, &length, &point);
130 int point; local
232 int point; local
261 int point; local
[all...]
H A Dtest-fixed-dtoa.cc46 int point; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
50 CHECK_EQ(1, point);
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
54 CHECK_EQ(1, point);
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
58 CHECK_EQ(1, point);
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
62 CHECK_EQ(10, point);
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
497 int point; local
[all...]
/external/chromium_org/v8/src/
H A Ddtoa.cc34 Vector<char> buffer, int* sign, int* length, int* point) {
49 *point = 1;
62 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
65 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
69 buffer, length, point);
79 BignumDtoa(v, bignum_mode, requested_digits, buffer, length, point);
33 DoubleToAscii(double v, DtoaMode mode, int requested_digits, Vector<char> buffer, int* sign, int* length, int* point) argument
H A Dfixed-dtoa.cc192 // we simply switch the first digit to '1' and update the decimal-point
193 // (indicating that the point is now one digit to the right).
201 // The given fractionals number represents a fixed-point number with binary
202 // point at bit (-exponent).
208 // generated by this function might be updated, and the decimal-point variable
216 // 'fractionals' is a fixed-point number, with binary point at bit
218 // is a fixed-point number, with binary point at bit 'point'
222 int point = -exponent; local
250 int point = 128; local
[all...]
/external/chromium_org/tools/gyp/tools/emacs/
H A Dgyp.el95 (defun gyp-invalidate-parse-states-after (target-point)
96 "Erase any parse information after target-point."
97 (while (> (caar gyp-parse-history) target-point)
100 (defun gyp-parse-point ()
101 "The point of the last parse state added by gyp-parse-to."
105 "A list of section symbols holding at the last parse state point."
112 (defun gyp-add-parse-history (point sections)
115 (while (>= (caar gyp-parse-history) point)
117 (setq gyp-parse-history (cons (cons point sections) gyp-parse-history)))
119 (defun gyp-parse-to (target-point)
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicParameterization_TestUtility.cpp38 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point) { argument
41 double xxx = coeffs[xxx_coeff] * point.x * point.x * point.x;
42 double xxy = coeffs[xxy_coeff] * point.x * point.x * point.y;
43 double xyy = coeffs[xyy_coeff] * point.x * point.y * point
[all...]
H A DQuadraticParameterization_TestUtility.cpp6 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point) { argument
8 double xx = q.x2() * point.x * point.x;
9 double xy = q.xy() * point.x * point.y;
10 double yy = q.y2() * point.y * point.y;
11 double x = q.x() * point.x;
12 double y = q.y() * point.y;
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfFont.h188 SkPoint point = SkPoint::Make(SkDoubleToScalar(0), SkDoubleToScalar(0)); local
189 pdfContext->fGraphicsState.fMatrixTm.mapPoints(&point, 1);
190 printf("DrawText at (%f, %f)\n", SkScalarToDouble(point.x()),
191 SkScalarToDouble(point.y()));
/external/chromium_org/third_party/skia/gm/
H A Dconvexpolyclip.cpp108 SkPoint point; variable
109 point.fY = SkScalarSinCos(angle, &point.fX);
110 point.scale(kRadius);
111 point = center + point;
113 hexagon.moveTo(point);
115 hexagon.lineTo(point);
H A Dconvexpolyeffect.cpp66 SkPoint point; variable
67 point.fY = SkScalarSinCos(angle, &point.fX);
68 point.scale(kRadius);
69 point = center + point;
71 ngon.moveTo(point);
73 ngon.lineTo(point);
H A Dinternal_links.cpp47 SkPoint point = SkPoint::Make(SkIntToScalar(100), SkIntToScalar(50)); local
48 drawLabeledRect(canvas, "Target A", point.x(), point.y());
49 SkAnnotateNamedDestination(canvas, point, name.get());
/external/chromium_org/third_party/skia/src/core/
H A DSkAnnotation.cpp71 void SkAnnotateNamedDestination(SkCanvas* canvas, const SkPoint& point, SkData* name) { argument
77 canvas->drawPoint(point.x(), point.y(), paint);
H A DSkPictureRecord.cpp875 // op + paint index + mode + count + point data
1115 // + y-pos + actual x-point data
1118 // + x&y point data
1424 // update the cull skip offset to point past this op.
1497 void SkPictureRecord::addPoint(const SkPoint& point) { argument
1498 fWriter.writePoint(point);
H A DSkReadBuffer.cpp130 void SkReadBuffer::readPoint(SkPoint* point) { argument
131 point->fX = fReader.readScalar();
132 point->fY = fReader.readScalar();
H A DSkValidatingReadBuffer.cpp122 void SkValidatingReadBuffer::readPoint(SkPoint* point) { argument
123 point->fX = this->readScalar();
124 point->fY = this->readScalar();
H A DSkWriteBuffer.cpp103 void SkWriteBuffer::writePoint(const SkPoint& point) { argument
104 fWriter.writeScalar(point.fX);
105 fWriter.writeScalar(point.fY);
108 void SkWriteBuffer::writePointArray(const SkPoint* point, uint32_t count) { argument
110 fWriter.write(point, count * sizeof(SkPoint));

Completed in 418 milliseconds

1234567891011>>