HomeSort by relevance Sort by last modified time
    Searched refs:bgr (Results 1 - 25 of 36) sorted by null

1 2

  /external/opencv/otherlibs/highgui/
utils.cpp 141 uchar* bgr, int bgr_step, CvSize size )
146 for( i = 0; i < size.width; i++, bgr += 3 )
148 bgr[0] = bgr[1] = bgr[2] = gray[i];
150 bgr += bgr_step - size.width*3;
156 uchar* bgr, int bgr_step,
163 for( i = 0; i < size.width; i++, bgr += 3, bgra += 4 )
166 bgr[0] = t0; bgr[1] = t1
    [all...]
utils.h 58 void icvCvt_BGR2Gray_16u_C3C1R( const ushort* bgr, int bgr_step,
61 void icvCvt_BGR2Gray_8u_C3C1R( const uchar* bgr, int bgr_step,
68 uchar* bgr, int bgr_step, CvSize size );
70 uchar* bgr, int bgr_step,
72 void icvCvt_BGR2RGB_8u_C3R( const uchar* bgr, int bgr_step,
75 void icvCvt_BGR2RGB_16u_C3R( const ushort* bgr, int bgr_step,
88 uchar* bgr, int bgr_step, CvSize size );
90 uchar* bgr, int bgr_step, CvSize size );
92 uchar* bgr, int bgr_step, CvSize size );
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/libvncserver/webclients/novnc/include/
display.js 353 var bgr;
355 bgr = color;
357 bgr = this._colourMap[color[0]];
359 var red = bgr[2];
360 var green = bgr[1];
361 var blue = bgr[0];
378 var bgr;
380 bgr = color;
382 bgr = this._colourMap[color[0]];
384 var red = bgr[2]
    [all...]
  /external/webp/src/dsp/
yuv.h 101 uint8_t* const bgr) {
102 bgr[0] = VP8YUVToB(y, u);
103 bgr[1] = VP8YUVToG(y, u, v);
104 bgr[2] = VP8YUVToR(y, v);
yuv.c 230 static void ConvertBGR24ToY(const uint8_t* bgr, uint8_t* y, int width) {
232 for (i = 0; i < width; ++i, bgr += 3) {
233 y[i] = VP8RGBToY(bgr[2], bgr[1], bgr[0], YUV_HALF);
292 void (*WebPConvertBGR24ToY)(const uint8_t* bgr, uint8_t* y, int width);
upsampling_mips_dsp_r2.c 58 static WEBP_INLINE void YuvToBgr(int y, int u, int v, uint8_t* const bgr) {
61 bgr[0] = b;
62 bgr[1] = g;
63 bgr[2] = r;
yuv_sse2.c 586 static void ConvertBGR24ToY(const uint8_t* bgr, uint8_t* y, int width) {
589 for (i = 0; i < max_width; bgr += 3 * 16 * 2) {
593 RGB24PackedToPlanar(bgr, bgr_plane);
615 for (; i < width; ++i, bgr += 3) { // left-over
616 y[i] = VP8RGBToY(bgr[2], bgr[1], bgr[0], YUV_HALF);
  /frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
SoftVideoEncoderOMXComponent.h 62 bool bgr);
  /external/webp/include/webp/
encode.h 52 WEBP_EXTERN(size_t) WebPEncodeBGR(const uint8_t* bgr,
68 WEBP_EXTERN(size_t) WebPEncodeLosslessBGR(const uint8_t* bgr,
465 // Variants of the above, but taking BGR(A|X) input.
467 WebPPicture* picture, const uint8_t* bgr, int bgr_stride);
  /external/webp/src/webp/
encode.h 52 WEBP_EXTERN(size_t) WebPEncodeBGR(const uint8_t* bgr,
68 WEBP_EXTERN(size_t) WebPEncodeLosslessBGR(const uint8_t* bgr,
465 // Variants of the above, but taking BGR(A|X) input.
467 WebPPicture* picture, const uint8_t* bgr, int bgr_stride);
  /external/ImageMagick/coders/
Android.mk 26 bgr.c\
Make.com 27 $call Make bgr.c
152 $library/create libCoders.olb aai,art,avs,bgr,bmp,braille,clip,clipboard,cip, -
  /frameworks/av/media/libstagefright/omx/
SoftVideoEncoderOMXComponent.cpp 464 bool bgr) {
472 bgr = !bgr;
475 const size_t redOffset = bgr ? 2 : 0;
477 const size_t blueOffset = bgr ? 0 : 2;
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 264 FT_Bool bgr; /* bgr instead of rgb? */ member in struct:TT_ExecContextRec_
  /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/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/clang/test/CodeGen/
ext-vector.c 333 vec4.rgb = vec4.bgr;
  /external/freetype/src/truetype/
ttinterp.h 391 FT_Bool bgr; /* bgr instead of rgb? */ member in struct:TT_ExecContextRec_

Completed in 600 milliseconds

1 2