Home
last modified time | relevance | path

Searched refs:bLine (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/src/pathops/
DSkIntersections.h148 SkDLine aLine, bLine; in lineLine() local
150 bLine.set(b); in lineLine()
152 return intersect(aLine, bLine); in lineLine()
/third_party/flutter/skia/src/pathops/
DSkIntersections.h148 SkDLine aLine, bLine; in lineLine() local
150 bLine.set(b); in lineLine()
152 return intersect(aLine, bLine); in lineLine()
/third_party/skia/third_party/externals/freetype/src/raster/
Dftraster.c480 PByte bLine; /* target bitmap current line */ member
2198 ras.bLine = ras.bOrigin - min * ras.target.pitch; in Vertical_Sweep_Init()
2261 target = ras.bLine + c1; in Vertical_Sweep_Span()
2414 ras.bLine[c1] & ( 0x80 >> f1 ) ) in Vertical_Sweep_Drop()
2430 ras.bLine[c1] |= (char)( 0x80 >> f1 ); in Vertical_Sweep_Drop()
2441 ras.bLine -= ras.target.pitch; in Vertical_Sweep_Step()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch94045 - if( p->iLevel<sizeof(p->bLine) ) p->bLine[p->iLevel] = moreToFollow;
94047 + if( p->iLevel<(int)sizeof(p->bLine) ) p->bLine[p->iLevel] = moreToFollow;
94078 - for(i=0; i<p->iLevel && i<sizeof(p->bLine)-1; i++){
94079 + for(i=0; i<p->iLevel && i<(int)sizeof(p->bLine)-1; i++){
94080 sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4);
94082 sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4);
131686 - if( p->iLevel<sizeof(p->bLine) ) p->bLine[p->iLevel] = moreToFollow;
131688 + if( p->iLevel<(int)sizeof(p->bLine) ) p->bLine[p->iLevel] = moreToFollow;
131719 - for(i=0; i<p->iLevel && i<sizeof(p->bLine)-1; i++){
131720 + for(i=0; i<p->iLevel && i<(int)sizeof(p->bLine)-1; i++){
[all …]
/third_party/sqlite/src/
Dsqlite3.c19108 u8 bLine[100]; /* Draw vertical in column i if bLine[i] is true */ member
30382 if( p->iLevel<sizeof(p->bLine) ) p->bLine[p->iLevel] = moreToFollow;
30406 for(i=0; i<p->iLevel && i<sizeof(p->bLine)-1; i++){
30407 sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4);
30409 sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4);