/external/libcxx/test/std/numerics/numarray/class.gslice/gslice.cons/ |
default.pass.cpp | 21 std::gslice gs; local 22 assert(gs.start() == 0); 23 assert(gs.size().size() == 0); 24 assert(gs.stride().size() == 0);
|
/external/libcxx/test/std/numerics/numarray/template.gslice.array/ |
default.fail.cpp | 21 std::gslice_array<int> gs; local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/class.gslice/gslice.cons/ |
default.pass.cpp | 21 std::gslice gs; local 22 assert(gs.start() == 0); 23 assert(gs.size().size() == 0); 24 assert(gs.stride().size() == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.gslice.array/ |
default.fail.cpp | 21 std::gslice_array<int> gs; local
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_gs_state.c | 42 struct brw_gs_unit_state *gs; local 44 gs = brw_state_batch(brw, AUB_TRACE_GS_STATE, 45 sizeof(*gs), 32, &brw->gs.state_offset); 47 memset(gs, 0, sizeof(*gs)); 50 if (brw->gs.prog_active) { 51 gs->thread0.grf_reg_count = (ALIGN(brw->gs.prog_data->total_grf, 16) / 54 gs->thread0.kernel_start_pointer [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
reloc-6a.s | 2 .globl gs 4 gs: label 8 lw $4,%got_page(gs)($gp) 9 addiu $4,$4,%got_ofst(gs)
|
reloc-6b.s | 2 .globl gs 4 gs: label 8 lw $4,%got_page(gs)($gp) 9 addiu $4,$4,%got_ofst(gs)
|
/external/clang/test/CodeGen/ |
2007-09-27-ComplexIntCompare.c | 7 struct s gs = { 100 + 200i }; variable in typeref:struct:s 8 struct s __attribute__((noinline)) foo (void) { return gs; } 12 if (foo ().x != gs.x)
|
no-opt-volatile-memcpy.c | 9 struct s gs; variable in typeref:struct:s 14 gs = gs; 15 ls = gs; 22 // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) 24 // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* %[[TWO]], i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) 35 s.y = gs; 39 // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s1, %struct.s1* @s, i32 0, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true)
|
/external/valgrind/memcheck/tests/ |
inits.c | 7 static int gs; variable 14 if (gs == 0xCAFEBABE) printf("1!\n");
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
GlobalSync.java | 29 protected void setupGlobalSync(RenderScript mRS, ScriptC_global_sync gs, int v) { 37 gs.set_aFailed(AFailed); 50 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local 53 setupGlobalSync(mRS, gs, v); 54 gs.forEach_write_global(AIn); 55 gs.invoke_test_read_global(v); 62 gs.destroy(); 71 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local 74 setupGlobalSync(mRS, gs, v); 75 gs.forEach_write_static_global(AIn) 92 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local 113 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local [all...] |
VoidPtr.java | 31 protected void setupVoidPtr(RenderScript mRS, ScriptC_void_ptr gs) { 39 gs.set_aFailed(AFailed); 50 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local 51 setupVoidPtr(mRS, gs); 58 gs.forEach_set_output_void_int(AOutput); 59 gs.forEach_check_output_int(AOutput); 66 gs.destroy(); 78 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local 79 setupVoidPtr(mRS, gs); 86 gs.forEach_set_output_void_char(AOutput) 107 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local 138 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
i386-opc.c | 32 const seg_entry gs = { "gs", 0x65 }; variable
|
/bionic/libc/arch-x86/bionic/ |
__set_tls.c | 42 // Get the existing entry number from %gs. 43 uint32_t gs; local 44 __asm__ __volatile__("movw %%gs, %w0" : "=q"(gs) /*output*/); 45 result->entry_number = (gs & 0xffff) >> 3; 66 // Change %gs to be new GDT entry. 70 __asm__ __volatile__("movw %w0, %%gs" : /*output*/ : "q"(selector) /*input*/ : /*clobber*/);
|
/external/valgrind/none/tests/x86-solaris/ |
coredump_single_thread.c | 10 uint16_t cs, ds, ss, es, fs, gs; local 20 "movw %%gs, %5\n" 21 : "=m" (cs), "=m" (ds), "=m" (ss), "=m" (es), "=m" (fs), "=m" (gs)); 22 printf("cs=%#x ds=%#x ss=%#x es=%#x fs=%#x gs=%#x\n", 23 cs, ds, ss, es, fs, gs);
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
DHParameterSpecTest.java | 46 BigInteger[] gs = { new BigInteger("-1000000000000"), BigInteger.ZERO, local 50 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i]); 56 dhps.getG(), gs[i]); 59 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i], ls[i]); 65 dhps.getG(), gs[i]);
|
DHPrivateKeySpecTest.java | 46 BigInteger[] gs = { new BigInteger("-1000000000000"), BigInteger.ZERO, local 49 DHPrivateKeySpec dhpks = new DHPrivateKeySpec(xs[i], ps[i], gs[i]); 58 dhpks.getG(), gs[i]);
|
DHPublicKeySpecTest.java | 46 BigInteger[] gs = { new BigInteger("-1000000000000"), BigInteger.ZERO, local 49 DHPublicKeySpec dhpks = new DHPublicKeySpec(ys[i], ps[i], gs[i]); 58 dhpks.getG(), gs[i]);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/ |
testcase.py | 24 """Base TestCase class for gs integration tests.""" 31 from boto.gs.connection import GSConnection 32 from tests.integration.gs import util 33 from tests.integration.gs.util import retry 41 gs = True variable in class:GSTestCase 72 return "boto-gs-test-%s" % repr(time.time()).replace(".", "-")
|
/external/clang/test/CodeGenCXX/ |
no-opt-volatile-memcpy.cpp | 9 struct s gs; variable in typeref:struct:s 14 gs = gs; 15 ls = gs; 22 // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) 24 // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* %[[TWO]], i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) 35 s.y = gs; 39 // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s1, %struct.s1* @s, i32 0, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s, %struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true)
|
/external/fonttools/Lib/fontTools/pens/ |
reportLabPen.py | 55 gs = font.getGlyphSet() variable 56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5)) 57 g = gs[glyphName]
|
/external/icu/icu4c/source/samples/layout/ |
gdiglue.cpp | 32 GDIGUISupport *gs = (GDIGUISupport *) guiSupport; local 34 delete gs;
|
gnomeglue.cpp | 35 GnomeGUISupport *gs = (GnomeGUISupport *) guiSupport; local 37 delete gs;
|
/external/toybox/kconfig/ |
util.c | 59 struct gstr gs; local 60 gs.s = malloc(sizeof(char) * 64); 61 gs.len = 16; 62 strcpy(gs.s, "\0"); 63 return gs; 69 struct gstr gs; local 70 gs.s = strdup(s); 71 gs.len = strlen(s) + 1; 72 return gs; 76 void str_free(struct gstr *gs) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
DHParameterSpecTest.java | 46 BigInteger[] gs = {new BigInteger("-1000000000000"), BigInteger.ZERO, local 50 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i]); 56 dhps.getG(), gs[i]); 59 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i], ls[i]); 65 dhps.getG(), gs[i]);
|