Home
last modified time | relevance | path

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

12345678910>>...170

/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c129 quad_clip(struct setup_context *setup, struct quad_header *quad) in quad_clip() argument
132 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect[viewport_index]; in quad_clip()
161 clip_emit_quad(struct setup_context *setup, struct quad_header *quad) in clip_emit_quad() argument
163 quad_clip(setup, quad); in clip_emit_quad()
166 struct softpipe_context *sp = setup->softpipe; in clip_emit_quad()
169 setup->numFragsEmitted += util_bitcount(quad->inout.mask); in clip_emit_quad()
200 flush_spans(struct setup_context *setup) in flush_spans() argument
203 const int xleft0 = setup->span.left[0]; in flush_spans()
204 const int xleft1 = setup->span.left[1]; in flush_spans()
205 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 …]
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup.c64 static boolean try_update_scene_state( struct lp_setup_context *setup );
68 lp_setup_get_empty_scene(struct lp_setup_context *setup) in lp_setup_get_empty_scene() argument
70 assert(setup->scene == NULL); in lp_setup_get_empty_scene()
72 setup->scene_idx++; in lp_setup_get_empty_scene()
73 setup->scene_idx %= ARRAY_SIZE(setup->scenes); in lp_setup_get_empty_scene()
75 setup->scene = setup->scenes[setup->scene_idx]; in lp_setup_get_empty_scene()
77 if (setup->scene->fence) { in lp_setup_get_empty_scene()
80 __FUNCTION__, setup->scene->fence->id); in lp_setup_get_empty_scene()
82 lp_fence_wait(setup->scene->fence); in lp_setup_get_empty_scene()
85 lp_scene_begin_binning(setup->scene, &setup->fb); in lp_setup_get_empty_scene()
[all …]
Dlp_setup_vbuf.c63 struct lp_setup_context *setup = lp_setup_context(vbr); in lp_setup_get_vertex_info() local
68 lp_setup_update_state(setup, FALSE); in lp_setup_get_vertex_info()
70 return setup->vertex_info; in lp_setup_get_vertex_info()
78 struct lp_setup_context *setup = lp_setup_context(vbr); in lp_setup_allocate_vertices() local
81 if (setup->vertex_buffer_size < size) { in lp_setup_allocate_vertices()
82 align_free(setup->vertex_buffer); in lp_setup_allocate_vertices()
83 setup->vertex_buffer = align_malloc(size, 16); in lp_setup_allocate_vertices()
84 setup->vertex_buffer_size = size; in lp_setup_allocate_vertices()
87 setup->vertex_size = vertex_size; in lp_setup_allocate_vertices()
88 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,
85 lp_setup_set_line_state( struct lp_setup_context *setup,
89 lp_setup_set_point_state( struct lp_setup_context *setup,
96 lp_setup_set_setup_variant( struct lp_setup_context *setup,
100 lp_setup_set_fs_variant( struct lp_setup_context *setup,
104 lp_setup_set_fs_constants(struct lp_setup_context *setup,
[all …]
Dlp_setup_point.c64 constant_coef(struct lp_setup_context *setup, in constant_coef() argument
77 point_persp_coeff(struct lp_setup_context *setup, in point_persp_coeff() argument
108 texcoord_coef(struct lp_setup_context *setup, in texcoord_coef() argument
122 float x0 = info->v0[0][0] - setup->pixel_offset; in texcoord_coef()
123 float y0 = info->v0[0][1] - setup->pixel_offset; in texcoord_coef()
138 float x0 = info->v0[0][0] - setup->pixel_offset; in texcoord_coef()
139 float y0 = info->v0[0][1] - setup->pixel_offset; in texcoord_coef()
175 setup_point_fragcoord_coef(struct lp_setup_context *setup, in setup_point_fragcoord_coef() argument
196 constant_coef(setup, info, slot, info->v0[0][2], 2); in setup_point_fragcoord_coef()
201 constant_coef(setup, info, slot, info->v0[0][3], 3); in setup_point_fragcoord_coef()
[all …]
Dlp_setup_tri.c116 lp_setup_print_vertex(struct lp_setup_context *setup, in lp_setup_print_vertex() argument
120 const struct lp_setup_variant_key *key = &setup->setup.variant->key; in lp_setup_print_vertex()
151 lp_setup_print_triangle(struct lp_setup_context *setup, in lp_setup_print_triangle() argument
174 lp_setup_print_vertex(setup, "v0", v0); in lp_setup_print_triangle()
175 lp_setup_print_vertex(setup, "v1", v1); in lp_setup_print_triangle()
176 lp_setup_print_vertex(setup, "v2", v2); in lp_setup_print_triangle()
226 lp_setup_whole_tile(struct lp_setup_context *setup, in lp_setup_whole_tile() argument
230 struct lp_scene *scene = setup->scene; in lp_setup_whole_tile()
257 setup->fs.stored, in lp_setup_whole_tile()
263 setup->fs.stored, in lp_setup_whole_tile()
[all …]
Dlp_setup_line.c63 static void constant_coef( struct lp_setup_context *setup, in constant_coef() argument
79 static void linear_coef( struct lp_setup_context *setup, in linear_coef() argument
96 (dadx * (info->v1[0][0] - setup->pixel_offset) + in linear_coef()
97 dady * (info->v1[0][1] - setup->pixel_offset))); in linear_coef()
109 static void perspective_coef( struct lp_setup_context *setup, in perspective_coef() argument
128 (dadx * (info->v1[0][0] - setup->pixel_offset) + in perspective_coef()
129 dady * (info->v1[0][1] - setup->pixel_offset))); in perspective_coef()
133 setup_fragcoord_coef( struct lp_setup_context *setup, in setup_fragcoord_coef() argument
154 linear_coef(setup, info, slot, 0, 2); in setup_fragcoord_coef()
159 linear_coef(setup, info, slot, 0, 3); in setup_fragcoord_coef()
[all …]
/external/mesa3d/src/gallium/drivers/vc4/kernel/
Dvc4_render_cl.c49 static inline void rcl_u8(struct vc4_rcl_setup *setup, u8 val) in rcl_u8() argument
51 *(u8 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u8()
52 setup->next_offset += 1; in rcl_u8()
55 static inline void rcl_u16(struct vc4_rcl_setup *setup, u16 val) in rcl_u16() argument
57 *(u16 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u16()
58 setup->next_offset += 2; in rcl_u16()
61 static inline void rcl_u32(struct vc4_rcl_setup *setup, u32 val) in rcl_u32() argument
63 *(u32 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u32()
64 setup->next_offset += 4; in rcl_u32()
73 static void vc4_store_before_load(struct vc4_rcl_setup *setup) in vc4_store_before_load() argument
[all …]
/external/python/cpython2/Lib/
Dtimeit.py94 def _template_func(setup, func): argument
97 setup()
121 def __init__(self, stmt="pass", setup="pass", timer=default_timer): argument
127 if isinstance(setup, basestring):
128 compile(setup, dummy_src_name, "exec")
129 compile(setup + '\n' + stmt, dummy_src_name, "exec")
133 if isinstance(setup, basestring):
134 setup = reindent(setup, 4)
135 src = template % {'stmt': stmt, 'setup': setup, 'init': ''}
136 elif hasattr(setup, '__call__'):
[all …]
/external/aac/libSACdec/src/
Dsac_dec.cpp181 SPATIAL_BS_FRAME *bsFrame, const SACDEC_CREATION_PARAMS *const setup) { in SpatialDecClearFrameData() argument
186 FDK_ASSERT(setup != NULL); in SpatialDecClearFrameData()
189 for (i = 0; i < setup->maxNumOutputChannels; in SpatialDecClearFrameData()
209 resQmfBands = setup->maxNumQmfBands; in SpatialDecClearFrameData()
211 for (i = 0; i < setup->bProcResidual in SpatialDecClearFrameData()
212 ? fMin(setup->maxNumResChannels, in SpatialDecClearFrameData()
213 setup->maxNumOttBoxes + setup->maxNumInputChannels) in SpatialDecClearFrameData()
244 SACDEC_CREATION_PARAMS setup; in FDK_SpatialDecOpen() local
248 setup.maxNumInputChannels = 1; in FDK_SpatialDecOpen()
249 setup.maxNumOutputChannels = 2; in FDK_SpatialDecOpen()
[all …]
/external/freetype/builds/windows/
Ddetect.mk16 .PHONY: setup
103 $(info $(empty) make setup gcc (with Mingw))
104 $(info $(empty) make setup visualc Microsoft Visual C++)
105 $(info $(empty) make setup bcc32 Borland C/C++)
106 $(info $(empty) make setup lcc Win32-LCC)
107 $(info $(empty) make setup intelc Intel C/C++)
110 setup: dump_target_list
113 setup: std_setup
123 visualc: setup
132 visualc: setup
[all …]
/external/skia/modules/pathkit/perf/
Dpath.bench.js44 function setup(ctx) { } function
54 benchmarkAndReport('path_path2dapi', setup, test, teardown).then(() => {
62 function setup(ctx) { function
76 benchmarkAndReport('path_copy', setup, test, teardown).then(() => {
83 function setup(ctx) { } function
99 benchmarkAndReport('path_from_api_calls', setup, test, teardown).then(() => {
106 function setup(ctx) { } function
122 benchmarkAndReport('path_fromCmds', setup, test, teardown).then(() => {
129 function setup(ctx) {} function
140 benchmarkAndReport('path_fromSVGString', setup, test, teardown).then(() => {
[all …]
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dldst-miflags.mir9 frame-setup STRWui $w1, $x0, 1 :: (store 4)
12 ; CHECK: frame-setup STRWui
13 ; CHECK-NOT: frame-setup
25 frame-setup STRWui $w1, $x0, 1 :: (store 4)
28 ; CHECK: frame-setup STRWui
29 ; CHECK-NOT: frame-setup
41 frame-setup STRWui $w1, $x0, 1 :: (store 4)
44 ; CHECK: frame-setup STRWui
45 ; CHECK-NOT: frame-setup
57 frame-setup STRHHui $wzr, $x0, 0 :: (store 4)
[all …]
Daarch64-vector-pcs.mir59 …; CHECK-DAG: $sp = frame-setup STPQpre killed $q11, killed $q10, $sp, -3 :: (store 16 into %stack.…
62 ; CHECK-DAG: frame-setup STRXui killed $x19, $sp, 4 :: (store 8 into %stack.[[X19:[0-9]+]])
84 …; CHECK-DAG: $sp = frame-setup STPQpre killed $q11, killed $q10, $sp, -3 :: (store 16 into %stack.…
85 …; CHECK-DAG: frame-setup STPXi killed $x20, killed $x19, $sp, 4 :: (store 8 into %stack.[[X20:[0-9…
115 …; CHECK-DAG: $sp = frame-setup STPQpre killed $q11, killed $q10, $sp, -4 :: (store 16 into %stack.…
116 ; CHECK-DAG: frame-setup STRXui killed $x21, $sp, 4 :: (store 8 into %stack.[[X21:[0-9]+]])
117 ; CHECK-DAG: frame-setup STPXi killed $x20, killed $x19, $sp, 6
170 ; CHECK: $sp = frame-setup SUBXri $sp, 368, 0
171 …; CHECK-NEXT: frame-setup STPQi killed $q23, killed $q22, $sp, 1 :: (store 16 into %stack.{{[0-9]+…
172 ; CHECK-NEXT: frame-setup STPQi killed $q21, killed $q20, $sp, 3
[all …]
Dunwind-preserved-from-mir.mir55 ; CHECK: $sp = frame-setup SUBXri $sp, 304, 0
56 …; CHECK: frame-setup STPQi killed $q23, killed $q22, $sp, 2 :: (store 16 into %stack.19), (store…
57 …; CHECK: frame-setup STPQi killed $q21, killed $q20, $sp, 4 :: (store 16 into %stack.17), (store…
58 …; CHECK: frame-setup STPQi killed $q19, killed $q18, $sp, 6 :: (store 16 into %stack.15), (store…
59 …; CHECK: frame-setup STPQi killed $q17, killed $q16, $sp, 8 :: (store 16 into %stack.13), (store…
60 …; CHECK: frame-setup STPQi killed $q15, killed $q14, $sp, 10 :: (store 16 into %stack.11), (stor…
61 …; CHECK: frame-setup STPQi killed $q13, killed $q12, $sp, 12 :: (store 16 into %stack.9), (store…
62 …; CHECK: frame-setup STPQi killed $q11, killed $q10, $sp, 14 :: (store 16 into %stack.7), (store…
63 …; CHECK: frame-setup STPQi killed $q9, killed $q8, $sp, 16 :: (store 16 into %stack.5), (store 1…
64 …; CHECK: frame-setup STPXi killed $fp, killed $lr, $sp, 36 :: (store 8 into %stack.3), (store 8 …
[all …]
Dwineh-frame1.mir5 # CHECK: early-clobber $sp = frame-setup STPXpre killed $x19, killed $x20, $sp, -14
6 # CHECK-NEXT: frame-setup SEH_SaveRegP_X 19, 20, -112
7 # CHECK-NEXT: frame-setup STPXi killed $x21, killed $x22, $sp, 2
8 # CHECK-NEXT: frame-setup SEH_SaveRegP 21, 22, 16
9 # CHECK-NEXT: frame-setup STPXi killed $x23, killed $x24, $sp, 4
10 # CHECK-NEXT: frame-setup SEH_SaveRegP 23, 24, 32
11 # CHECK-NEXT: frame-setup STPXi killed $x25, killed $x26, $sp, 6
12 # CHECK-NEXT: frame-setup SEH_SaveRegP 25, 26, 48
13 # CHECK-NEXT: frame-setup STPXi killed $x27, killed $x28, $sp, 8
14 # CHECK-NEXT: frame-setup SEH_SaveRegP 27, 28, 64
[all …]
/external/python/cpython2/Doc/distutils/
Dexamples.rst25 ``py_modules`` option in the setup script.
27 In the simplest case, you'll have two files to worry about: a setup script and
31 setup.py
35 directory.) A minimal setup script to describe this situation would be::
37 from distutils.core import setup
38 setup(name='foo',
51 setup might look like this::
54 setup.py
58 and the setup script might be ::
60 from distutils.core import setup
[all …]
/external/python/cpython3/Doc/distutils/
Dexamples.rst27 ``py_modules`` option in the setup script.
29 In the simplest case, you'll have two files to worry about: a setup script and
33 setup.py
37 directory.) A minimal setup script to describe this situation would be::
39 from distutils.core import setup
40 setup(name='foo',
53 setup might look like this::
56 setup.py
60 and the setup script might be ::
62 from distutils.core import setup
[all …]
/external/python/cpython3/Lib/
Dtimeit.py101 def __init__(self, stmt="pass", setup="pass", timer=default_timer, argument
108 if isinstance(setup, str):
110 compile(setup, dummy_src_name, "exec")
111 stmtprefix = setup + '\n'
112 setup = reindent(setup, 4)
113 elif callable(setup):
114 local_ns['_setup'] = setup
117 setup = '_setup()'
130 src = template.format(stmt=stmt, setup=setup, init=init)
230 def timeit(stmt="pass", setup="pass", timer=default_timer, argument
[all …]
/external/skqp/modules/pathkit/perf/
Dpath.bench.js61 function setup(ctx) { } function
71 benchmarkAndReport('path_path2dapi', setup, test, teardown).then(() => {
79 function setup(ctx) { function
93 benchmarkAndReport('path_copy', setup, test, teardown).then(() => {
100 function setup(ctx) { } function
116 benchmarkAndReport('path_from_api_calls', setup, test, teardown).then(() => {
123 function setup(ctx) { } function
139 benchmarkAndReport('path_fromCmds', setup, test, teardown).then(() => {
146 function setup(ctx) {} function
157 benchmarkAndReport('path_fromSVGString', setup, test, teardown).then(() => {
[all …]
/external/llvm-project/llvm/test/CodeGen/ARM/
Dfpoffset_overflow.mir17 …; CHECK: $sp = frame-setup t2STMDB_UPD $sp, 14 /* CC::al */, $noreg, killed $r4, killed $r5, kille…
18 ; CHECK: frame-setup CFI_INSTRUCTION def_cfa_offset 36
19 ; CHECK: frame-setup CFI_INSTRUCTION offset $lr, -16
20 ; CHECK: frame-setup CFI_INSTRUCTION offset $r11, -20
21 ; CHECK: frame-setup CFI_INSTRUCTION offset $r10, -24
22 ; CHECK: frame-setup CFI_INSTRUCTION offset $r9, -28
23 ; CHECK: frame-setup CFI_INSTRUCTION offset $r8, -32
24 ; CHECK: frame-setup CFI_INSTRUCTION offset $r7, -36
25 ; CHECK: frame-setup CFI_INSTRUCTION offset $r6, -40
26 ; CHECK: frame-setup CFI_INSTRUCTION offset $r5, -44
[all …]
/external/avb/examples/uefi/
Duefi_avb_boot.c85 struct SetupHeader* setup);
87 struct SetupHeader* setup) { in linux_efi_handover() argument
92 (handover_f)((UINTN)setup->code32_start + 512 + setup->handover_offset); in linux_efi_handover()
93 handover(image, ST, setup); in linux_efi_handover()
98 struct SetupHeader* setup)
101 struct SetupHeader* setup) { in linux_efi_handover() argument
104 handover = (handover_f)((UINTN)setup->code32_start + setup->handover_offset); in linux_efi_handover()
105 handover(image, ST, setup); in linux_efi_handover()
134 struct SetupHeader* setup; in uefi_avb_boot_kernel() local
276 setup = (struct SetupHeader*)(UINTN)addr; in uefi_avb_boot_kernel()
[all …]
/external/llvm-project/llvm/test/CodeGen/Thumb2/
Dmve-stacksplot.mir15 …; CHECK: $sp = frame-setup t2STMDB_UPD $sp, 14 /* CC::al */, $noreg, killed $r4, killed $r5, kille…
16 ; CHECK: frame-setup CFI_INSTRUCTION def_cfa_offset 36
17 ; CHECK: frame-setup CFI_INSTRUCTION offset $lr, -4
18 ; CHECK: frame-setup CFI_INSTRUCTION offset $r11, -8
19 ; CHECK: frame-setup CFI_INSTRUCTION offset $r10, -12
20 ; CHECK: frame-setup CFI_INSTRUCTION offset $r9, -16
21 ; CHECK: frame-setup CFI_INSTRUCTION offset $r8, -20
22 ; CHECK: frame-setup CFI_INSTRUCTION offset $r7, -24
23 ; CHECK: frame-setup CFI_INSTRUCTION offset $r6, -28
24 ; CHECK: frame-setup CFI_INSTRUCTION offset $r5, -32
[all …]
/external/protobuf/python/
Dtox.ini15 python setup.py -q build_py
16 python: python setup.py -q build
17 … cpp: python setup.py -q build --cpp_implementation --warnings_as_errors --compile_static_extension
18 python: python setup.py -q test -q
19 cpp: python setup.py -q test -q --cpp_implementation
20 python: python setup.py -q test_conformance
21 cpp: python setup.py -q test_conformance --cpp_implementation
23 # Keep this list of dependencies in sync with setup.py.

12345678910>>...170