HomeSort by: relevance | last modified time | path
    Searched refs:sizes (Results 1 - 25 of 193) sorted by relevancy

1 2 3 4 5 6 7 8

  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_ir_allocator.h 37 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
brw_fs_validate.cpp 48 alloc.sizes[inst->dst.nr]);
54 alloc.sizes[inst->src[i].nr]);
brw_vec4_live_variables.h 123 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.old/dist/src/intel/compiler/
brw_ir_allocator.h 37 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
brw_fs_validate.cpp 48 alloc.sizes[inst->dst.nr]);
54 alloc.sizes[inst->src[i].nr]);
brw_vec4_live_variables.h 97 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/mesa-demos/dist/src/perf/
swapbuffers.c 102 } sizes[] = { variable in typeref:struct:__anon6432
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/MesaLib.old/dist/src/compiler/nir/
nir_constant_expressions.py 13 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/libdrm/dist/radeon/
radeon_cs_space.c 42 static inline int radeon_cs_setup_bo(struct radeon_cs_space_check *sc, struct rad_sizes *sizes)
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
122 memset(&sizes, 0, sizeof(struct rad_sizes))
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/test/
cursor-test.c 135 int sizes[] = { 24, 32, 48, 64, 72, 128, 160, 256 }; local
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[x], sizes[y])
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/test/
cursor-test.c 135 int sizes[] = { 24, 32, 48, 64, 72, 128, 160, 256 }; local
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[x], sizes[y])
    [all...]
  /xsrc/external/mit/libepoxy/dist/test/
khronos_typedefs_nonepoxy.c 34 #define GET_SIZE(type) sizes[type ## _slot] = sizeof(type)
37 get_system_typedef_sizes(uint32_t *sizes)
63 get_system_typedef_sizes(uint32_t *sizes)
khronos_typedefs.h 47 void get_system_typedef_sizes(uint32_t *sizes);
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_constant_expressions.py 11 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/dist/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.h 54 const unsigned *sizes);
vl_vlc.h 49 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];
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.h 54 const unsigned *sizes);
vl_vlc.h 49 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];
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_binder.c 142 unsigned sizes[MESA_SHADER_STAGES] = {}; local
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/
XRes.c 362 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));
    [all...]
  /xsrc/external/mit/xditview/dist/
font.c 56 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
217 DisposeFontSizes(dw, sizes);
219 sizes = NULL;
225 new->next = sizes;
    [all...]
  /xsrc/external/mit/libXres/dist/include/X11/extensions/
XRes.h 126 XResResourceSizeValue **sizes /* out */
131 XResResourceSizeValue *sizes
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
iris_binder.c 141 unsigned sizes[MESA_SHADER_STAGES] = {}; local
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/
glxext.h 47 unsigned long sizes,
  /xsrc/external/mit/xorg-server/dist/fb/
fbcmap_mi.c 148 VisualID * defaultVisp, unsigned long sizes, int bitsPerRGB)
151 defaultVisp, sizes, bitsPerRGB, -1);

Completed in 52 milliseconds

1 2 3 4 5 6 7 8