Lines Matching refs:pInsertPoints
1795 InsertPoints * pInsertPoints=&(pBiDi->insertPoints); in addPoint() local
1797 if (pInsertPoints->capacity == 0) in addPoint()
1799 pInsertPoints->points=static_cast<Point *>(uprv_malloc(sizeof(Point)*FIRSTALLOC)); in addPoint()
1800 if (pInsertPoints->points == NULL) in addPoint()
1802 pInsertPoints->errorCode=U_MEMORY_ALLOCATION_ERROR; in addPoint()
1805 pInsertPoints->capacity=FIRSTALLOC; in addPoint()
1807 if (pInsertPoints->size >= pInsertPoints->capacity) /* no room for new point */ in addPoint()
1809 Point * savePoints=pInsertPoints->points; in addPoint()
1810 pInsertPoints->points=static_cast<Point *>(uprv_realloc(pInsertPoints->points, in addPoint()
1811 pInsertPoints->capacity*2*sizeof(Point))); in addPoint()
1812 if (pInsertPoints->points == NULL) in addPoint()
1814 pInsertPoints->points=savePoints; in addPoint()
1815 pInsertPoints->errorCode=U_MEMORY_ALLOCATION_ERROR; in addPoint()
1818 else pInsertPoints->capacity*=2; in addPoint()
1822 pInsertPoints->points[pInsertPoints->size]=point; in addPoint()
1823 pInsertPoints->size++; in addPoint()
1867 InsertPoints * pInsertPoints; in processPropertySeq() local
1904 pInsertPoints=&(pBiDi->insertPoints); in processPropertySeq()
1905 if ((pInsertPoints->capacity == 0) || in processPropertySeq()
1906 (pInsertPoints->size <= pInsertPoints->confirmed)) in processPropertySeq()
1918 pInsertPoints->confirmed=pInsertPoints->size; in processPropertySeq()
1929 pInsertPoints->confirmed=pInsertPoints->size; in processPropertySeq()
1934 pInsertPoints->confirmed=pInsertPoints->size; in processPropertySeq()
1940 pInsertPoints=&(pBiDi->insertPoints); in processPropertySeq()
1941 if (pInsertPoints->capacity > 0) in processPropertySeq()
1943 pInsertPoints->size=pInsertPoints->confirmed; in processPropertySeq()
1986 pInsertPoints=&(pBiDi->insertPoints); in processPropertySeq()
1987 pInsertPoints->confirmed=pInsertPoints->size; /* confirm it */ in processPropertySeq()
2001 pInsertPoints=&(pBiDi->insertPoints); in processPropertySeq()
2002 pInsertPoints->size=pInsertPoints->confirmed; in processPropertySeq()
2006 pInsertPoints->confirmed=pInsertPoints->size; in processPropertySeq()
2016 pInsertPoints=&(pBiDi->insertPoints); in processPropertySeq()
2017 pInsertPoints->confirmed=pInsertPoints->size; /* confirm inserts */ in processPropertySeq()