HomeSort by relevance Sort by last modified time
    Searched defs:bgr (Results 1 - 13 of 13) sorted by null

  /external/opencv/otherlibs/highgui/
grfmt_sunras.cpp 181 uchar* bgr = bgr_buffer; local
194 bgr = new uchar[m_width*3 + 32];
358 m_strm.GetBytes( color ? data : bgr, src_pitch );
367 icvCvt_BGR2Gray_8u_C3C1R( bgr, 0, data, 0, cvSize(m_width,1),
396 if( bgr != bgr_buffer ) delete[] bgr;
grfmt_bmp.cpp 195 uchar* bgr = bgr_buffer; local
216 if( m_width*3 + 32 > buffer_size ) bgr = new uchar[m_width*3 + 32];
230 FillColorRow1( color ? data : bgr, src, m_width, m_palette );
232 icvCvt_BGR2Gray_8u_C3C1R( bgr, 0, data, 0, cvSize(m_width,1) );
476 if( bgr != bgr_buffer ) delete[] bgr;
  /external/libpng/
pngwrite.c 1791 const int bgr = (format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; local
1793 # define bgr macro
1903 # undef bgr macro
    [all...]
pngread.c 1865 const int bgr = (image->format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; local
1867 # define bgr macro
1956 # undef bgr macro
    [all...]
  /external/pdfium/third_party/libpng16/
pngwrite.c 1791 const int bgr = (format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; local
1793 # define bgr macro
1903 # undef bgr macro
    [all...]
pngread.c 1866 const int bgr = (image->format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; local
1868 # define bgr macro
1957 # undef bgr macro
    [all...]
  /external/skia/third_party/libpng/
pngwrite.c 1791 const int bgr = (format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; local
1793 # define bgr macro
1903 # undef bgr macro
    [all...]
pngread.c 1856 const int bgr = (image->format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; local
1858 # define bgr macro
1947 # undef bgr macro
    [all...]
  /external/freetype/src/truetype/
ttinterp.h 391 FT_Bool bgr; /* bgr instead of rgb? */ member in struct:TT_ExecContextRec_
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 264 FT_Bool bgr; /* bgr instead of rgb? */ member in struct:TT_ExecContextRec_
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/xstormy16/
allinsn.s 1062 .global bgr
1063 bgr: label
  /external/swiftshader/src/Renderer/
Surface.cpp 410 unsigned int bgr = palette[((unsigned char*)element)[0]]; local
412 r = (bgr & 0x000000FF) * (1.0f / 0x000000FF);
413 g = (bgr & 0x0000FF00) * (1.0f / 0x0000FF00);
414 b = (bgr & 0x00FF0000) * (1.0f / 0x00FF0000);
584 signed char* bgr = (signed char*)element; local
586 r = max(bgr[0] * (1.0f / 0x7F), -1.0f);
587 g = max(bgr[1] * (1.0f / 0x7F), -1.0f);
588 b = max(bgr[2] * (1.0f / 0x7F), -1.0f);
603 signed char* bgr = (signed char*)element; local
605 r = bgr[0]
612 unsigned char* bgr = (unsigned char*)element; local
729 short* bgr = (short*)element; local
738 unsigned short* bgr = (unsigned short*)element; local
767 int* bgr = (int*)element; local
776 unsigned int* bgr = (unsigned int*)element; local
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 8486 IT(bgr); variable
    [all...]

Completed in 425 milliseconds