Home
last modified time | relevance | path

Searched refs:point_count (Results 1 – 21 of 21) sorted by relevance

/external/dynamic_depth/internal/dynamic_depth/
Dpoint_cloud.cc101 int point_count = static_cast<int>(points_.size() / 4); in Serialize() local
104 ::dynamic_depth::strings::SimpleItoa(point_count))) { in Serialize()
128 int point_count; in ParseFields() local
130 &point_count)) { in ParseFields()
141 if (parsed_points_count != point_count) { in ParseFields()
142 LOG(ERROR) << "Parsed PointCount = " << point_count << " but " in ParseFields()
/external/grpc-grpc/examples/python/route_guide/
Droute_guide_server.py85 point_count = 0
92 point_count += 1
101 point_count=point_count,
Droute_guide_client.py76 print("Finished trip with %s points " % route_summary.point_count)
/external/harfbuzz_ng/src/
Dhb-ot-layout-gdef-table.hh51 unsigned int *point_count /* IN/OUT */, in get_attach_points()
57 if (point_count) in get_attach_points()
58 *point_count = 0; in get_attach_points()
64 if (point_count) in get_attach_points()
66 hb_array_t<const HBUINT16> array = points.sub_array (start_offset, point_count); in get_attach_points()
368 unsigned int *point_count /* IN/OUT */, in get_attach_points()
370 { return (this+attachList).get_attach_points (glyph_id, start_offset, point_count, point_array); } in get_attach_points()
Dhb-ot-layout.h120 unsigned int *point_count /* IN/OUT */,
Dhb-ot-layout.cc257 unsigned int *point_count /* IN/OUT */, in hb_ot_layout_get_attach_points() argument
262 point_count, in hb_ot_layout_get_attach_points()
/external/grpc-grpc/examples/python/multiplex/
Dmultiplex_server.py93 point_count = 0
100 point_count += 1
109 point_count=point_count,
Dmultiplex_client.py81 print("Finished trip with %s points " % route_summary.point_count)
/external/grpc-grpc/examples/node/dynamic_codegen/route_guide/
Droute_guide_server.js148 var point_count = 0;
155 point_count += 1;
168 point_count: point_count, property
Droute_guide_client.js127 console.log('Finished trip with', stats.point_count, 'points');
/external/grpc-grpc/examples/cpp/route_guide/
Droute_guide_server.cc121 int point_count = 0; in RecordRoute() local
128 point_count++; in RecordRoute()
132 if (point_count != 1) { in RecordRoute()
138 summary->set_point_count(point_count); in RecordRoute()
Droute_guide_client.cc144 std::cout << "Finished trip with " << stats.point_count() << " points\n" in RecordRoute()
/external/grpc-grpc/examples/node/static_codegen/route_guide/
Droute_guide_server.js138 var point_count = 0;
145 point_count += 1;
158 summary.setPointCount(point_count);
/external/freetype/src/truetype/
Dttgxvar.c3117 FT_UInt point_count; in tt_face_vary_cvt() local
3275 &point_count ); in tt_face_vary_cvt()
3281 point_count = spoint_count; in tt_face_vary_cvt()
3286 point_count == 0 ? face->cvt_size in tt_face_vary_cvt()
3287 : point_count ); in tt_face_vary_cvt()
3291 ( localpoints == ALL_POINTS && point_count != face->cvt_size ) ) in tt_face_vary_cvt()
3341 for ( j = 0; j < point_count; j++ ) in tt_face_vary_cvt()
3658 FT_UInt point_count; in TT_Vary_Apply_Glyph_Deltas() local
3807 &point_count ); in TT_Vary_Apply_Glyph_Deltas()
3813 point_count = spoint_count; in TT_Vary_Apply_Glyph_Deltas()
[all …]
/external/grpc-grpc/examples/ruby/route_guide/
Droute_guide_server.rb124 RouteSummary.new(point_count: count,
/external/pdfium/core/fpdfapi/page/
Dcpdf_streamcontentparser.cpp90 int point_count = kSingleCoordinatePair; in GetShadingBBox() local
92 point_count = kTensorCoordinatePairs; in GetShadingBBox()
94 point_count = kCoonsCoordinatePairs; in GetShadingBBox()
109 point_count -= 4; in GetShadingBBox()
113 for (int i = 0; i < point_count; i++) { in GetShadingBBox()
/external/grpc-grpc/examples/protos/
Droute_guide.proto101 int32 point_count = 1; field
/external/grpc-grpc-java/examples/src/main/proto/
Droute_guide.proto105 int32 point_count = 1; field
/external/grpc-grpc-java/examples/android/routeguide/app/src/main/proto/
Droute_guide.proto105 int32 point_count = 1; field
/external/pdfium/core/fpdfapi/render/
Dcpdf_renderstatus.cpp859 int point_count = type == kTensorProductPatchMeshShading ? 16 : 12; in DrawCoonPatchMeshes() local
878 for (i = iStartPoint; i < point_count; i++) { in DrawCoonPatchMeshes()
897 CFX_FloatRect bbox = CFX_FloatRect::GetBBox(coords, point_count); in DrawCoonPatchMeshes()
/external/grpc-grpc/examples/cpp/
Dcpptutorial.md444 std::cout << "Finished trip with " << stats.point_count() << " points\n"