Home
last modified time | relevance | path

Searched refs:setup (Results 1 – 25 of 1476) sorted by relevance

12345678910>>...60

/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup.c62 static boolean try_update_scene_state( struct lp_setup_context *setup );
66 lp_setup_get_empty_scene(struct lp_setup_context *setup) in lp_setup_get_empty_scene() argument
68 assert(setup->scene == NULL); in lp_setup_get_empty_scene()
70 setup->scene_idx++; in lp_setup_get_empty_scene()
71 setup->scene_idx %= Elements(setup->scenes); in lp_setup_get_empty_scene()
73 setup->scene = setup->scenes[setup->scene_idx]; in lp_setup_get_empty_scene()
75 if (setup->scene->fence) { in lp_setup_get_empty_scene()
78 __FUNCTION__, setup->scene->fence->id); in lp_setup_get_empty_scene()
80 lp_fence_wait(setup->scene->fence); in lp_setup_get_empty_scene()
83 lp_scene_begin_binning(setup->scene, &setup->fb); in lp_setup_get_empty_scene()
[all …]
Dlp_setup_vbuf.c62 struct lp_setup_context *setup = lp_setup_context(vbr); in lp_setup_get_vertex_info() local
67 lp_setup_update_state(setup, FALSE); in lp_setup_get_vertex_info()
69 return setup->vertex_info; in lp_setup_get_vertex_info()
77 struct lp_setup_context *setup = lp_setup_context(vbr); in lp_setup_allocate_vertices() local
80 if (setup->vertex_buffer_size < size) { in lp_setup_allocate_vertices()
81 align_free(setup->vertex_buffer); in lp_setup_allocate_vertices()
82 setup->vertex_buffer = align_malloc(size, 16); in lp_setup_allocate_vertices()
83 setup->vertex_buffer_size = size; in lp_setup_allocate_vertices()
86 setup->vertex_size = vertex_size; in lp_setup_allocate_vertices()
87 setup->nr_vertices = nr_vertices; in lp_setup_allocate_vertices()
[all …]
Dlp_setup.h50 void lp_setup_reset( struct lp_setup_context *setup );
57 lp_setup_clear(struct lp_setup_context *setup,
66 lp_setup_flush( struct lp_setup_context *setup,
72 lp_setup_bind_framebuffer( struct lp_setup_context *setup,
76 lp_setup_set_triangle_state( struct lp_setup_context *setup,
83 lp_setup_set_line_state( struct lp_setup_context *setup,
87 lp_setup_set_point_state( struct lp_setup_context *setup,
94 lp_setup_set_setup_variant( struct lp_setup_context *setup,
98 lp_setup_set_fs_variant( struct lp_setup_context *setup,
102 lp_setup_set_fs_constants(struct lp_setup_context *setup,
[all …]
Dlp_setup_point.c60 constant_coef(struct lp_setup_context *setup, in constant_coef() argument
73 point_persp_coeff(struct lp_setup_context *setup, in point_persp_coeff() argument
104 texcoord_coef(struct lp_setup_context *setup, in texcoord_coef() argument
118 float x0 = info->v0[0][0] - setup->pixel_offset; in texcoord_coef()
119 float y0 = info->v0[0][1] - setup->pixel_offset; in texcoord_coef()
134 float x0 = info->v0[0][0] - setup->pixel_offset; in texcoord_coef()
135 float y0 = info->v0[0][1] - setup->pixel_offset; in texcoord_coef()
171 setup_point_fragcoord_coef(struct lp_setup_context *setup, in setup_point_fragcoord_coef() argument
192 constant_coef(setup, info, slot, info->v0[0][2], 2); in setup_point_fragcoord_coef()
197 constant_coef(setup, info, slot, info->v0[0][3], 3); in setup_point_fragcoord_coef()
[all …]
Dlp_setup_tri.c111 lp_setup_print_vertex(struct lp_setup_context *setup, in lp_setup_print_vertex() argument
115 const struct lp_setup_variant_key *key = &setup->setup.variant->key; in lp_setup_print_vertex()
146 lp_setup_print_triangle(struct lp_setup_context *setup, in lp_setup_print_triangle() argument
169 lp_setup_print_vertex(setup, "v0", v0); in lp_setup_print_triangle()
170 lp_setup_print_vertex(setup, "v1", v1); in lp_setup_print_triangle()
171 lp_setup_print_vertex(setup, "v2", v2); in lp_setup_print_triangle()
197 lp_setup_whole_tile(struct lp_setup_context *setup, in lp_setup_whole_tile() argument
201 struct lp_scene *scene = setup->scene; in lp_setup_whole_tile()
216 setup->fs.stored, in lp_setup_whole_tile()
222 setup->fs.stored, in lp_setup_whole_tile()
[all …]
Dlp_setup_line.c60 static void constant_coef( struct lp_setup_context *setup, in constant_coef() argument
76 static void linear_coef( struct lp_setup_context *setup, in linear_coef() argument
93 (dadx * (info->v1[0][0] - setup->pixel_offset) + in linear_coef()
94 dady * (info->v1[0][1] - setup->pixel_offset))); in linear_coef()
106 static void perspective_coef( struct lp_setup_context *setup, in perspective_coef() argument
125 (dadx * (info->v1[0][0] - setup->pixel_offset) + in perspective_coef()
126 dady * (info->v1[0][1] - setup->pixel_offset))); in perspective_coef()
130 setup_fragcoord_coef( struct lp_setup_context *setup, in setup_fragcoord_coef() argument
151 linear_coef(setup, info, slot, 0, 2); in setup_fragcoord_coef()
156 linear_coef(setup, info, slot, 0, 3); in setup_fragcoord_coef()
[all …]
Dlp_setup_context.h144 } setup; member
161 void lp_setup_choose_triangle( struct lp_setup_context *setup );
162 void lp_setup_choose_line( struct lp_setup_context *setup );
163 void lp_setup_choose_point( struct lp_setup_context *setup );
165 void lp_setup_init_vbuf(struct lp_setup_context *setup);
167 boolean lp_setup_update_state( struct lp_setup_context *setup,
170 void lp_setup_destroy( struct lp_setup_context *setup );
172 boolean lp_setup_flush_and_restart(struct lp_setup_context *setup);
175 lp_setup_print_triangle(struct lp_setup_context *setup,
181 lp_setup_print_vertex(struct lp_setup_context *setup,
[all …]
Dlp_state_derived.c120 lp_setup_set_vertex_info(llvmpipe->setup, vinfo); in compute_vertex_info()
162 lp_setup_set_blend_color(llvmpipe->setup, in llvmpipe_update_derived()
166 lp_setup_set_scissor(llvmpipe->setup, &llvmpipe->scissor); in llvmpipe_update_derived()
169 lp_setup_set_alpha_ref_value(llvmpipe->setup, in llvmpipe_update_derived()
171 lp_setup_set_stencil_ref_values(llvmpipe->setup, in llvmpipe_update_derived()
176 lp_setup_set_fs_constants(llvmpipe->setup, in llvmpipe_update_derived()
180 lp_setup_set_fragment_sampler_views(llvmpipe->setup, in llvmpipe_update_derived()
185 lp_setup_set_fragment_sampler_state(llvmpipe->setup, in llvmpipe_update_derived()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c128 quad_clip(struct setup_context *setup, struct quad_header *quad) in quad_clip() argument
130 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; in quad_clip()
159 clip_emit_quad(struct setup_context *setup, struct quad_header *quad) in clip_emit_quad() argument
161 quad_clip( setup, quad ); in clip_emit_quad()
164 struct softpipe_context *sp = setup->softpipe; in clip_emit_quad()
167 setup->numFragsEmitted += util_bitcount(quad->inout.mask); in clip_emit_quad()
198 flush_spans(struct setup_context *setup) in flush_spans() argument
201 const int xleft0 = setup->span.left[0]; in flush_spans()
202 const int xleft1 = setup->span.left[1]; in flush_spans()
203 const int xright0 = setup->span.right[0]; in flush_spans()
[all …]
Dsp_prim_vbuf.c61 struct setup_context *setup; member
139 struct setup_context *setup_ctx = cvbr->setup; in sp_vbuf_set_primitive()
166 struct setup_context *setup = cvbr->setup; in sp_vbuf_draw_elements() local
173 sp_setup_point( setup, in sp_vbuf_draw_elements()
180 sp_setup_line( setup, in sp_vbuf_draw_elements()
188 sp_setup_line( setup, in sp_vbuf_draw_elements()
196 sp_setup_line( setup, in sp_vbuf_draw_elements()
201 sp_setup_line( setup, in sp_vbuf_draw_elements()
209 sp_setup_tri( setup, in sp_vbuf_draw_elements()
220 sp_setup_tri( setup, in sp_vbuf_draw_elements()
[all …]
Dsp_setup.h34 sp_setup_tri( struct setup_context *setup,
40 sp_setup_line(struct setup_context *setup,
45 sp_setup_point( struct setup_context *setup,
50 void sp_setup_prepare( struct setup_context *setup );
51 void sp_setup_destroy_context( struct setup_context *setup );
/external/libvorbis/lib/
Dvorbisenc.c621 ve_setup_data_template *setup=(ve_setup_data_template *)hi->setup; in setting_to_approx_bitrate() local
625 const double *r=setup->rate_mapping; in setting_to_approx_bitrate()
684 ve_setup_data_template *setup=NULL; in vorbis_encode_setup_init() local
701 setup=(ve_setup_data_template *)hi->setup; in vorbis_encode_setup_init()
702 if(setup==NULL)return(OV_EINVAL); in vorbis_encode_setup_init()
710 setup->blocksize_short, in vorbis_encode_setup_init()
711 setup->blocksize_long); in vorbis_encode_setup_init()
716 for(i=0;i<setup->floor_mappings;i++) in vorbis_encode_setup_init()
718 setup->floor_books, in vorbis_encode_setup_init()
719 setup->floor_params, in vorbis_encode_setup_init()
[all …]
/external/autotest/client/site_tests/security_Minijail0/
Dsecurity_Minijail0.py24 setup = ''
28 setup = m.group(1)
29 return setup
52 setup = self.get_test_option(file(path), 'setup')
58 if setup:
59 if '%T' in setup:
61 setup = setup.replace('%T', td)
62 if '%S' in setup:
63 setup = setup.replace('%S', self.srcdir)
64 utils.system(setup)
[all …]
/external/libchrome/testing/
Dmultiprocess_func_list.cc16 ProcessFunctions() : main(NULL), setup(NULL) {} in ProcessFunctions()
17 ProcessFunctions(TestMainFunctionPtr main, SetupFunctionPtr setup) in ProcessFunctions()
19 setup(setup) { in ProcessFunctions()
22 SetupFunctionPtr setup; member
48 if (process_functions.setup) in InvokeChildProcessTest()
49 (*process_functions.setup)(); in InvokeChildProcessTest()
/external/aac/libFDK/src/
DFDK_hybrid.cpp214 HANDLE_FDK_HYBRID_SETUP setup = NULL; in FDKhybridAnalysisInit() local
217 case THREE_TO_TEN: setup = (HANDLE_FDK_HYBRID_SETUP)&setup_3_10; break; in FDKhybridAnalysisInit()
218 case THREE_TO_TWELVE: setup = (HANDLE_FDK_HYBRID_SETUP)&setup_3_12; break; in FDKhybridAnalysisInit()
219 case THREE_TO_SIXTEEN: setup = (HANDLE_FDK_HYBRID_SETUP)&setup_3_16; break; in FDKhybridAnalysisInit()
224 hAnalysisHybFilter->pSetup = setup; in FDKhybridAnalysisInit()
225 hAnalysisHybFilter->bufferLFpos = setup->protoLen-1; in FDKhybridAnalysisInit()
232 if ( ((2*setup->nrQmfBands*setup->protoLen*sizeof(FIXP_DBL)) > hAnalysisHybFilter->LFmemorySize) in FDKhybridAnalysisInit()
233 …|| ((setup->filterDelay*((qmfBands-setup->nrQmfBands)+(cplxBands-setup->nrQmfBands))*sizeof(FIXP_D… in FDKhybridAnalysisInit()
241 for (k=0; k<setup->nrQmfBands; k++) { in FDKhybridAnalysisInit()
242 hAnalysisHybFilter->bufferLFReal[k] = pMem; pMem += setup->protoLen; in FDKhybridAnalysisInit()
[all …]
/external/mesa3d/src/gallium/drivers/i915/
Di915_prim_emit.c213 struct setup_stage *setup = CALLOC_STRUCT(setup_stage); in i915_draw_render_stage() local
215 setup->i915 = i915; in i915_draw_render_stage()
216 setup->stage.draw = i915->draw; in i915_draw_render_stage()
217 setup->stage.point = setup_point; in i915_draw_render_stage()
218 setup->stage.line = setup_line; in i915_draw_render_stage()
219 setup->stage.tri = setup_tri; in i915_draw_render_stage()
220 setup->stage.flush = setup_flush; in i915_draw_render_stage()
221 setup->stage.reset_stipple_counter = reset_stipple_counter; in i915_draw_render_stage()
222 setup->stage.destroy = render_destroy; in i915_draw_render_stage()
224 return &setup->stage; in i915_draw_render_stage()
/external/autotest/client/tests/kvm/
Dsubtests.cfg.sample15 - setup: install
130 - boot: install setup image_copy unattended_install.cdrom
136 - reboot: install setup image_copy unattended_install.cdrom
142 - migrate: install setup image_copy unattended_install.cdrom
189 - migrate_multi_host: install setup image_copy unattended_install.cdrom
202 - boot_savevm: install setup image_copy unattended_install.cdrom
211 - autotest: install setup image_copy unattended_install.cdrom
259 - qemu_img_commit: install setup image_copy unattended_install.cdrom
263 - stop_continue: install setup image_copy unattended_install.cdrom
267 - linux_s3: install setup image_copy unattended_install.cdrom
[all …]
/external/autotest/client/bin/net/
Dnet_tc.py97 def setup(self, netif): member in tcclass
100 self._leaf_qdisc.setup(netif)
104 child.setup()
205 def setup(self, netif): member in tcfilter
230 def setup(self, netif): member in u32filter
293 def setup(self, netif): member in qdisc
324 def setup(self, netif): member in classful_qdisc
325 super(classful_qdisc, self).setup(netif)
329 child.setup(netif)
333 filter.setup(netif)
[all …]
/external/dbus/test/
Dsyntax.c191 setup (Fixture *f, in setup() function
272 g_test_add ("/syntax/path", Fixture, &paths, setup, test_syntax, teardown); in main()
274 setup, test_syntax, teardown); in main()
276 setup, test_syntax, teardown); in main()
278 setup, test_syntax, teardown); in main()
280 setup, test_syntax, teardown); in main()
282 setup, test_syntax, teardown); in main()
284 setup, test_syntax, teardown); in main()
286 setup, test_syntax, teardown); in main()
/external/vulkan-validation-layers/loader/
Dvk-loader-generate.py170 setup = []
173 return setup
184 setup.append("VkSwapchainImageInfoKHR *info = %s;" % pdata)
185 setup.append("size_t count = *%s / sizeof(*info), i;" % psize)
186 setup.append("for (i = 0; i < count; i++) {")
187 setup.append(" %s(info[i].image, disp);" % method)
188 setup.append(" %s(info[i].memory, disp);" % method)
189 setup.append("}")
193 setup.append("%s(*%s, disp);" % (method, param.name))
195 if setup:
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/
DMakefile21 python setup.py clean --all
38 python setup.py sdist
45 python setup.py bdist_egg
59 - python setup.py sdist upload
60 - python setup.py bdist_egg upload
/external/chromium-trace/catapult/third_party/python_gflags/
DMakefile21 python setup.py clean --all
38 python setup.py sdist
45 python setup.py bdist_egg
59 - python setup.py sdist upload
60 - python setup.py bdist_egg upload
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DBufferedTokenStream.java84 if ( p == -1 ) setup(); in mark()
118 if ( p == -1 ) setup(); in consume()
151 if ( p == -1 ) setup(); in get()
170 if ( p == -1 ) setup(); in LT()
184 protected void setup() { sync(0); p = 0; } in setup() method in BufferedTokenStream
204 if ( p == -1 ) setup(); in getTokens()
235 if ( p == -1 ) setup(); in toString()
242 if ( p == -1 ) setup(); in toString()
262 if ( p == -1 ) setup(); in fill()
/external/antlr/antlr-3.4/runtime/Python/
Dhudson-build.sh30 (cd tmp/stringtemplate3-$ST_VERSION; python setup.py install --install-lib=$WORKSPACE)
37 (cd tmp/antlr-$ANTLR2_VERSION/lib/python; python setup.py install --install-lib=$WORKSPACE)
49 python setup.py unittest --xml-output=testout/
50 python setup.py functest --xml-output=testout/ --antlr-jar="$JAR"
68 python setup.py sdist --formats=gztar,zip
70 $PYTHON setup.py bdist_egg
/external/llvm/test/CodeGen/MIR/AArch64/
Dcfi-def-cfa.mir22 %sp = frame-setup STPXpre killed %fp, killed %lr, %sp, -2
23 %fp = frame-setup ADDXri %sp, 0, 0
25 frame-setup CFI_INSTRUCTION .cfi_def_cfa %w29, 16
26 frame-setup CFI_INSTRUCTION .cfi_offset %w30, -8
27 frame-setup CFI_INSTRUCTION .cfi_offset %w29, -16

12345678910>>...60