Home
last modified time | relevance | path

Searched refs:area1 (Results 1 – 17 of 17) sorted by relevance

/third_party/boost/libs/geometry/test/algorithms/area/
Darea_sph_geo.cpp210 ct area1 = bg::area(geometry); in test_spherical_geo() local
215 BOOST_CHECK_CLOSE(area1, area2, 0.001); in test_spherical_geo()
217 BOOST_CHECK_CLOSE(area1 * r2, 1233204227903.1848, 0.001); in test_spherical_geo()
220 area1 = bg::area(geometry_geo, area_geographic); in test_spherical_geo()
225 BOOST_CHECK_CLOSE(area1, area2, 0.001); in test_spherical_geo()
227 BOOST_CHECK_CLOSE(area1, 1227877191611.2805, 0.001); in test_spherical_geo()
234 ct area1 = bg::area(geometry); in test_spherical_geo() local
239 BOOST_CHECK_CLOSE(area1, area2, 0.001); in test_spherical_geo()
241 BOOST_CHECK_CLOSE(area1 * r2, 1237986107636.0261, 0.001); in test_spherical_geo()
244 area1 = bg::area(geometry_geo, area_geographic); in test_spherical_geo()
[all …]
Darea.cpp97 ct area1 = bg::area(ccw_polygon); in test_ccw() local
104 BOOST_CHECK_CLOSE(area1, -1 * area2, 0.001); in test_ccw()
136 ct area1 = bg::area(polygon); in test_poles_ccw() local
143 BOOST_CHECK_CLOSE(area1, -1 * area2, 0.001); in test_poles_ccw()
/third_party/boost/libs/geometry/test/algorithms/overlay/
Dtraverse_ccw.cpp223 T area1 = intersect<clock, clock>(wkt1, wkt2, name, ov::operation_intersection); in test_polygon() local
227 BOOST_CHECK_CLOSE(area1, area2, 0.001); in test_polygon()
229 BOOST_CHECK_CLOSE(area1, area3, 0.001); in test_polygon()
232 area1 = intersect<clock, clock>(wkt1, wkt2, name, ov::operation_union); in test_polygon()
236 BOOST_CHECK_CLOSE(area1, area2, 0.001); in test_polygon()
238 BOOST_CHECK_CLOSE(area1, area3, 0.001); in test_polygon()
251 T area1 = intersect<box, clock>(wkt1, wkt2, name + "_bp", ov::operation_intersection); in test_box_polygon() local
255 BOOST_CHECK_CLOSE(area1, area2, 0.001); in test_box_polygon()
257 BOOST_CHECK_CLOSE(area1, area3, 0.001); in test_box_polygon()
260 area1 = intersect<box, clock>(wkt1, wkt2, name + "_bp", ov::operation_union); in test_box_polygon()
[all …]
/third_party/boost/libs/geometry/test/algorithms/set_operations/difference/
Ddifference_multi.cpp27 #define TEST_DIFFERENCE(caseid, clips1, area1, clips2, area2, clips3) \ argument
29 ( #caseid, caseid[0], caseid[1], clips1, -1, area1, clips2, -1, area2, \
30 clips3, -1, area1 + area2)
32 #define TEST_DIFFERENCE_IGNORE(caseid, clips1, area1, clips2, area2, clips3) \ argument
35 ( #caseid, caseid[0], caseid[1], clips1, -1, area1, clips2, -1, area2, \
36 clips3, -1, area1 + area2, ignore_validity); }
38 #define TEST_DIFFERENCE_WITH(index1, index2, caseid, clips1, area1, \ argument
42 clips1, -1, area1, \
44 clips3, -1, area1 + area2, settings)
Ddifference.cpp39 #define TEST_DIFFERENCE(caseid, clips1, area1, clips2, area2, clips3) \ argument
41 ( #caseid, caseid[0], caseid[1], clips1, -1, area1, clips2, -1, area2, \
42 clips3, -1, area1 + area2)
44 #define TEST_DIFFERENCE_WITH(caseid, clips1, area1, clips2, area2, clips3) \ argument
46 ( #caseid, caseid[0], caseid[1], clips1, -1, area1, clips2, -1, area2, \
47 clips3, -1, area1 + area2, settings)
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Diou_impl.cu50 …float area1 = (location_coordinate[0][2] - location_coordinate[0][0] + offset) * (location_coordin… in IOUKernel() local
55 iou_results[i] = static_cast<T>(overlaps / (area1 + area2 - overlaps + epsilon)); in IOUKernel()
Dnms_with_mask_impl.cu91 …T area1 = (output[box_A_start + 2] - output[box_A_start + 0]) * (output[box_A_start + 3] - output[… in IouDecision() local
94 T combined_area = area1 + area2; in IouDecision()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/
Diou_cpu_kernel.cc85 T area1 = (anchor_boxes[idx1 + X1_SHIFT] - anchor_boxes[idx1] + ONE) * in Launch() local
90 iou_score[i] = overlaps / (area1 + area2 - overlaps + EPS); in Launch()
Dnms_with_mask_cpu_kernel.cc148 T area1 = (output[box_A_start + X2_OFFSET] - output[box_A_start + X1_OFFSET]) * in IouDecision() local
153 T combined_area = area1 + area2; in IouDecision()
/third_party/typescript/tests/baselines/reference/
DdiscriminatedUnionTypes1.js20 function area1(s: Shape) { function
146 function area1(s) {
DdiscriminatedUnionTypes1.types32 function area1(s: Shape) {
33 >area1 : (s: Shape) => number
DdiscriminatedUnionTypes1.errors.txt23 function area1(s: Shape) {
DdiscriminatedUnionTypes1.symbols41 function area1(s: Shape) {
42 >area1 : Symbol(area1, Decl(discriminatedUnionTypes1.ts, 16, 41))
/third_party/ffmpeg/libavcodec/
Dintrax8dsp.c43 #define area1 (0) macro
93 dst[area1 + i] = c; in x8_setup_spatial_compensation()
127 memset(dst + area1, avg, 8 + 8 + 1); // areas 1, 2, 3 are averaged in x8_setup_spatial_compensation()
306 dst[x] = (src[area1 + 7 - y] + src[area2 + 7 - y] + 1) >> 1; in spatial_compensation_8()
/third_party/typescript/tests/cases/conformance/types/union/
DdiscriminatedUnionTypes1.ts19 function area1(s: Shape) { function
/third_party/mindspore/tests/st/fl/cross_silo_faster_rcnn/src/
Ddataset.py56 area1 = (bboxes1[:, 2] - bboxes1[:, 0] + 1) * (bboxes1[:, 3] - bboxes1[:, 1] + 1)
66 union = area1[i] + area2 - overlap
68 union = area1[i] if not exchange else area2
/third_party/python/Doc/howto/
Dlogging-cookbook.rst239 logger1 = logging.getLogger('myapp.area1')
252 myapp.area1 : INFO How quickly daft jumping zebras vex.
261 10-22 22:19 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
262 10-22 22:19 myapp.area1 INFO How quickly daft jumping zebras vex.
429 logger1 = logging.getLogger('myapp.area1')
532 59 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
533 69 myapp.area1 INFO How quickly daft jumping zebras vex.