/external/clang/test/SemaObjCXX/Inputs/ |
nullability-consistency-2.h | 3 void g2(int (^block)(int, int)); // expected-warning{{block pointer is missing a nullability type specifier}}
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/ |
copy.pass.cpp | 62 char g1, g2, g3, p1, p3; local 64 t.setg(&g1, &g2, &g3); 69 wchar_t g1, g2, g3, p1, p3; local 71 t.setg(&g1, &g2, &g3);
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
assign.pass.cpp | 65 char g1, g2, g3, p1, p3; local 67 t.setg(&g1, &g2, &g3); 73 wchar_t g1, g2, g3, p1, p3; local 75 t.setg(&g1, &g2, &g3);
|
swap.pass.cpp | 75 char g1, g2, g3, p1, p3; local 77 t.setg(&g1, &g2, &g3); 83 wchar_t g1, g2, g3, p1, p3; local 85 t.setg(&g1, &g2, &g3);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/ |
copy.pass.cpp | 62 char g1, g2, g3, p1, p3; local 64 t.setg(&g1, &g2, &g3); 69 wchar_t g1, g2, g3, p1, p3; local 71 t.setg(&g1, &g2, &g3);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
assign.pass.cpp | 65 char g1, g2, g3, p1, p3; local 67 t.setg(&g1, &g2, &g3); 73 wchar_t g1, g2, g3, p1, p3; local 75 t.setg(&g1, &g2, &g3);
|
swap.pass.cpp | 75 char g1, g2, g3, p1, p3; local 77 t.setg(&g1, &g2, &g3); 83 wchar_t g1, g2, g3, p1, p3; local 85 t.setg(&g1, &g2, &g3);
|
/external/nanopb-c/examples/using_double_on_avr/ |
test_conversions.c | 34 uint64_t g2 = got_double; local 42 if (g2 != e2) 45 (unsigned long long)g2,
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_FwdTransformResidual4x4.c | 82 int g2 = f1 + f2; local 84 int h0 = g0 + g2; 86 int h2 = g0 - g2;
|
armVCM4P10_TransformResidual4x4.c | 83 int g2 = (f1>>1) - f3; local 86 int h1 = g1 + g2; 87 int h2 = g1 - g2;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/ |
test_versioning.py | 55 g2 = k.generation 63 self.assertIn(g2, generations) 78 self.assertIn(g2, generations) 81 b.delete_key("foo", generation=g2) 106 g2 = k.generation 107 self.assertNotEqual(g2, g1) 113 k = b.get_key("foo", generation=g2) 128 g2 = k.generation 131 acl1g2 = b.get_acl("foo", generation=g2) 142 acl2g2 = b.get_acl("foo", generation=g2) [all...] |
/external/clang/test/SemaCXX/ |
warn-unused-result.cpp | 9 S *g2() __attribute__((warn_unused_result)); 15 g2(); // expected-warning {{ignoring return value}} 20 (void)g2(); 26 g2()->t(); 31 S *s2 = g2();
|
/external/mesa3d/src/mesa/sparc/ |
sparc_clip.S | 28 .register %g2, #scratch 81 ldub [%i3], %g2 84 or %g2, %g3, %g2 99 * g2: (tmpAndMask << 8) | tmpOrMask 134 or %g2, %g3, %g2 ! IEU1 136 and %g2, %g4, %g2 ! IEU0 Group 156 stb %g2, [%i3] ! LS [all...] |
/external/boringssl/src/crypto/asn1/ |
a_utctm.c | 314 #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') 315 tm.tm_year=g2(s->data); 318 tm.tm_mon=g2(s->data+2)-1; 319 tm.tm_mday=g2(s->data+4); 320 tm.tm_hour=g2(s->data+6); 321 tm.tm_min=g2(s->data+8); 322 tm.tm_sec=g2(s->data+10); 327 offset=g2(s->data+13)*60+g2(s->data+15); 331 #undef g2 [all...] |
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/ |
TextureUnpacker.java | 153 Graphics2D g2 = paddedImage.createGraphics(); local 154 g2.drawImage(splitImage, padding, padding, null); 155 g2.dispose(); 168 Graphics2D g2 = splitImage.createGraphics(); local 169 g2.setColor(Color.BLACK); 176 if (endX >= startX) g2.drawLine(startX, 0, endX, 0); 177 if (endY >= startY) g2.drawLine(0, startY, 0, endY); 183 g2.drawLine(padStartX, splitImage.getHeight() - 1, padEndX, splitImage.getHeight() - 1); 184 g2.drawLine(splitImage.getWidth() - 1, padStartY, splitImage.getWidth() - 1, padEndY); 186 g2.dispose() [all...] |
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
p3-0x.cpp | 9 auto g2() const noexcept(noexcept(f((*this).ptr))) -> decltype(f(ptr)); 14 float &fr = a.g2(); 16 static_assert(noexcept(a.g2()), "exception-specification failure"); 34 auto g2() const noexcept(noexcept(f(((this))->ptr))) -> decltype(f(ptr)); 45 float &fr = ci.g2(); 53 static_assert(noexcept(ci.g2()), "exception-specification failure");
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue3729.go | 19 // try to pass some non-trivial arguments to function g2 24 void g2(int x, char a, float b, short c, int d) { 43 _, e = C.g2(C.EINVAL, C._expA, C._expB, C._expC, C._expD)
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue3729.go | 19 // try to pass some non-trivial arguments to function g2 24 void g2(int x, char a, float b, short c, int d) { 43 _, e = C.g2(C.EINVAL, C._expA, C._expB, C._expC, C._expD)
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/ |
sparc5vis4.s | 3 subxc %g1, %g2, %g3 4 subxccc %g1, %g2, %g3 10 fpcmpgt8 %f4, %f6, %g2
|
reloc64.d | 25 2c: 05 1d 95 0c sethi %hi\(0x76543000\), %g2 26 30: 84 10 62 10 or %g1, 0x210, %g2 32 40: 05 00 00 00 sethi %hi\((0x|)0\), %g2 34 44: 84 10 60 00 mov %g1, %g2 41 54: 05 00 00 00 sethi %hi\((0x|)0\), %g2 43 58: 84 10 60 00 mov %g1, %g2
|
/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...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
p9.cpp | 23 void g2() { function in namespace:PR6707
|
/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);
|
/external/clang/test/PCH/ |
chain-staticvar-instantiation.cpp | 33 int g2 = NS::TS<int, 2>::value;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
armVCM4P10_TransformResidual4x4_s.s | 113 g2 RN 12 label 310 SHADD16 g2, trCol10,constZero ;// (f1>>1) constZero is a register holding 0 312 SSUB16 g2, g2, trCol30 315 SADD16 colOp10, g1, g2 316 SSUB16 colOp20, g1, g2 323 SHADD16 g2, trCol12,constZero ;// (f1>>1) constZero is a register holding 0 325 SSUB16 g2, g2, trCol32 328 SADD16 colOp12, g1, g2 [all...] |