Home
last modified time | relevance | path

Searched refs:vertices_ (Results 1 – 3 of 3) sorted by relevance

/external/ceres-solver/internal/ceres/
Dgraph.h56 if (vertices_.find(vertex) == vertices_.end()) { in AddVertex()
57 vertices_.insert(vertex); in AddVertex()
70 if (vertices_.find(vertex) == vertices_.end()) { in RemoveVertex()
74 vertices_.erase(vertex); in RemoveVertex()
98 DCHECK(vertices_.find(vertex1) != vertices_.end()); in AddEdge()
99 DCHECK(vertices_.find(vertex2) != vertices_.end()); in AddEdge()
142 return vertices_; in vertices()
150 HashSet<Vertex> vertices_;
/external/webrtc/webrtc/modules/video_render/ios/
Dopen_gles20.mm73 memcpy(vertices_, vertices, sizeof(vertices_));
93 // vertices_ contains 4 vertices with 5 coordinates.
96 position_handle, 3, GL_FLOAT, false, 5 * sizeof(GLfloat), vertices_);
101 // vertices_ contains 4 vertices with 5 coordinates.
104 texture_handle, 2, GL_FLOAT, false, 5 * sizeof(GLfloat), &vertices_[3]);
132 vertices_[0] = (left * 2) - 1;
133 vertices_[1] = -1 * (2 * bottom) + 1;
134 vertices_[2] = z_order;
137 vertices_[5] = (right * 2) - 1;
138 vertices_[6] = -1 * (2 * bottom) + 1;
[all …]
Dopen_gles20.h58 GLfloat vertices_[20]; variable