| /external/pdfium/fpdfsdk/include/ |
| D | fsdk_define.h | 38 #define FX_GetAValue(argb) ((argb & 0xFF000000) >> 24) argument 43 #define FX_GetRValue(argb) ((argb & 0x00FF0000) >> 16) argument 48 #define FX_GetGValue(argb) ((argb & 0x0000FF00) >> 8) argument 53 #define FX_GetBValue(argb) (argb & 0x000000FF) argument 58 #define FX_ARGBTOCOLORREF(argb) ((((FX_DWORD)argb & 0x00FF0000) >> 16)|((FX_DWORD)argb & 0x0000FF0… argument
|
| /external/deqp/framework/delibs/deimage/ |
| D | deARGB.h | 44 DE_INLINE int deARGB_getRed (deARGB argb) { return (int)((argb >> 16) & 0xFF); } in deARGB_getRed() 45 DE_INLINE int deARGB_getGreen (deARGB argb) { return (int)((argb >> 8) & 0xFF); } in deARGB_getGreen() 46 DE_INLINE int deARGB_getBlue (deARGB argb) { return (int)((argb >> 0) & 0xFF); } in deARGB_getBlue() 47 DE_INLINE int deARGB_getAlpha (deARGB argb) { return (int)((argb >> 24) & 0xFF); } in deARGB_getAlpha() 49 DE_INLINE deARGB deARGB_multiply (deARGB argb, int f) in deARGB_multiply()
|
| /external/pdfium/public/ |
| D | fpdf_edit.h | 16 #define FPDF_GetBValue(argb) ((FX_BYTE)(argb)) argument 17 #define FPDF_GetGValue(argb) ((FX_BYTE)(((FX_WORD)(argb)) >> 8)) argument 18 #define FPDF_GetRValue(argb) ((FX_BYTE)((argb)>>16)) argument 19 #define FPDF_GetAValue(argb) ((FX_BYTE)((argb)>>24)) argument
|
| /external/skia/src/images/ |
| D | SkImageEncoder_argb.cpp | 25 static void ARGB_8888_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { in ARGB_8888_To_ARGB() 37 static void RGB_565_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { in RGB_565_To_ARGB() 49 static void ARGB_4444_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { in ARGB_4444_To_ARGB() 61 static void Index8_To_ARGB(const uint8_t* in, uint8_t* argb, int width, in Index8_To_ARGB() 105 uint8_t* argb = ada.get(); in onEncode() local
|
| /external/webp/src/utils/ |
| D | color_cache.h | 39 uint32_t argb) { in VP8LColorCacheInsert() 45 uint32_t argb) { in VP8LColorCacheGetIndex() 50 uint32_t argb) { in VP8LColorCacheContains()
|
| /external/webp/src/dsp/ |
| D | lossless.c | 595 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) { in UpdateHisto() 654 uint32_t* const argb) { in CopyTileWithPrediction() 686 uint32_t* const argb, uint32_t* const argb_scratch, in VP8LResidualImage() 798 const uint32_t argb = argb_data[i]; in VP8LSubtractGreenFromBlueAndRed_C() local 811 const uint32_t argb = data[i]; in VP8LAddGreenToBlueAndRed_C() local 850 const uint32_t argb = data[i]; in VP8LTransformColor_C() local 868 const uint32_t argb = data[i]; in VP8LTransformColorInverse_C() local 883 uint32_t argb) { in TransformColorRed() 892 uint32_t argb) { in TransformColorBlue() 913 const int accumulated_red_histo[256], const uint32_t* const argb) { in GetPredictionCostCrossColorRed() [all …]
|
| D | lossless_neon.c | 275 static WEBP_INLINE uint8x16_t DoGreenShuffle(const uint8x16_t argb, in DoGreenShuffle() 284 static WEBP_INLINE uint8x16_t DoGreenShuffle(const uint8x16_t argb, in DoGreenShuffle() 299 const uint8x16_t argb = vld1q_u8((uint8_t*)argb_data); in SubtractGreenFromBlueAndRed() local 315 const uint8x16_t argb = vld1q_u8((uint8_t*)argb_data); in AddGreenToBlueAndRed() local
|
| D | alpha_processing_sse2.c | 21 static int ExtractAlpha(const uint8_t* argb, int argb_stride, in ExtractAlpha()
|
| D | yuv.h | 137 uint8_t* const argb) { in VP8YuvToRgba4444() 201 uint8_t* const argb) { in VP8YuvToRgba4444() 223 uint8_t* const argb) { in VP8YuvToArgb()
|
| D | alpha_processing.c | 140 const uint32_t argb = ptr[x]; in MultARGBRow() local 287 static int ExtractAlpha(const uint8_t* argb, int argb_stride, in ExtractAlpha()
|
| /external/webp/src/enc/ |
| D | backward_references.c | 212 static WEBP_INLINE uint64_t GetPixPairHash64(const uint32_t* const argb) { in GetPixPairHash64() 220 const uint32_t* const argb, int pos) { in HashChainInsert() 246 const uint32_t* const argb, int max_len, in HashChainFindCopy() 328 const uint32_t* const argb, in BackwardReferencesRle() 350 const uint32_t* const argb, in BackwardReferencesHashChain() 491 int recursion_level, const uint32_t* const argb, in CostModelBuild() 561 int xsize, int ysize, int recursive_cost_model, const uint32_t* const argb, in BackwardReferencesHashChainDistanceOnly() 702 int xsize, int ysize, const uint32_t* const argb, in BackwardReferencesHashChainFollowChosenPath() 777 const uint32_t* const argb, in BackwardReferencesTraceBackwards() 821 int width, int height, const uint32_t* const argb, int quality, in VP8LGetBackwardReferences() [all …]
|
| D | vp8l.c | 52 const uint32_t* argb = pic->argb; in AnalyzeAndCreatePalette() local 101 static int AnalyzeEntropy(const uint32_t* argb, in AnalyzeEntropy() 482 const uint32_t* const argb, in EncodeImageNoHuffman() 556 const uint32_t* const argb, in EncodeImageInternal() 706 const uint32_t* const argb = enc->argb_; in EvalAndApplySubtractGreen() local
|
| /external/pdfium/core/include/fxge/ |
| D | fx_dib.h | 93 #define FXARGB_A(argb) ((FX_BYTE)((argb) >> 24)) argument 94 #define FXARGB_R(argb) ((FX_BYTE)((argb) >> 16)) argument 95 #define FXARGB_G(argb) ((FX_BYTE)((argb) >> 8)) argument 96 #define FXARGB_B(argb) ((FX_BYTE)(argb)) argument 98 #define FXARGB_MUL_ALPHA(argb, alpha) (((((argb) >> 24) * (alpha) / 255) << 24) | ((argb) & 0xfffff… argument 109 #define FXARGB_SETDIB(p, argb) ((FX_LPBYTE)(p))[0] = (FX_BYTE)(argb), \ argument 121 #define FXARGB_SETRGBORDERDIB(p, argb) ((FX_LPBYTE)(p))[3] = (FX_BYTE)(argb>>24), \ argument 130 #define FXARGB_TODIB(argb) (argb) argument 132 #define FXARGB_TOBGRORDERDIB(argb) ((FX_BYTE)(argb>>16) | ((FX_BYTE)(argb>>8)) << 8 | ((FX_BYTE)(ar… argument
|
| /external/valgrind/memcheck/tests/ |
| D | inltemplate.cpp | 19 static INLINE T temp_member_func_b(T argb) { in temp_member_func_b()
|
| D | inlinfo.c | 18 INLINE int fun_b(int argb) { in fun_b()
|
| D | varinfo5so.c | 167 INLINE void fun_b(int argb) { in fun_b()
|
| /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
| D | ShadowColor.java | 16 public static int argb(int alpha, int red, int green, int blue) { in argb() method in ShadowColor
|
| /external/pdfium/core/src/fxge/apple/ |
| D | fx_apple_platform.cpp | 48 FX_DWORD argb, in _CGDrawGlyphRun() 109 FX_DWORD argb, in DrawDeviceText()
|
| D | fx_quartz_device.cpp | 85 FX_ARGB argb, in drawGraphicsString() 458 FX_DWORD argb, in DrawCosmeticLine() 558 FX_ARGB argb, in SetDIBits() 689 FX_ARGB argb, in StretchDIBits() 809 FX_DWORD argb, in CG_DrawGlypRun() 940 void CFX_QuartzDeviceDriver::setStrokeInfo(const CFX_GraphStateData* graphState, FX_ARGB argb, FX_F… in setStrokeInfo() 1003 void CFX_QuartzDeviceDriver::setFillInfo(FX_ARGB argb) in setFillInfo()
|
| /external/jmonkeyengine/engine/src/tools/jme3tools/converters/ |
| D | RGB565.java | 41 public static short ARGB8_to_RGB565(int argb){ in ARGB8_to_RGB565()
|
| /external/pdfium/core/src/fxge/ge/ |
| D | fx_ge_device.cpp | 377 FX_BOOL CFX_RenderDevice::SetBitMask(const CFX_DIBSource* pBitmap, int left, int top, FX_DWORD argb, in SetBitMask() 384 int dest_width, int dest_height, FX_DWORD argb, FX_DWORD flags, in StretchBitMask() 392 FX_BOOL CFX_RenderDevice::StartDIBits(const CFX_DIBSource* pBitmap, int bitmap_alpha, FX_DWORD argb, in StartDIBits()
|
| /external/libvpx/libvpx/third_party/libyuv/source/ |
| D | convert_jpeg.cc | 226 uint8* argb; member 305 uint8* argb, int argb_stride, in MJPGToARGB()
|
| D | compare.cc | 82 static uint32 ARGBDetectRow_C(const uint8* argb, int width) { in ARGBDetectRow_C() 113 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height) { in ARGBDetect()
|
| /external/pdfium/core/src/fpdfdoc/ |
| D | doc_annot.cpp | 315 FX_DWORD argb = 0xff000000; in GetBorder() local 422 FX_DWORD argb = 0xff000000; in DrawBorder() local
|
| /external/pdfium/core/src/fxge/skia/ |
| D | fx_skia_device.cpp | 465 FX_BOOL CFX_SkiaDeviceDriver::SetDIBits(const CFX_DIBSource* pBitmap, FX_DWORD argb, const FX_RECT*… in SetDIBits() 471 FX_BOOL CFX_SkiaDeviceDriver::StretchDIBits(const CFX_DIBSource* pSource, FX_DWORD argb, int dest_l… in StretchDIBits() 480 …L CFX_SkiaDeviceDriver::StartDIBits(const CFX_DIBSource* pSource, int bitmap_alpha, FX_DWORD argb, in StartDIBits()
|