/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup.c | 62 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 …]
|
D | lp_setup_vbuf.c | 62 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 …]
|
D | lp_setup.h | 50 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 …]
|
D | lp_setup_point.c | 60 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 …]
|
D | lp_setup_tri.c | 111 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 …]
|
D | lp_setup_line.c | 60 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 …]
|
D | lp_setup_context.h | 144 } 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 …]
|
D | lp_state_derived.c | 120 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/ |
D | sp_setup.c | 128 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 …]
|
D | sp_prim_vbuf.c | 61 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 …]
|
D | sp_setup.h | 34 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/ |
D | vorbisenc.c | 621 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/aac/libFDK/src/ |
D | FDK_hybrid.cpp | 214 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/ |
D | i915_prim_emit.c | 213 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/chromium-trace/trace-viewer/tracing/third_party/python_gflags/ |
D | Makefile | 21 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/ |
D | BufferedTokenStream.java | 84 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/ |
D | hudson-build.sh | 30 (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/fonttools/Windows/ |
D | README.TXT | 5 Creating a Windows (9x/ME/NT/2000/XP) setup executable for TTX 22 python setup.py py2exe --icon Windows\ttx.ico --packages encodings 23 7. Run Inno Setup and open Windows\fonttools-win-setup.iss 43 python setup.py install -f 46 10.Run Inno Setup and open Windows\fonttools-win-setup.iss 49 The distributable TTX Windows setup executable has been saved 52 For information on running TTX on Windows, see fonttools-win-setup.txt in this folder.
|
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/ |
D | setup.py | 18 from setuptools import setup 20 from distutils.core import setup 22 setup(name='closure_linter',
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/ |
D | setup.py | 23 def setup(args=None, _manifest=0): function 38 return setup((), _manifest=1) 42 setup()
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/ |
D | setup.py | 23 def setup(args=None, _manifest=0): function 38 return setup((), _manifest=1) 42 setup()
|
/external/chromium-trace/trace-viewer/third_party/six/ |
D | setup.py | 4 from setuptools import setup 6 from distutils.core import setup 22 setup(name="six",
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/pycon2011/ |
D | pycon-py3k-sprint.txt | 15 ``setup.py test``). 28 $ python2.x setup.py test 33 $ python2.X setup.py nosetests --with-coverage 38 Doctests don't run when you run "setup.py test" anymore. To run them 42 $ $MYVENV/bin/python setup.py develop
|
/external/protobuf/python/ |
D | README.txt | 34 downloaded and installed automatically as soon as you run setup.py. 48 $ python setup.py build 49 $ python setup.py google_test 52 $ python setup.py test --cpp_implementation 67 $ python setup.py install 69 $ python setup.py install --cpp_implementation 98 You need to export this variable before running setup.py script to build and 102 It is strongly recommended to run `python setup.py test` after setting the
|
/external/expat/tests/ |
D | minicheck.c | 48 tcase_setup_function setup, in tcase_add_checked_fixture() argument 52 tc->setup = setup; in tcase_add_checked_fixture() 123 if (tc->setup != NULL) { in srunner_run_all() 129 tc->setup(); in srunner_run_all()
|