Home
last modified time | relevance | path

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

/external/libpng/contrib/gregbook/
Drpng-x.c144 static int RShift, GShift, BShift; variable
517 RShift = 15 - rpng_x_msb(RMask); /* these are right-shifts */ in rpng_x_create_window()
523 RShift = rpng_x_msb(RMask) - 7; /* these are left-shifts */ in rpng_x_create_window()
527 RShift = 7 - rpng_x_msb(RMask); /* these are right-shifts, too */ in rpng_x_create_window()
532 if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) { in rpng_x_create_window()
614 bg_pixel = ((ulg)bg_red << RShift) | in rpng_x_create_window()
618 bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) | in rpng_x_create_window()
717 pixel = (red << RShift) | in rpng_x_display_image()
727 red = (RShift < 0)? red << (-RShift) : red >> RShift; in rpng_x_display_image()
760 pixel = (red << RShift) | in rpng_x_display_image()
[all …]
Drpng2-x.c278 static int RShift, GShift, BShift; variable
902 RShift = 15 - rpng2_x_msb(RMask); /* these are right-shifts */ in rpng2_x_create_window()
906 RShift = rpng2_x_msb(RMask) - 7; /* these are left-shifts */ in rpng2_x_create_window()
910 if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) { in rpng2_x_create_window()
1037 bg_pixel = (bg_red << RShift) | in rpng2_x_create_window()
1041 bg_pixel = (((bg_red << 8) >> RShift) & RMask) | in rpng2_x_create_window()
1305 pixel = (red << RShift) | in rpng2_x_load_bg_image()
1319 pixel = (red << RShift) | in rpng2_x_load_bg_image()
1342 pixel = ((red >> RShift) & RMask) | in rpng2_x_load_bg_image()
1431 pixel = (red << RShift) | in rpng2_x_display_row()
[all …]
/external/webkit/WebKit/android/plugins/
DANPBitmapInterface.cpp37 packing->RShift = SK_R32_SHIFT; in anp_getPixelPacking()
49 packing->RShift = SK_R16_SHIFT; in anp_getPixelPacking()
Dandroid_npapi.h55 uint8_t RShift; member
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
D11.7.3.js216 function RShift( s, a ) { class
229 return ( RShift( s, a ) );