Home
last modified time | relevance | path

Searched refs:bottom_right (Results 1 – 4 of 4) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
DPictureParameterSet.java76 public int[] bottom_right; field in PictureParameterSet
102 pps.bottom_right = new int[pps.num_slice_groups_minus1 + 1]; in read()
111 pps.bottom_right[iGroup] = reader in read()
201 int[] bottom_right = new int[1]; in write() local
210 writer.writeUE(bottom_right[iGroup], "PPS: "); in write()
287 result = prime * result + Arrays.hashCode(bottom_right); in hashCode()
326 if (!Arrays.equals(bottom_right, other.bottom_right)) in equals()
399 ",\n bottom_right=" + bottom_right + in toString()
/external/clang/test/Sema/
Ddesignated-initializers.c58 struct point bottom_right; member
65 [4].bottom_right = { .y = 1.0 },
67 [3] = { .top_left = { 1.1, 2.2 }, .bottom_right = { .y = 1.1 } }
/external/clang/test/FixIt/
Dtypo.c13 bottom_right; member
/external/opencv/cv/src/
Dcvdistransform.cpp829 CvPoint top_left = {0,0}, bottom_right = {size.width-1,size.height-1}; in cvDistTransform() local
845 cvRectangle( src_copy, top_left, bottom_right, cvScalarAll(255), 1, 8 ); in cvDistTransform()