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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/test/MC/AsmParser/
2011-09-06-NoNewline.s 2 movl %gs:8, %eax
4 movl %gs:8, %eax
6 movl %gs:8, %eax
  /external/llvm/test/MC/X86/
2011-09-06-NoNewline.s 3 movl %gs:8, %ea
  /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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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/fio/lib/
gauss.c 9 static int gauss_dev(struct gauss_state *gs)
14 if (!gs->stddev)
17 r = __rand(&gs->r);
18 vr = gs->stddev * (r / (FRAND32_MAX + 1.0));
20 return vr - gs->stddev / 2;
23 unsigned long long gauss_next(struct gauss_state *gs)
29 sum += __rand(&gs->r) % (gs->nranges + 1);
33 if (gs->stddev) {
34 int dev = gauss_dev(gs);
    [all...]
gauss.h 14 void gauss_init(struct gauss_state *gs, unsigned long nranges, double dev,
16 unsigned long long gauss_next(struct gauss_state *gs);
17 void gauss_disable_hash(struct gauss_state *gs);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs_state.c 41 struct brw_gs_unit_state *gs; local
43 gs = brw_state_batch(brw, AUB_TRACE_GS_STATE,
44 sizeof(*gs), 32, &brw->ff_gs.state_offset);
46 memset(gs, 0, sizeof(*gs));
50 gs->thread0.grf_reg_count = (ALIGN(brw->ff_gs.prog_data->total_grf, 16) /
53 gs->thread0.kernel_start_pointer =
58 (gs->thread0.grf_reg_count << 1)) >> 6;
60 gs->thread1.floating_point_mode = BRW_FLOATING_POINT_NON_IEEE_754;
61 gs->thread1.single_program_flow = 1
    [all...]
  /external/clang/test/CodeGen/
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)
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)
  /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/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...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_gs.c 44 struct svga_geometry_shader *gs = CALLOC_STRUCT(svga_geometry_shader); local
46 if (!gs)
51 gs->base.tokens = tgsi_dup_tokens(templ->tokens);
55 tgsi_scan_shader(gs->base.tokens, &gs->base.info);
57 gs->draw_shader = draw_create_geometry_shader(svga->swtnl.draw, templ);
59 gs->base.id = svga->debug.shader_id++;
61 gs->generic_outputs = svga_get_generic_outputs_mask(&gs->base.info);
65 gs->base.stream_output = svga_create_stream_output(svga, &gs->base
77 struct svga_geometry_shader *gs = (struct svga_geometry_shader *)shader; local
89 struct svga_geometry_shader *gs = (struct svga_geometry_shader *)shader; local
    [all...]
svga_state_tgsi_transform.c 40 * Bind a new GS. This updates the derived current gs state, not the
41 * user-specified GS state.
45 struct svga_geometry_shader *gs)
47 svga->curr.gs = gs;
71 struct svga_geometry_shader *gs = NULL; local
83 key.gs.writes_psize = 1;
84 key.gs.sprite_coord_enable = svga->curr.rast->templ.sprite_coord_enable;
86 key.gs.sprite_origin_upper_left
241 struct svga_geometry_shader *gs = svga->curr.user_gs; \/* current gs *\/ local
    [all...]
  /external/libcxx/test/std/numerics/numarray/template.gslice.array/
default.fail.cpp 21 std::gslice_array<int> gs; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.gslice.array/
default.fail.cpp 21 std::gslice_array<int> gs; local
  /toolchain/binutils/binutils-2.27/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/valgrind/memcheck/tests/
inits.c 7 static int gs; variable
14 if (gs == 0xCAFEBABE) printf("1!\n");
  /external/valgrind/none/tests/amd64/
cet_nops.stdout.exp 1 start doing absolutely nothing without fs and gs prefixes ..
  /external/valgrind/none/tests/x86/
cet_nops.stdout.exp 1 start doing absolutely nothing without fs and gs prefixes ..
  /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);
61 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local
64 setupGlobalSync(mRS, gs, v);
65 gs.forEach_write_global(AIn);
66 gs.invoke_test_read_global(v);
73 gs.destroy();
82 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local
85 setupGlobalSync(mRS, gs, v);
86 gs.forEach_write_static_global(AIn)
103 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local
124 ScriptC_global_sync gs = new ScriptC_global_sync(mRS); local
    [all...]
VoidPtr.java 30 protected void setupVoidPtr(RenderScript mRS, ScriptC_void_ptr gs) {
38 gs.set_aFailed(AFailed);
63 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local
64 setupVoidPtr(mRS, gs);
71 gs.forEach_set_output_void_int(AOutput);
72 gs.forEach_check_output_int(AOutput);
79 gs.destroy();
91 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local
92 setupVoidPtr(mRS, gs);
99 gs.forEach_set_output_void_char(AOutput)
120 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local
151 ScriptC_void_ptr gs = new ScriptC_void_ptr(mRS); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
gimple.h 57 #define GIMPLE_CHECK(GS, CODE) \
59 const_gimple __gs = (GS); \
66 #define GIMPLE_CHECK(GS, CODE) (void)0
    [all...]
  /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);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
ReadGs.c 25 mov ax, gs

Completed in 464 milliseconds

1 2 3 4 5 6 7 8 91011>>