HomeSort by relevance Sort by last modified time
    Searched refs:gs (Results 1 - 25 of 417) 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/swiftshader/third_party/llvm-7.0/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);
start_size_stride.pass.cpp 26 std::gslice gs(7, size, stride);
27 assert(gs.start() == 7);
28 std::valarray<std::size_t> r = gs.size();
33 r = gs.stride();
  /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/python/google-api-python-client/samples/prediction/
setup.sh 17 gsutil cp $FILE_NAME gs://$OBJECT_NAME
  /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...]
svga_state_gs.c 53 const struct svga_geometry_shader *gs,
57 return svga_tgsi_vgpu10_translate(svga, &gs->base, key,
67 struct svga_geometry_shader *gs,
74 variant = translate_geometry_program(svga, gs, key);
82 FREE((void *) gs->base.tokens);
83 gs->base.tokens = dummy;
84 variant = translate_geometry_program(svga, gs, key);
105 struct svga_geometry_shader *gs = svga->curr.gs; local
114 memcpy(key->generic_remap_table, gs->generic_remap_table
174 struct svga_geometry_shader *gs = svga->curr.gs; local
    [all...]
  /external/libcxx/test/std/numerics/numarray/template.gslice.array/
default.fail.cpp 21 std::gslice_array<int> gs; local
  /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...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
ReadGs.c 25 mov ax, gs
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
ReadGs.c 19 Reads the current value of GS Data Segment Register (GS).
21 Reads and returns the current value of GS. This function is only available on
24 @return The current value of GS.
35 mov ax, gs
  /external/u-boot/scripts/kconfig/
util.c 83 struct gstr gs; local
84 gs.s = xmalloc(sizeof(char) * 64);
85 gs.len = 64;
86 gs.max_width = 0;
87 strcpy(gs.s, "\0");
88 return gs;
92 void str_free(struct gstr *gs)
94 if (gs->s)
95 free(gs->s);
96 gs->s = NULL
    [all...]
  /external/harfbuzz_ng/util/
hb-shape.cc 36 gs (nullptr),
45 gs = g_string_new (nullptr);
92 g_string_set_size (gs, 0);
93 format.serialize_buffer_of_text (buffer, line_no, text, text_len, font, gs);
94 fprintf (options.fp, "%s", gs->str);
98 g_string_set_size (gs, 0);
99 format.serialize_message (line_no, "error", message, gs);
100 fprintf (options.fp, "%s", gs->str);
107 g_string_set_size (gs, 0);
109 output_format, format_flags, gs);
150 GString *gs; member in struct:output_buffer_t
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_gs_tmp.h 1 #define FUNC_VARS struct draw_geometry_shader *gs, \
13 const boolean last_vertex_last = !gs->draw->rasterizer->flatshade_first; \
20 debug_assert(!"unexpected primitive type in GS"); \
27 #define POINT(i0) gs_point(gs,i0)
28 #define LINE(flags,i0,i1) gs_line(gs,i0,i1)
29 #define TRIANGLE(flags,i0,i1,i2) gs_tri(gs,i0,i1,i2)
30 #define LINE_ADJ(flags,i0,i1,i2,i3) gs_line_adj(gs,i0,i1,i2,i3)
31 #define TRIANGLE_ADJ(flags,i0,i1,i2,i3,i4,i5) gs_tri_adj(gs,i0,i1,i2,i3,i4,i5)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_gs.c 80 llvmpipe_bind_gs_state(struct pipe_context *pipe, void *gs)
84 llvmpipe->gs = (struct lp_geometry_shader *)gs;
87 (llvmpipe->gs ? llvmpipe->gs->dgs : NULL));
94 llvmpipe_delete_gs_state(struct pipe_context *pipe, void *gs)
99 (struct lp_geometry_shader *)gs;
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_clip_state.c 47 if (brw->gs.base.prog_data) {
49 return brw_gs_prog_data(brw->gs.base.prog_data)->output_topology ==
71 if (brw->gs.base.prog_data) {
73 return brw_gs_prog_data(brw->gs.base.prog_data)->output_topology ==
  /external/strace/tests/
xet_thread_area_x86.test 9 run_strace -a22 -e trace=reboot,/[gs]et_thread_area $args > "$EXP"
  /external/strace/tests-m32/
xet_thread_area_x86.test 9 run_strace -a22 -e trace=reboot,/[gs]et_thread_area $args > "$EXP"

Completed in 1863 milliseconds

1 2 3 4 5 6 7 8 91011>>