HomeSort by relevance Sort by last modified time
    Searched defs:g2 (Results 76 - 100 of 388) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
complex.c 22 _Complex double g1, g2; variable
27 g1 = g1 + g2;
28 g1 = g1 - g2;
29 g1 = g1 * g2;
partial-reinitialization2.c 6 struct P2 { int a, b, c; } g2 = { 1, 2, 3 }; variable in typeref:struct:P2
36 // CHECK: call void @llvm.memcpy{{.*}}%struct.P2* @g2{{.*}}i64 12, i32 {{[0-9]}}, i1 false)
39 struct LP2 l = { .p2 = g2, .p2.b = 10 };
regparm-struct.c 14 void g2() { function
tbaa-class.cpp 65 uint32_t g2(uint32_t *s, StructA *A, uint64_t count) { function
tbaa.cpp 59 uint32_t g2(uint32_t *s, StructA *A, uint64_t count) { function
bitfield-2.c 111 union u2 g2 = { 0xdeadbeef }; variable in typeref:union:u2
127 union u2 g2 = { 0xdeadbeef }; local
129 res ^= g2.f0;
130 res ^= f2_load(&g2) ^ f2_store(&g2) ^ f2_reload(&g2);
131 res ^= g2.f0;
const-init.c 35 // CHECK: @g2 = global { i32, i32 } { i32 1, i32 10 }
36 _Complex int g2 = 1 + 10i; variable
  /external/clang/test/CodeGenCXX/
template-instantiation.cpp 194 friend void g2(S s) {} function in struct:PR10666::S
200 g2(s1); g2(s2); g2(s3);
pr12251.cpp 24 e2 g2(e2 *x) { function
  /external/clang/test/Sema/
function-redecl.c 24 int g2(int, int); // expected-note{{previous declaration is here}}
26 INT g2(x) // expected-error{{conflicting types for 'g2'}} function
private-extern.c 10 static int g2; variable
11 __private_extern__ int g2; variable
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 31 void g2() { int *p = A{}; } // expected-warning{{pointer is initialized by a temporary array}} function in namespace:PointerToArrayDecay
member-expr.cpp 138 int g2() { function in namespace:PR9025
  /external/v8/test/mjsunit/
global-infinity-strict.js 56 function g2() { return (1/0); } function
57 test((1/0), g2);
global-infinity.js 47 function g2() { return (1/0); } function
48 test((1/0), g2);
global-nan-strict.js 56 function g2() { return (0/0); } function
57 test((0/0), g2);
global-nan.js 47 function g2() { return (0/0); } function
48 test((0/0), g2);
strict-mode-implicit-receiver.js 127 function g2() { function
134 assertTrue(typeof g2() == "object");
135 assertTrue(typeof g2(42) == "object");
137 %OptimizeFunctionOnNextCall(g2);
138 assertTrue(typeof g2() == "object");
139 assertTrue(typeof g2(42) == "object");
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
quantize.c 335 Word32 g2 = (g << 1) + 1; local
344 if(g2 < 0 && g >= 0)
346 g2 = -g2;
359 distSingle = (saShft * saShft) >> g2;
365 distSingle = (diff * diff) >> g2;
371 distSingle = (diff * diff) >> g2;
377 distSingle = (diff * diff) >> g2;
408 distSingle = L_shl((saShft * saShft), g2);
414 distSingle = L_shl((diff * diff), g2);
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 283 Graphics2D g2 = (Graphics2D) g.create(); local
284 g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
286 g2.scale(zoom, zoom);
287 g2.drawImage(image, 0, 0, null);
289 g2.setComposite(overlayAlpha);
290 g2.drawImage(overlay, 0, image.getHeight() - overlay.getHeight(), null);
292 g2.dispose();
298 Graphics2D g2 = null; local
306 g2 = grid.createGraphics();
308 g2 = grid.createGraphics()
574 Graphics2D g2 = (Graphics2D) g.create(); local
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305.c 262 uint32_t g0, g1, g2, g3, g4; local
298 g2 = state->h2 + b;
299 b = g2 >> 26;
300 g2 &= 0x3ffffff;
310 state->h2 = (state->h2 & nb) | (g2 & b);
  /external/clang/test/Analysis/
stack-addr-ps.cpp 10 const int& g2() { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 10 constexpr int g2(int n) { return f(n); } function in namespace:StdExample
23 static_assert(g2(0) == 1, "");
24 static_assert(g2(1) == 1, "");
  /external/clang/test/CXX/drs/
dr15xx.cpp 81 void g2() { f2({"foo","bar"}); } // chooses #4 function in namespace:dr1589
100 void g2() { f2({"foo","bar"}); } // chooses #4 expected-error{{call to 'f2' is ambiguous}} function in namespace:dr1589::with_error
  /external/clang/test/Layout/
ms-vtordisp-local.cpp 119 static void g2() { function in struct:Container2::InnerContainer
151 // g2() has no pragmas - stack is not affected.
164 InnerContainer::g2();

Completed in 3006 milliseconds

1 2 34 5 6 7 8 91011>>