Home
last modified time | relevance | path

Searched defs:g (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/external/v8/test/mjsunit/
Dconst-declaration.js32 function g() { function
49 function g() { function
68 function g(s) { function
85 function g(s) { function
104 function g() { function
121 function g() { function
140 function g(s) { function
157 function g(s) { function
Dproperty-load-across-eval.js39 function g() { function
58 function g() { function
76 function g() { function
Dreceiver-in-with-calls.js39 function g() { return this; }; function
45 function g() { return this; }; function
Dglobal-load-from-eval.js33 function g() { function
70 function g() { function
Ddate.js96 var g = new Date(); variable
107 var g = new Date(); variable
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
DDHParameters.java13 private BigInteger g; field in DHParameters
34 BigInteger g) in DHParameters()
41 BigInteger g, in DHParameters()
49 BigInteger g, in DHParameters()
58 BigInteger g, in DHParameters()
68 BigInteger g, in DHParameters()
78 BigInteger g, in DHParameters()
DDSAParameters.java10 private BigInteger g; field in DSAParameters
18 BigInteger g) in DSAParameters()
28 BigInteger g, in DSAParameters()
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_blit.h89 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \ argument
95 #define RGB_FROM_RGB565(Pixel, r, g, b) \ argument
101 #define RGB_FROM_RGB555(Pixel, r, g, b) \ argument
107 #define RGB_FROM_RGB888(Pixel, r, g, b) \ argument
140 #define DISEMBLE_RGB(buf, bpp, fmt, Pixel, r, g, b) \ argument
170 #define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \ argument
177 #define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \ argument
184 #define RGB565_FROM_RGB(Pixel, r, g, b) \ argument
188 #define RGB555_FROM_RGB(Pixel, r, g, b) \ argument
192 #define RGB888_FROM_RGB(Pixel, r, g, b) \ argument
[all …]
DSDL_pixels.c187 int r,g,b; in SDL_AllocFormat() local
273 int r, g, b; in SDL_DitherColors() local
313 Uint8 SDL_FindColor(SDL_Palette *pal, Uint8 r, Uint8 g, Uint8 b) in SDL_FindColor()
342 const Uint8 r, const Uint8 g, const Uint8 b) in SDL_MapRGB()
357 const Uint8 r, const Uint8 g, const Uint8 b, const Uint8 a) in SDL_MapRGBA()
370 Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a) in SDL_GetRGBA()
403 void SDL_GetRGB(Uint32 pixel, SDL_PixelFormat *fmt, Uint8 *r,Uint8 *g,Uint8 *b) in SDL_GetRGB()
/external/bison/src/
Dvcg.c44 new_graph (graph *g) in new_graph()
384 add_node (graph *g, node *n) in add_node()
391 add_edge (graph *g, edge *e) in add_edge()
398 add_classname (graph *g, int val, const char *name) in add_classname()
408 add_infoname (graph *g, int integer, const char *str) in add_infoname()
419 add_colorentry (graph *g, int color_idx, int red_cp, in add_colorentry()
482 close_graph (graph *g, FILE *fout) in close_graph()
629 output_graph (graph *g, FILE *fout) in output_graph()
/external/skia/src/effects/
DSkColorMatrixFilter.cpp6 static int32_t rowmul4(const int32_t array[], unsigned r, unsigned g, in rowmul4()
11 static int32_t rowmul3(const int32_t array[], unsigned r, unsigned g, in rowmul3()
17 unsigned r, unsigned g, unsigned b, unsigned a) { in General()
29 unsigned r, unsigned g, unsigned b, unsigned a) { in General16()
40 unsigned r, unsigned g, unsigned b, unsigned a) { in AffineAdd()
52 unsigned r, unsigned g, unsigned b, unsigned a) { in AffineAdd16()
63 unsigned r, unsigned g, unsigned b, unsigned a) { in ScaleAdd()
76 unsigned r, unsigned g, unsigned b, unsigned a) { in ScaleAdd16()
88 unsigned r, unsigned g, unsigned b, unsigned a) { in Add()
100 unsigned r, unsigned g, unsigned b, unsigned a) { in Add16()
[all …]
/external/webkit/WebCore/platform/graphics/
DColor.cpp53 RGBA32 makeRGB(int r, int g, int b) in makeRGB()
58 RGBA32 makeRGBA(int r, int g, int b, int a) in makeRGBA()
69 RGBA32 makeRGBA32FromFloats(float r, float g, float b, float a) in makeRGBA32FromFloats()
123 int g = static_cast<int>(nextafter(256, 0) * (colors * (1 - m))); in makeRGBAFromCMYKA() local
220 float r, g, b, a; in light() local
245 float r, g, b, a; in dark() local
281 … int g = (green() * alpha() * (255 - source.alpha()) + 255 * source.alpha() * source.green()) / d; in blend() local
297 int g = blendComponent(green(), alpha); in blendWithWhite() local
308 void Color::getRGBA(float& r, float& g, float& b, float& a) const in getRGBA()
316 void Color::getRGBA(double& r, double& g, double& b, double& a) const in getRGBA()
[all …]
DColor.h76 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)), m_valid(true) { } in Color()
77 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { } in Color()
79 …Color(float r, float g, float b, float a) : m_color(makeRGBA32FromFloats(r, g, b, a)), m_valid(tru… in Color()
98 void setRGB(int r, int g, int b) { m_color = makeRGB(r, g, b); m_valid = true; } in setRGB()
/external/skia/include/core/
DSkDither.h30 #define SkDITHER_G32_FOR_565_MACRO(g, d) (g + (d >> 1) - (g >> 6)) argument
35 #define SkDITHER_G32_FOR_4444_MACRO(g, d) (g + d - (g >> 4)) argument
47 inline unsigned SkDITHER_G32_FOR_565(unsigned g, unsigned d) in SkDITHER_G32_FOR_565()
65 #define SkDITHER_G32_FOR_565(g, d) SkDITHER_G32_FOR_565_MACRO(g, d) argument
70 #define SkDITHER_G32To565(g, d) SkG32ToG16(SkDITHER_G32_FOR_565(g, d)) argument
75 #define SkDITHER_G32To4444(g, d) SkG32To4444(SkDITHER_G32_FOR_4444_MACRO(g, d)) argument
109 static inline uint16_t SkDitherRGBTo565(U8CPU r, U8CPU g, U8CPU b, in SkDitherRGBTo565()
150 static inline SkPMColor16 SkDitherARGB32To4444(U8CPU a, U8CPU r, U8CPU g, in SkDitherARGB32To4444()
167 unsigned g = SkGetPackedG32(c); in SkDitherARGB32To4444() local
DSkColorPriv.h71 #define SkG16Assert(g) SkASSERT((unsigned)(g) <= SK_G16_MASK) argument
74 static inline uint16_t SkPackRGB16(unsigned r, unsigned g, unsigned b) { in SkPackRGB16()
195 #define SkG32Assert(g) SkASSERT((unsigned)(g) <= SK_G32_MASK) argument
202 unsigned g = SkGetPackedG32(c); in SkPMColorAssert() local
214 static inline SkPMColor SkPackARGB32(U8CPU a, U8CPU r, U8CPU g, U8CPU b) { in SkPackARGB32()
252 #define SkG32ToG16_MACRO(g) ((unsigned)(g) >> (SK_G32_BITS - SK_G16_BITS)) argument
260 static inline unsigned SkG32ToG16(unsigned g) { in SkG32ToG16()
270 #define SkG32ToG16(g) SkG32ToG16_MACRO(g) argument
280 unsigned g = ((c >> (SK_G32_SHIFT + (8 - SK_G16_BITS))) & SK_G16_MASK) << SK_G16_SHIFT; in SkPixel32ToPixel16() local
285 static inline U16CPU SkPack888ToRGB16(U8CPU r, U8CPU g, U8CPU b) { in SkPack888ToRGB16()
[all …]
/external/skia/src/core/
DSkColor.cpp21 SkPMColor SkPreMultiplyARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b) { in SkPreMultiplyARGB()
40 unsigned g = SkColorGetG(c); in SkPreMultiplyColor() local
58 void SkRGBToHSV(U8CPU r, U8CPU g, U8CPU b, SkScalar hsv[3]) { in SkRGBToHSV()
125 unsigned r, g, b; in SkHSVToColor() local
/external/speex/libspeex/
Dltp.h46 #define gain_3tap_to_1tap(g) (ABS(g[1]) + (g[0]>0 ? g[0] : -SHR16(g[0],1)) + (g[2]>0 ? g[2] : -SHR1… argument
48 #define gain_3tap_to_1tap(g) (ABS(g[1]) + (g[0]>0 ? g[0] : -.5*g[0]) + (g[2]>0 ? g[2] : -.5*g[2])) argument
/external/junit/src/junit/awtui/
DProgressBar.java26 public void paint(Graphics g) { in paint()
31 public void paintBackground(Graphics g) { in paintBackground()
43 public void paintStatus(Graphics g) { in paintStatus()
DLogo.java48 public void paint(Graphics g) { in paint()
54 public void paintBackground( java.awt.Graphics g) { in paintBackground()
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
DDHParameter.java16 DERInteger p, g, l; field in DHParameter
20 BigInteger g, in DHParameter()
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
Dregress-185485.js76 var x = { f:0, g:0 }; property
122 var g = function() {} function
/external/iproute2/tc/
Dtc_cbq.c31 double g = 1.0 - 1.0/(1<<ewma_log); in tc_cbq_calc_maxidle() local
47 double g = 1.0 - 1.0/(1<<ewma_log); in tc_cbq_calc_offtime() local
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-127557.js75 var g = clone(f); variable
76 g.prototype = new Object; class
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
DSDL_cgxaccel.c36 #define BMKBRP(a,b,c,d,e,f,g,h,i,j) BltMaskBitMapRastPort(a,b,c,d,e,f,g,h,i,j) argument
37 #define BBRP(a,b,c,d,e,f,g,h,i) BltBitMapRastPort(a,b,c,d,e,f,g,h,i) argument
38 #define BBB(a,b,c,d,e,f,g,h,i,j,k) BltBitMap(a,b,c,d,e,f,g,h,i,j,k) argument
40 void BMKBRP(struct BitMap *a,WORD b, WORD c,struct RastPort *d,WORD e,WORD f,WORD g,WORD h,UBYTE i,… in BMKBRP()
43 void BBRP(struct BitMap *a,WORD b, WORD c,struct RastPort *d,WORD e,WORD f,WORD g,WORD h,UBYTE i) in BBRP()
46 void BBB(struct BitMap *a,WORD b, WORD c,struct BitMap *d,WORD e,WORD f,WORD g,WORD h,UBYTE i,UBYTE… in BBB()
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
DDSAParameter.java17 DERInteger p, q, g; field in DSAParameter
45 BigInteger g) in DSAParameter()

12345678910>>...14