/external/v8/test/cctest/ |
D | test-fixed-dtoa.cc | 46 int point; in TEST() local 48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point)); in TEST() 50 CHECK_EQ(1, point); in TEST() 52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point)); in TEST() 54 CHECK_EQ(1, point); in TEST() 56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point)); in TEST() 58 CHECK_EQ(1, point); in TEST() 60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point)); in TEST() 62 CHECK_EQ(10, point); in TEST() 64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point)); in TEST() [all …]
|
D | test-bignum-dtoa.cc | 63 int point; in TEST() local 65 BignumDtoa(1.0, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point); in TEST() 67 CHECK_EQ(1, point); in TEST() 69 BignumDtoa(1.0, BIGNUM_DTOA_FIXED, 3, buffer, &length, &point); in TEST() 70 CHECK_GE(3, length - point); in TEST() 73 CHECK_EQ(1, point); in TEST() 75 BignumDtoa(1.0, BIGNUM_DTOA_PRECISION, 3, buffer, &length, &point); in TEST() 79 CHECK_EQ(1, point); in TEST() 81 BignumDtoa(1.5, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point); in TEST() 83 CHECK_EQ(1, point); in TEST() [all …]
|
D | test-dtoa.cc | 63 int point; in TEST() local 66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 68 CHECK_EQ(1, point); in TEST() 70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point); in TEST() 73 CHECK_EQ(1, point); in TEST() 75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); in TEST() 78 CHECK_EQ(1, point); in TEST() 80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 82 CHECK_EQ(1, point); in TEST() 84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point); in TEST() [all …]
|
D | test-fast-dtoa.cc | 60 int point; in TEST() local 65 buffer, &length, &point); in TEST() 68 CHECK_EQ(-323, point); in TEST() 72 buffer, &length, &point); in TEST() 75 CHECK_EQ(309, point); in TEST() 78 buffer, &length, &point); in TEST() 81 CHECK_EQ(10, point); in TEST() 84 buffer, &length, &point); in TEST() 87 CHECK_EQ(299, point); in TEST() 90 buffer, &length, &point); in TEST() [all …]
|
/external/freetype/src/autofit/ |
D | afhints.c | 231 AF_Point point; in af_glyph_hints_dump_points() local 242 for ( point = points; point < limit; point++ ) in af_glyph_hints_dump_points() 245 AF_INDEX_NUM( point, points ), in af_glyph_hints_dump_points() 246 point->fx, in af_glyph_hints_dump_points() 247 point->fy, in af_glyph_hints_dump_points() 248 point->ox / 64.0, in af_glyph_hints_dump_points() 249 point->oy / 64.0, in af_glyph_hints_dump_points() 250 point->x / 64.0, in af_glyph_hints_dump_points() 251 point->y / 64.0, in af_glyph_hints_dump_points() 252 ( point->flags & AF_FLAG_WEAK_INTERPOLATION ) ? 'w' : ' ')); in af_glyph_hints_dump_points() [all …]
|
/external/clang/test/OpenMP/ |
D | cancellation_point_messages.cpp | 5 #pragma omp cancellation point // expected-error {{one of 'for', 'parallel', 'sections' or 'taskgro… in main() 7 #pragma omp cancellation point parallel untied // expected-error {{unexpected OpenMP clause 'untied… in main() 8 #pragma omp cancellation point unknown // expected-error {{one of 'for', 'parallel', 'secti… in main() 9 #pragma omp cancellation point sections( // expected-warning {{extra tokens at the end of '#p… in main() 10 #pragma omp cancellation point for, ) // expected-warning {{extra tokens at the end of '#p… in main() 11 #pragma omp cancellation point taskgroup() // expected-warning {{extra tokens at the end of '#p… in main() 12 #pragma omp cancellation point parallel, if // expected-warning {{extra tokens at the end of '#p… in main() 14 #pragma omp cancellation point for // expected-error {{'#pragma omp cancellation point' cannot be a… in main() 20 #pragma omp cancellation point taskgroup // expected-error {{region cannot be closely nested inside… in main() 26 #pragma omp cancellation point taskgroup // expected-error {{region cannot be closely nested inside… in main() [all …]
|
D | cancellation_point_codegen.cpp | 13 #pragma omp cancellation point parallel in main() 21 #pragma omp cancellation point sections in main() 31 #pragma omp cancellation point sections in main() 34 #pragma omp cancellation point sections in main() 58 #pragma omp cancellation point for in main() 74 #pragma omp cancellation point taskgroup in main() 82 #pragma omp cancellation point sections in main() 90 #pragma omp cancellation point sections in main() 95 #pragma omp cancellation point sections in main() 101 #pragma omp cancellation point for in main()
|
/external/pdfium/third_party/freetype/src/pshinter/ |
D | pshalgo.c | 1085 PSH_Point point = glyph->points; in psh_glyph_load_points() local 1089 for ( ; count > 0; count--, point++, vec++ ) in psh_glyph_load_points() 1091 point->flags2 = 0; in psh_glyph_load_points() 1092 point->hint = NULL; in psh_glyph_load_points() 1095 point->org_u = vec->x; in psh_glyph_load_points() 1096 point->org_v = vec->y; in psh_glyph_load_points() 1100 point->org_u = vec->y; in psh_glyph_load_points() 1101 point->org_v = vec->x; in psh_glyph_load_points() 1105 point->org_x = vec->x; in psh_glyph_load_points() 1106 point->org_y = vec->y; in psh_glyph_load_points() [all …]
|
/external/freetype/src/pshinter/ |
D | pshalgo.c | 1179 PSH_Point point = glyph->points; in psh_glyph_load_points() local 1183 for ( ; count > 0; count--, point++, vec++ ) in psh_glyph_load_points() 1185 point->flags2 = 0; in psh_glyph_load_points() 1186 point->hint = NULL; in psh_glyph_load_points() 1189 point->org_u = vec->x; in psh_glyph_load_points() 1190 point->org_v = vec->y; in psh_glyph_load_points() 1194 point->org_u = vec->y; in psh_glyph_load_points() 1195 point->org_v = vec->x; in psh_glyph_load_points() 1199 point->org_x = vec->x; in psh_glyph_load_points() 1200 point->org_y = vec->y; in psh_glyph_load_points() [all …]
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathBox.h | 87 Box (const T &point); 102 void extendBy (const T &point); 112 bool intersects (const T &point) const; 153 inline Box<T>::Box (const T &point) in Box() argument 155 min = point; in Box() 156 max = point; in Box() 201 Box<T>::extendBy(const T &point) in extendBy() argument 205 if (point[i] < min[i]) in extendBy() 206 min[i] = point[i]; in extendBy() 208 if (point[i] > max[i]) in extendBy() [all …]
|
D | ImathInterval.h | 74 Interval(const T& point); 88 void extendBy(const T& point); 97 bool intersects(const T &point) const; 131 inline Interval<T>::Interval(const T& point) in Interval() argument 133 min = point; in Interval() 134 max = point; in Interval() 161 Interval<T>::extendBy(const T& point) in extendBy() argument 163 if ( point < min ) in extendBy() 164 min = point; in extendBy() 166 if ( point > max ) in extendBy() [all …]
|
/external/libxml2/result/XPath/xptr/ |
D | strpoint | 3 Expression: xpointer(start-point(string-range(//p,'multiple'))) 5 1 : Object is a point : index 1 in node TEXT 10 Expression: xpointer(end-point(string-range(//p,'multiple'))) 12 1 : Object is a point : index 8 in node TEXT 17 Expression: xpointer(start-point(string-range(//p,'test'))) 19 1 : Object is a point : index 10 in node TEXT 22 2 : Object is a point : index 10 in node TEXT 25 3 : Object is a point : index 7 in node TEXT 30 Expression: xpointer(end-point(string-range(//p,'test'))) 32 1 : Object is a point : index 13 in node TEXT [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
D | RealPointValuePair.java | 36 private final double[] point; field in RealPointValuePair 46 public RealPointValuePair(final double[] point, final double value) { in RealPointValuePair() argument 47 this.point = (point == null) ? null : point.clone(); in RealPointValuePair() 58 public RealPointValuePair(final double[] point, final double value, in RealPointValuePair() argument 60 this.point = copyArray ? in RealPointValuePair() 61 ((point == null) ? null : point.clone()) : in RealPointValuePair() 62 point; in RealPointValuePair() 70 return (point == null) ? null : point.clone(); in getPoint() 79 return point; in getPointRef()
|
D | VectorialPointValuePair.java | 36 private final double[] point; field in VectorialPointValuePair 46 public VectorialPointValuePair(final double[] point, final double[] value) { in VectorialPointValuePair() argument 47 this.point = (point == null) ? null : point.clone(); in VectorialPointValuePair() 58 public VectorialPointValuePair(final double[] point, final double[] value, in VectorialPointValuePair() argument 60 this.point = copyArray ? in VectorialPointValuePair() 61 ((point == null) ? null : point.clone()) : in VectorialPointValuePair() 62 point; in VectorialPointValuePair() 72 return (point == null) ? null : point.clone(); in getPoint() 81 return point; in getPointRef()
|
/external/llvm/test/Transforms/DeadArgElim/ |
D | 2008-01-16-VarargsParamAttrs.ll | 3 %struct.point = type { double, double } 4 …point] [ %struct.point { double 1.000000e+00, double 2.000000e+00 }, %struct.point { double 3.0000… 8 %pi = alloca %struct.point ; <%struct.point*> [#uses=0] 10 %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] 24 %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] 25 …%tmp = getelementptr [4 x %struct.point], [4 x %struct.point]* @pts, i32 0, i32 0 ; <%struct.poin… 26 %tmp1 = call i32 (i32, ...) @va1( i32 1, %struct.point* byval %tmp ) nounwind ; <i32> [#uses=0]
|
/external/pdfium/xfa/src/fwl/src/basewidget/ |
D | fwl_pushbuttonimp.cpp | 145 CFX_PointF point; in DrawWidget() local 148 point.x = m_rtClient.left; in DrawWidget() 149 point.y = m_rtClient.top; in DrawWidget() 153 point.x = m_rtClient.left + in DrawWidget() 155 point.y = m_rtClient.top; in DrawWidget() 159 point.x = m_rtClient.left + m_rtClient.width - pPicture->GetWidth(); in DrawWidget() 160 point.y = m_rtClient.top; in DrawWidget() 163 point.x = m_rtClient.left; in DrawWidget() 164 point.y = m_rtClient.top + m_rtClient.height / 2 - in DrawWidget() 168 point.x = m_rtClient.left + in DrawWidget() [all …]
|
/external/v8/benchmarks/spinning-balls/ |
D | v.js | 97 PointsList.prototype.add = function (point) { argument 98 if (this.head !== null) this.head.prev = point; 99 point.next = this.head; 100 this.head = point; 105 PointsList.prototype.remove = function (point) { argument 106 if (point.next !== null) { 107 point.next.prev = point.prev; 109 if (point.prev !== null) { 110 point.prev.next = point.next; 112 this.head = point.next; [all …]
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
D | add_point_test.py | 264 point = copy.deepcopy(_SAMPLE_POINT) 265 point['test'] = '1234/abcd_ref' 267 '/add_point', {'data': json.dumps([point])}, 278 point = copy.deepcopy(_SAMPLE_POINT) 279 point['test'] = '1234/ref' 281 '/add_point', {'data': json.dumps([point])}, 291 point = copy.deepcopy(_SAMPLE_POINT) 292 point['test'] = '_ref/abcd' 294 '/add_point', {'data': json.dumps([point])}, 301 point = copy.deepcopy(_SAMPLE_POINT) [all …]
|
/external/pdfium/fpdfsdk/include/fxedit/ |
D | fxet_list.h | 90 const CLST_Rect operator+=(const CPDF_Point& point) { 91 left += point.x; 92 right += point.x; 93 top += point.y; 94 bottom += point.y; 99 const CLST_Rect operator-=(const CPDF_Point& point) { 100 left -= point.x; 101 right -= point.x; 102 top -= point.y; 103 bottom -= point.y; [all …]
|
/external/boringssl/src/crypto/ec/ |
D | simple.c | 303 int ec_GFp_simple_point_init(EC_POINT *point) { in ec_GFp_simple_point_init() argument 304 BN_init(&point->X); in ec_GFp_simple_point_init() 305 BN_init(&point->Y); in ec_GFp_simple_point_init() 306 BN_init(&point->Z); in ec_GFp_simple_point_init() 307 point->Z_is_one = 0; in ec_GFp_simple_point_init() 312 void ec_GFp_simple_point_finish(EC_POINT *point) { in ec_GFp_simple_point_finish() argument 313 BN_free(&point->X); in ec_GFp_simple_point_finish() 314 BN_free(&point->Y); in ec_GFp_simple_point_finish() 315 BN_free(&point->Z); in ec_GFp_simple_point_finish() 318 void ec_GFp_simple_point_clear_finish(EC_POINT *point) { in ec_GFp_simple_point_clear_finish() argument [all …]
|
/external/libxml2/test/XPath/xptr/ |
D | strpoint | 1 xpointer(start-point(string-range(//p,'multiple'))) 2 xpointer(end-point(string-range(//p,'multiple'))) 3 xpointer(start-point(string-range(//p,'test'))) 4 xpointer(end-point(string-range(//p,'test'))) 5 xpointer(start-point(string-range(//*,'multiple',1,0))) 6 xpointer(end-point(string-range(//*,'multiple',1,0))) 7 xpointer(start-point(string-range(//*,'multiple',1,1))) 8 xpointer(end-point(string-range(//*,'multiple',1,1))) 9 xpointer(start-point(string-range(//p,'test'))[1])
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | resource.hpp | 42 typedef clover::point<size_t, 3> point; typedef in clover::resource 47 void copy(command_queue &q, const point &origin, const point ®ion, 48 resource &src_resource, const point &src_origin); 51 const point &origin, const point ®ion); 73 point offset; 98 sub_resource(clover::resource &r, point offset); 108 bool blocking, const resource::point &origin, 109 const resource::point ®ion);
|
/external/pdfium/fpdfsdk/include/ |
D | fsdk_annothandler.h | 55 const CPDF_Point& point) = 0; 88 const CPDF_Point& point) = 0; 92 const CPDF_Point& point) = 0; 96 const CPDF_Point& point) = 0; 100 const CPDF_Point& point) = 0; 105 const CPDF_Point& point) = 0; 109 const CPDF_Point& point) = 0; 113 const CPDF_Point& point) = 0; 117 const CPDF_Point& point) = 0; 157 const CPDF_Point& point) override; [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2006-12-08-Phi-ICmp-Op-Fold.ll | 6 %struct.point = type { i32, i32 } 10 %p1_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 11 %p2_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 12 %p3_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 13 %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] 14 %tmp = bitcast %struct.point* %p1_addr to { i64 }* ; <{ i64 }*> [#uses=1] 17 %tmp1 = bitcast %struct.point* %p2_addr to { i64 }* ; <{ i64 }*> [#uses=1] 20 %tmp3 = bitcast %struct.point* %p3_addr to { i64 }* ; <{ i64 }*> [#uses=1] 24 %tmp5 = bitcast %struct.point* %p1_addr to { i64 }* ; <{ i64 }*> [#uses=1] 27 %tmp7 = bitcast %struct.point* %p2_addr to { i64 }* ; <{ i64 }*> [#uses=1] [all …]
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
D | PWL_ScrollBar.h | 46 FX_BOOL OnLButtonDown(const CPDF_Point& point, FX_DWORD nFlag) override; 47 FX_BOOL OnLButtonUp(const CPDF_Point& point, FX_DWORD nFlag) override; 48 FX_BOOL OnMouseMove(const CPDF_Point& point, FX_DWORD nFlag) override; 104 FX_BOOL OnLButtonDown(const CPDF_Point& point, FX_DWORD nFlag) override; 105 FX_BOOL OnLButtonUp(const CPDF_Point& point, FX_DWORD nFlag) override; 129 void OnMinButtonLBDown(const CPDF_Point& point); 130 void OnMinButtonLBUp(const CPDF_Point& point); 131 void OnMinButtonMouseMove(const CPDF_Point& point); 133 void OnMaxButtonLBDown(const CPDF_Point& point); 134 void OnMaxButtonLBUp(const CPDF_Point& point); [all …]
|