Searched refs:sizes (Results 1 - 25 of 252) sorted by relevance

1234567891011

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_ir_allocator.h37 sizes(NULL), offsets(NULL), count(0), total_size(0), capacity(0)
44 free(sizes);
53 sizes = (unsigned *)realloc(sizes, capacity * sizeof(unsigned));
57 sizes[count] = size;
65 * Array of sizes for each allocation. The allocation unit is up to the
69 unsigned *sizes; member in class:brw::simple_allocator
H A Dbrw_fs_validate.cpp48 alloc.sizes[inst->dst.nr]);
54 alloc.sizes[inst->src[i].nr]);
H A Dbrw_vec4_live_variables.h97 assert(result < 8 * (alloc.offsets[reg.nr] + alloc.sizes[reg.nr]));
111 assert(result < 8 * (alloc.offsets[reg.nr] + alloc.sizes[reg.nr]));
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_ir_allocator.h37 sizes(NULL), offsets(NULL), count(0), total_size(0), capacity(0)
44 free(sizes);
53 sizes = (unsigned *)realloc(sizes, capacity * sizeof(unsigned));
57 sizes[count] = size;
65 * Array of sizes for each allocation. The allocation unit is up to the
69 unsigned *sizes; member in class:brw::simple_allocator
H A Dbrw_fs_validate.cpp48 alloc.sizes[inst->dst.nr]);
54 alloc.sizes[inst->src[i].nr]);
H A Dbrw_vec4_live_variables.h123 assert(result < 8 * (alloc.offsets[reg.nr] + alloc.sizes[reg.nr]));
137 assert(result < 8 * (alloc.offsets[reg.nr] + alloc.sizes[reg.nr]));
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_constant_expressions.py11 sizes = None
13 sizes = set(type_sizes(op.output_type))
17 if sizes is None:
18 sizes = set(type_sizes(input_type))
20 sizes = sizes.intersection(set(type_sizes(input_type)))
22 return sorted(list(sizes)) if sizes is not None else None
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_constant_expressions.py13 sizes = None
15 sizes = set(type_sizes(op.output_type))
19 if sizes is None:
20 sizes = set(type_sizes(input_type))
22 sizes = sizes.intersection(set(type_sizes(input_type)))
24 return sorted(list(sizes)) if sizes is not None else None
/xsrc/external/mit/mesa-demos/dist/src/perf/
H A Dswapbuffers.c102 } sizes[] = { variable in typeref:typename:const struct __anonc3feaaff0108[]
115 if (i < sizeof(sizes) / sizeof(sizes[0]) &&
116 PerfReshapeWindow( sizes[i].w, sizes[i].h ))
118 perf_printf("Reshape %dx%d\n", sizes[i].w, sizes[i].h);
119 real_WinWidth = sizes[i].w;
120 real_WinHeight = sizes[i].h;
/xsrc/external/mit/libdrm/dist/radeon/
H A Dradeon_cs_space.c42 static inline int radeon_cs_setup_bo(struct radeon_cs_space_check *sc, struct rad_sizes *sizes) argument
71 sizes->op_vram_write += bo->size;
73 sizes->op_gart_write += bo->size;
76 sizes->op_read += bo->size;
89 sizes->op_read -= bo->size;
90 sizes->op_vram_write += bo->size;
92 sizes->op_read -= bo->size;
93 sizes->op_gart_write += bo->size;
114 struct rad_sizes sizes; local in function:radeon_cs_do_space_check
122 memset(&sizes,
[all...]
/xsrc/external/mit/xf86-video-intel/dist/test/
H A Dcursor-test.c135 int sizes[] = { 24, 32, 48, 64, 72, 128, 160, 256 }; local in function:main
144 for (x = 0; x < sizeof(sizes)/sizeof(sizes[0]); x++) {
145 for (y = 0; y < sizeof(sizes)/sizeof(sizes[0]); y++) {
146 printf("Testing %dx%d (core)\n", sizes[x], sizes[y]);
147 core_cursor(dpy, sizes[x], sizes[y]);
151 printf("Testing %dx%d (render)\n", sizes[
[all...]
/xsrc/external/mit/xf86-video-intel-2014/dist/test/
H A Dcursor-test.c135 int sizes[] = { 24, 32, 48, 64, 72, 128, 160, 256 }; local in function:main
144 for (x = 0; x < sizeof(sizes)/sizeof(sizes[0]); x++) {
145 for (y = 0; y < sizeof(sizes)/sizeof(sizes[0]); y++) {
146 printf("Testing %dx%d (core)\n", sizes[x], sizes[y]);
147 core_cursor(dpy, sizes[x], sizes[y]);
151 printf("Testing %dx%d (render)\n", sizes[
[all...]
/xsrc/external/mit/libepoxy/dist/test/
H A Dkhronos_typedefs_nonepoxy.c34 #define GET_SIZE(type) sizes[type ## _slot] = sizeof(type)
37 get_system_typedef_sizes(uint32_t *sizes) argument
63 get_system_typedef_sizes(uint32_t *sizes) argument
H A Dkhronos_typedefs.h47 void get_system_typedef_sizes(uint32_t *sizes);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_bitstream.h54 const unsigned *sizes);
H A Dvl_vlc.h49 const unsigned *sizes; member in struct:vl_vlc
93 unsigned len = vlc->sizes[0];
109 ++vlc->sizes;
180 const void *const *inputs, const unsigned *sizes)
190 vlc->sizes = sizes;
194 vlc->bytes_left += sizes[i];
179 vl_vlc_init(struct vl_vlc * vlc,unsigned num_inputs,const void * const * inputs,const unsigned * sizes) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_bitstream.h54 const unsigned *sizes);
H A Dvl_vlc.h49 const unsigned *sizes; member in struct:vl_vlc
93 unsigned len = vlc->sizes[0];
109 ++vlc->sizes;
180 const void *const *inputs, const unsigned *sizes)
190 vlc->sizes = sizes;
194 vlc->bytes_left += sizes[i];
179 vl_vlc_init(struct vl_vlc * vlc,unsigned num_inputs,const void * const * inputs,const unsigned * sizes) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
H A Diris_binder.c142 unsigned sizes[MESA_SHADER_STAGES] = {}; local in function:iris_binder_reserve_3d
150 /* Get the binding table sizes for each stage */
156 sizes[stage] = align(shaders[stage]->bt.size_bytes, BTP_ALIGNMENT);
164 total_size += sizes[stage];
187 binder->bt_offset[stage] = sizes[stage] > 0 ? offset : 0;
188 iris_record_state_size(ice->state.sizes,
189 binder->bo->address + offset, sizes[stage]);
190 offset += sizes[stage];
/xsrc/external/mit/libXres/dist/src/
H A DXRes.c362 long num_sizes, XResResourceSizeValue *sizes)
367 ReadResourceSizeSpec(dpy, &sizes[c].size);
369 sizes[c].num_cross_references = num;
370 sizes[c].cross_references =
371 num ? calloc(num, sizeof(*sizes[c].cross_references)) : NULL;
373 ReadResourceSizeSpec(dpy, &sizes[c].cross_references[d]);
386 XResResourceSizeValue **sizes /* out */
411 *sizes = NULL;
417 *sizes = calloc(rep.numSizes, sizeof(**sizes));
361 ReadResourceSizeValues(Display * dpy,long num_sizes,XResResourceSizeValue * sizes) argument
380 XResQueryResourceBytes(Display * dpy,XID client,long num_specs,XResResourceIdSpec * resource_specs,long * num_sizes,XResResourceSizeValue ** sizes) argument
437 XResResourceSizeValuesDestroy(long num_sizes,XResResourceSizeValue * sizes) argument
[all...]
/xsrc/external/mit/xditview/dist/
H A Dfont.c56 for (best = f->sizes; best; best = best->next) {
61 best->next = f->sizes;
87 f->sizes = best;
92 for (DviFontSizeList * fs = f->sizes; fs; fs = fs->next) {
172 DisposeFontSizes(dw, f->sizes);
173 f->sizes = NULL;
197 DviFontSizeList *sizes = NULL; local in function:InstallFontSizes
217 DisposeFontSizes(dw, sizes);
219 sizes = NULL;
225 new->next = sizes;
[all...]
/xsrc/external/mit/libXres/dist/include/X11/extensions/
H A DXRes.h126 XResResourceSizeValue **sizes /* out */
131 XResResourceSizeValue *sizes
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
H A Diris_binder.c141 unsigned sizes[MESA_SHADER_STAGES] = {}; local in function:iris_binder_reserve_3d
148 /* Get the binding table sizes for each stage */
157 sizes[stage] = align(prog_data->binding_table.size_bytes, BTP_ALIGNMENT);
165 total_size += sizes[stage];
188 binder->bt_offset[stage] = sizes[stage] > 0 ? offset : 0;
189 offset += sizes[stage];
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
H A Dglxext.h47 unsigned long sizes,
/xsrc/external/mit/xorg-server.old/dist/fb/
H A Dfbcmap_mi.c154 unsigned long sizes,
158 defaultVisp, sizes, bitsPerRGB, -1);
148 fbInitVisuals(VisualPtr * visualp,DepthPtr * depthp,int * nvisualp,int * ndepthp,int * rootDepthp,VisualID * defaultVisp,unsigned long sizes,int bitsPerRGB) argument

Completed in 17 milliseconds

1234567891011