Home
last modified time | relevance | path

Searched defs:argb (Results 1 – 25 of 83) sorted by relevance

1234

/external/pigweed/pw_assert/public/pw_assert/internal/
Dcheck_impl.h55 #define PW_CHECK_INT_LE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, <=, argb, int, "%d", __VA_… argument
56 #define PW_CHECK_INT_LT(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, < , argb, int, "%d", __VA_… argument
57 #define PW_CHECK_INT_GE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, >=, argb, int, "%d", __VA_… argument
58 #define PW_CHECK_INT_GT(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, > , argb, int, "%d", __VA_… argument
59 #define PW_CHECK_INT_EQ(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, ==, argb, int, "%d", __VA_… argument
60 #define PW_CHECK_INT_NE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, !=, argb, int, "%d", __VA_… argument
71 #define PW_CHECK_UINT_LE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, <=, argb, unsigned int, "… argument
72 #define PW_CHECK_UINT_LT(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, < , argb, unsigned int, "… argument
73 #define PW_CHECK_UINT_GE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, >=, argb, unsigned int, "… argument
74 #define PW_CHECK_UINT_GT(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, > , argb, unsigned int, "… argument
[all …]
/external/deqp/framework/delibs/deimage/
DdeARGB.h44 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/webp/src/utils/
Dcolor_cache_utils.h37 int VP8LHashPix(uint32_t argb, int shift) { in VP8LHashPix()
48 uint32_t key, uint32_t argb) { in VP8LColorCacheSet()
54 uint32_t argb) { in VP8LColorCacheInsert()
60 uint32_t argb) { in VP8LColorCacheGetIndex()
66 uint32_t argb) { in VP8LColorCacheContains()
/external/libmonet/hct/
DHct.java44 private int argb; field in Hct
56 int argb = HctSolver.solveToInt(hue, chroma, tone); in from() local
66 public static Hct fromInt(int argb) { in fromInt()
70 private Hct(int argb) { in Hct()
150 private void setInternalState(int argb) { in setInternalState()
/external/pdfium/core/fxge/dib/
Dfx_dib.cpp44 std::tuple<int, int, int, int> ArgbDecode(FX_ARGB argb) { in ArgbDecode()
49 std::pair<int, FX_COLORREF> ArgbToAlphaAndColorRef(FX_ARGB argb) { in ArgbToAlphaAndColorRef()
53 FX_COLORREF ArgbToColorRef(FX_ARGB argb) { in ArgbToColorRef()
Dfx_dib.h124 #define FXARGB_A(argb) ((uint8_t)((argb) >> 24)) argument
125 #define FXARGB_R(argb) ((uint8_t)((argb) >> 16)) argument
126 #define FXARGB_G(argb) ((uint8_t)((argb) >> 8)) argument
127 #define FXARGB_B(argb) ((uint8_t)(argb)) argument
128 #define FXARGB_MUL_ALPHA(argb, alpha) \ argument
137 #define FXARGB_SETDIB(p, argb) \ argument
142 #define FXARGB_SETRGBORDERDIB(p, argb) \ argument
150 #define FXARGB_TOBGRORDERDIB(argb) \ argument
/external/libmonet/utils/
DColorUtils.java66 public static int alphaFromArgb(int argb) { in alphaFromArgb()
71 public static int redFromArgb(int argb) { in redFromArgb()
76 public static int greenFromArgb(int argb) { in greenFromArgb()
81 public static int blueFromArgb(int argb) { in blueFromArgb()
86 public static boolean isOpaque(int argb) { in isOpaque()
103 public static double[] xyzFromArgb(int argb) { in xyzFromArgb()
131 public static double[] labFromArgb(int argb) { in labFromArgb()
170 public static double lstarFromArgb(int argb) { in lstarFromArgb()
DStringUtils.java28 public static String hexFromArgb(int argb) { in hexFromArgb()
/external/libmonet/palettes/
DCorePalette.java41 public static CorePalette of(int argb) { in of()
50 public static CorePalette contentOf(int argb) { in contentOf()
54 private CorePalette(int argb, boolean isContent) { in CorePalette()
/external/pdfium/xfa/fgas/graphics/
Dcfgas_gecolor.cpp9 CFGAS_GEColor::CFGAS_GEColor(const FX_ARGB argb) in CFGAS_GEColor()
12 CFGAS_GEColor::CFGAS_GEColor(CFGAS_GEPattern* pattern, const FX_ARGB argb) in CFGAS_GEColor()
/external/webp/src/dsp/
Dlossless_enc_mips_dsp_r2.c84 uint32_t argb, argb1, new_red, new_red1; in TransformColor_MIPSdspR2() local
165 uint32_t argb) { in TransformColorBlue()
174 static void CollectColorBlueTransforms_MIPSdspR2(const uint32_t* argb, in CollectColorBlueTransforms_MIPSdspR2()
221 uint32_t argb) { in TransformColorRed()
228 static void CollectColorRedTransforms_MIPSdspR2(const uint32_t* argb, in CollectColorRedTransforms_MIPSdspR2()
Dlossless_enc_neon.c39 static WEBP_INLINE uint8x16_t DoGreenShuffle_NEON(const uint8x16_t argb, in DoGreenShuffle_NEON()
48 static WEBP_INLINE uint8x16_t DoGreenShuffle_NEON(const uint8x16_t argb, in DoGreenShuffle_NEON()
64 const uint8x16_t argb = vld1q_u8((uint8_t*)argb_data); in SubtractGreenFromBlueAndRed_NEON() local
Dlossless.c265 const uint32_t argb = src[i]; in VP8LAddGreenToBlueAndRed_C() local
291 const uint32_t argb = src[i]; in VP8LTransformColorInverse_C() local
448 const uint32_t argb = *src++; in VP8LConvertBGRAToRGB_C() local
459 const uint32_t argb = *src++; in VP8LConvertBGRAToRGBA_C() local
471 const uint32_t argb = *src++; in VP8LConvertBGRAToRGBA4444_C() local
488 const uint32_t argb = *src++; in VP8LConvertBGRAToRGB565_C() local
505 const uint32_t argb = *src++; in VP8LConvertBGRAToBGR_C() local
517 const uint32_t argb = *src++; in CopyOrSwap() local
Dlossless_enc.c525 const int argb = (int)argb_data[i]; in VP8LSubtractGreenFromBlueAndRed_C() local
545 const uint32_t argb = data[i]; in VP8LTransformColor_C() local
560 uint32_t argb) { in TransformColorRed()
569 uint32_t argb) { in TransformColorBlue()
578 void VP8LCollectColorRedTransforms_C(const uint32_t* argb, int stride, in VP8LCollectColorRedTransforms_C()
590 void VP8LCollectColorBlueTransforms_C(const uint32_t* argb, int stride, in VP8LCollectColorBlueTransforms_C()
Dlossless_enc_sse41.c50 static void CollectColorBlueTransforms_SSE41(const uint32_t* argb, int stride, in CollectColorBlueTransforms_SSE41()
96 static void CollectColorRedTransforms_SSE41(const uint32_t* argb, int stride, in CollectColorRedTransforms_SSE41()
/external/pdfium/public/
Dfpdf_edit.h18 #define FPDF_GetBValue(argb) ((uint8_t)(argb)) argument
19 #define FPDF_GetGValue(argb) ((uint8_t)(((uint16_t)(argb)) >> 8)) argument
20 #define FPDF_GetRValue(argb) ((uint8_t)((argb) >> 16)) argument
21 #define FPDF_GetAValue(argb) ((uint8_t)((argb) >> 24)) argument
/external/webp/src/enc/
Dpredictor_enc.c59 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) { in UpdateHisto()
113 static uint32_t AddGreenToBlueAndRed(uint32_t argb) { in AddGreenToBlueAndRed()
121 static void MaxDiffsForRow(int width, int stride, const uint32_t* const argb, in MaxDiffsForRow()
303 const uint32_t* const argb, in GetBestPredictorForTile()
417 uint32_t* const argb, in CopyImageWithPrediction()
477 uint32_t* const argb, uint32_t* const argb_scratch, in VP8LResidualImage()
552 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetPredictionCostCrossColorRed()
575 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetBestGreenToRed()
605 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetPredictionCostCrossColorBlue()
639 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetBestGreenRedToBlue()
[all …]
Dbackward_references_enc.c232 uint32_t GetPixPairHash64(const uint32_t* const argb) { in GetPixPairHash64()
260 const uint32_t* const argb, int xsize, int ysize, in VP8LHashChainFill()
474 const uint32_t* const argb, in BackwardReferencesRle()
517 const uint32_t* const argb, int cache_bits, in BackwardReferencesLz77()
589 const uint32_t* const argb, int cache_bits, in BackwardReferencesLz77Box()
757 static int CalculateBestCacheSize(const uint32_t* argb, int quality, in CalculateBestCacheSize()
863 static int BackwardRefsWithLocalCache(const uint32_t* const argb, in BackwardRefsWithLocalCache()
898 int width, int height, const uint32_t* const argb, in GetBackwardReferencesLowEffort()
914 const uint32_t* const argb, int quality, in GetBackwardReferences()
1042 int width, int height, const uint32_t* const argb, int quality, in VP8LGetBackwardReferences()
/external/pdfium/core/fxge/apple/
Dfx_apple_impl.cpp37 uint32_t argb) { in CGDrawGlyphRun()
107 uint32_t argb, in DrawDeviceText()
/external/libmonet/quantize/
DPointProvider.java22 public double[] fromInt(int argb); in fromInt()
DPointProviderLab.java30 public double[] fromInt(int argb) { in fromInt()
/external/skia/docs/examples/
DRGBA4f_toSkColor.cpp9 SkColor argb = color4f.toSkColor(); in draw() local
DRGBA4f_FromColor.cpp8 SkColor argb = SkColorSetARGB(alpha, red, green, blue); in draw() local
/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/task/vision/segmenter/
DColoredLabel.java41 public static ColoredLabel create(String label, String displayName, int argb) { in create()
/external/skia/experimental/docs/
Dutilities.js5 function argb(a, r, g, b) { function

1234