HomeSort by relevance Sort by last modified time
    Searched refs:new_pitch (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/freetype/src/base/
ftbitmap.c 107 int new_pitch; local
123 new_pitch = ( width + xpixels + 7 ) >> 3;
127 new_pitch = ( width + xpixels + 3 ) >> 2;
131 new_pitch = ( width + xpixels + 1 ) >> 1;
137 new_pitch = ( width + xpixels );
144 if ( ypixels == 0 && new_pitch <= pitch )
178 if ( FT_QALLOC_MULT( buffer, new_pitch, bitmap->rows + ypixels ) )
187 FT_MEM_COPY( buffer + new_pitch * ( ypixels + i ),
196 FT_MEM_COPY( buffer + new_pitch * i,
204 new_pitch = -new_pitch
    [all...]
  /external/freetype/src/base/
ftbitmap.c 107 int new_pitch; local
123 new_pitch = ( width + xpixels + 7 ) >> 3;
127 new_pitch = ( width + xpixels + 3 ) >> 2;
131 new_pitch = ( width + xpixels + 1 ) >> 1;
137 new_pitch = ( width + xpixels );
144 if ( ypixels == 0 && new_pitch <= pitch )
178 if ( FT_QALLOC_MULT( buffer, new_pitch, bitmap->rows + ypixels ) )
187 FT_MEM_COPY( buffer + new_pitch * ( ypixels + i ),
196 FT_MEM_COPY( buffer + new_pitch * i,
204 new_pitch = -new_pitch
    [all...]

Completed in 73 milliseconds