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

1 2 3 4 5

  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
GroupBorder.java 24 Graphics2D gg = (Graphics2D) g.create(); local
26 int titleW = gg.getFontMetrics().stringWidth(title) + 20;
27 int titleDescent = gg.getFontMetrics().getDescent();
29 gg.setColor(c.getBackground());
34 gg.fillPolygon(xs, ys, 4);
35 gg.fillRect(0, titleHeight, width, height);
36 gg.setColor(c.getForeground());
37 gg.drawString(title, 10, titleHeight - titleDescent);
39 gg.fillRect(0, 0, width, height);
42 gg.dispose()
    [all...]
ImagePanel.java 85 Graphics2D gg = (Graphics2D)g; local
86 gg.setColor(Color.LIGHT_GRAY);
87 gg.fillRect(0, 0, getWidth(), getHeight());
91 gg.setPaint(paint);
92 gg.fillRect(0, 0, getWidth(), getHeight());
93 gg.setPaint(null);
103 gg.drawImage(image, 0, (int)(getHeight()/2 - th/2), (int) tw, (int) th, null);
107 gg.drawImage(image, (int)((float)getWidth()/2 - tw/2), 0, (int) tw, (int) th, null);
119 gg.drawImage(image, tx, ty, tx + tw, ty + th, x, y, x + width, y + width, null);
125 gg.drawImage(image, tx, ty, tx + tw, ty + th, x, y, x + width, y + width, null)
    [all...]
  /external/compiler-rt/test/profile/Inputs/
instrprof-merge-match-lib.c 11 int gg = 0; variable
14 gg++;
16 gg--;
  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
Sprite.java 27 public void draw(Graphics2D gg) {
29 gg = (Graphics2D) gg.create();
30 gg.translate(x, y);
31 gg.scale(scaleX, scaleY);
32 gg.drawImage(image, null, isCentered ? -image.getWidth()/2 : 0, isCentered ? -image.getHeight()/2 : 0);
33 gg.dispose();
TimelineApplet.java 218 Graphics2D gg = (Graphics2D) g; local
221 gg.setPaint(bgPaint);
222 gg.fillRect(0, 0, getWidth(), getHeight());
223 gg.setPaint(null);
226 blankStripSprite.draw(gg);
227 imgUniversalSprite.draw(gg);
228 imgTweenSprite.draw(gg);
229 imgEngineSprite.draw(gg);
230 imgLogoSprite.draw(gg);
  /external/ppp/pppd/
md4.c 79 #define gg(A,B,C,D,i,s) A = rot((A + g(B,C,D) + X[i] + C2),s) macro
157 gg(A , B , C , D , 0 , gs1); /* Round 2 */
158 gg(D , A , B , C , 4 , gs2);
159 gg(C , D , A , B , 8 , gs3);
160 gg(B , C , D , A , 12 , gs4);
161 gg(A , B , C , D , 1 , gs1);
162 gg(D , A , B , C , 5 , gs2);
163 gg(C , D , A , B , 9 , gs3);
164 gg(B , C , D , A , 13 , gs4);
165 gg(A , B , C , D , 2 , gs1)
    [all...]
  /art/test/451-spill-splot/src/
Main.java 39 float gg = 6; local
49 System.out.println(aa + bb + cc + dd + ee + ff + gg + hh + ii + jj + kk + ll + mm + nn);
68 gg = $noinline$computeFloat();
  /external/tensorflow/tensorflow/core/kernels/
adjust_saturation_op.cc 122 float rr, gg, bb; local
135 gg = x;
140 gg = c;
145 gg = c;
150 gg = x;
155 gg = 0;
160 gg = 0;
165 gg = 0;
169 *g = gg + m;
  /external/clang/test/SemaCXX/
lambda-expressions.cpp 80 [=]() { const G* gg = &g; return gg->a; };
81 [=]() { return [=]{ const G* gg = &g; return gg->a; }(); }; // expected-error {{no matching constructor for initialization of 'G'}}
82 (void)^{ return [=]{ const G* gg = &g; return gg->a; }(); }; // expected-error 2 {{no matching constructor for initialization of 'const G'}}
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
fft.c 73 int16_t dd, ee, ff, gg, hh, ii; local
210 for (gg=0; gg<19; gg++) {
309 for (gg=0; gg<3; gg++) {
311 dd = 12 + 12 * gg;
  /external/clang/test/Sema/
attr-flag-enum.c 17 gg = ~0x1, // no-warning enumerator in enum:flag2
asm.c 101 extern int gg asm ("gg_asm");
  /frameworks/base/tools/aapt2/compile/
PngCrunch.cpp 646 int gg = *in_row++; local
651 rr = gg = bb = 0;
654 const uint32_t color = rr << 24 | gg << 16 | bb << 8 | aa;
671 int gg = in_row[x * 4 + 1]; local
676 rr = gg = bb = 0;
687 (png_byte)(rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
708 int gg = *in_row++; local
713 rr = gg = bb = 0;
716 out_row[x * bpp + 1] = gg;
Png.cpp 188 int i, j, rr, gg, bb, aa;
208 gg = row[1];
221 printf(" (%d %d", rr, gg);
224 printf(" (%d %d %d)", rr, gg, bb);
227 printf(" (%d %d %d %d)", rr, gg, bb, aa);
254 int i, j, rr, gg, bb, aa, idx; local
278 gg = *row++;
283 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation);
284 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation);
289 maxGrayDeviation, i, j, rr, gg, bb, aa)
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 824 int i, j, rr, gg, bb, aa; local
843 gg = row[1];
856 printf(" (%d %d", rr, gg);
859 printf(" (%d %d %d)", rr, gg, bb);
862 printf(" (%d %d %d %d)", rr, gg, bb, aa);
882 int i, j, rr, gg, bb, aa, idx;; local
923 gg = 0;
934 gg = *(row + 1);
940 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation);
941 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/graphics/
BitmapTest.java 219 int gg = computePrePostMul(a0, g0); local
220 assertTrue("green", Math.abs(gg - g1) <= tolerance);
228 int cc = Color.argb(a0, rr, gg, bb);
  /external/fio/
gfio.c 79 static void setup_iops_graph(struct gfio_graphs *gg)
86 gg->read_iops = graph_add_label(g, "Read IOPS");
87 gg->write_iops = graph_add_label(g, "Write IOPS");
88 gg->trim_iops = graph_add_label(g, "Trim IOPS");
89 graph_set_color(g, gg->read_iops, GFIO_READ_R, GFIO_READ_G, GFIO_READ_B);
90 graph_set_color(g, gg->write_iops, GFIO_WRITE_R, GFIO_WRITE_G, GFIO_WRITE_B);
91 graph_set_color(g, gg->trim_iops, GFIO_TRIM_R, GFIO_TRIM_G, GFIO_TRIM_B);
95 gg->iops_graph = g;
98 static void setup_bandwidth_graph(struct gfio_graphs *gg)
105 gg->read_bw = graph_add_label(g, "Read Bandwidth")
    [all...]
  /external/tensorflow/tensorflow/python/eager/
backprop_test.py 340 with backprop.GradientTape() as gg:
341 gg.watch(y)
343 inner_grad = gg.gradient(z, [y])[0]
380 with backprop.GradientTape(persistent=True) as gg:
381 gg.watch(y)
384 inner_grad = gg.gradient(z, [y])[0]
387 del gg
  /external/libffi/testsuite/libffi.call/
huge_struct.c 49 float gg; member in struct:BigStruct
150 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
309 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
337 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
huge_struct.c 49 float gg; member in struct:BigStruct
150 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
309 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
337 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
huge_struct.c 49 float gg; member in struct:BigStruct
150 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
309 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
337 retVal.ee, retVal.ff, retVal.gg, retVal.hh, retVal.ii, (unsigned long)retVal.jj,
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 358 register int32 gg = (int32)k6; local
385 "r"(gg),
  /prebuilts/go/darwin-x86/src/image/color/
ycbcr.go 317 gg := uint32(g)
320 if w < gg {
321 w = gg
330 m := (w - gg) * 0xff / w
  /prebuilts/go/darwin-x86/src/regexp/syntax/
simplify_test.go 91 {`[a-ee-gg-m]`, `[a-m]`},
  /prebuilts/go/linux-x86/src/image/color/
ycbcr.go 317 gg := uint32(g)
320 if w < gg {
321 w = gg
330 m := (w - gg) * 0xff / w

Completed in 763 milliseconds

1 2 3 4 5