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

1 2 3

  /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
  /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
  /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/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/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/dist/src/gallium/auxiliary/vl/
vl_matrix_filter.c 141 struct vertex2f *offsets, v, sizes; local
205 sizes.x = (float)(matrix_width - 1) / 2.0f;
206 sizes.y = (float)(matrix_height - 1) / 2.0f;
208 for (v.x = -sizes.x, i = 0; v.x <= sizes.x; v.x += 1.0f)
209 for (v.y = -sizes.y; v.y <= sizes.y; v.y += 1.0f)
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];
vl_deint_filter.c 124 struct vertex2f *sizes, bool spatial_filter)
167 ureg_imm4f(shader, sizes->x * 0.5f, sizes->y * -0.5f, 0, 0));
169 ureg_imm4f(shader, sizes->x * -0.5f, sizes->y * 0.5f, 1.0f, 0));
201 ureg_ADD(shader, t_comp_top, ureg_src(t_tex), ureg_imm4f(shader, 0, sizes->y * -1.0f, 1.0f, 0));
208 ureg_ADD(shader, t_comp_bot, ureg_src(t_tex), ureg_imm4f(shader, 0, sizes->y * 1.0f, 0, 0));
244 struct vertex2f sizes; local
324 sizes.x = 1.0f / video_width;
325 sizes.y = 1.0f / video_height
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
vl_matrix_filter.c 141 struct vertex2f *offsets, v, sizes; local
205 sizes.x = (float)(matrix_width - 1) / 2.0f;
206 sizes.y = (float)(matrix_height - 1) / 2.0f;
208 for (v.x = -sizes.x, i = 0; v.x <= sizes.x; v.x += 1.0f)
209 for (v.y = -sizes.y; v.y <= sizes.y; v.y += 1.0f)
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];
vl_deint_filter.c 124 struct vertex2f *sizes, bool spatial_filter)
167 ureg_imm4f(shader, sizes->x * 0.5f, sizes->y * -0.5f, 0, 0));
169 ureg_imm4f(shader, sizes->x * -0.5f, sizes->y * 0.5f, 1.0f, 0));
201 ureg_ADD(shader, t_comp_top, ureg_src(t_tex), ureg_imm4f(shader, 0, sizes->y * -1.0f, 1.0f, 0));
208 ureg_ADD(shader, t_comp_bot, ureg_src(t_tex), ureg_imm4f(shader, 0, sizes->y * 1.0f, 0, 0));
244 struct vertex2f sizes; local
325 sizes.x = 1.0f / video_width;
326 sizes.y = 1.0f / video_height
    [all...]
  /xsrc/external/mit/freetype/dist/src/cache/
ftcmanag.h 104 FTC_MruListRec sizes; member in struct:FTC_ManagerRec_
  /xsrc/external/mit/libXrandr/dist/src/
Xrandrint.h 49 XRRScreenSize *sizes; member in struct:_XRRScreenConfiguration
  /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/xkbcomp/dist/
alias.c 241 XkbGeometrySizesRec sizes = { local
245 status = XkbAllocGeometry(xkb, &sizes);
  /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/
wsi_common_private.h 41 uint32_t sizes[4]; member in struct:wsi_image
  /xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/
wsi_common_private.h 40 uint32_t sizes[4]; member in struct:wsi_image
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/util/
functional.hpp 251 struct sizes { struct in namespace:clover
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/
vid_dec_common.h 103 unsigned sizes[2]; \
151 unsigned sizes[2]; member in struct:h264d_prc
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/va/
picture.c 287 unsigned sizes[3]; local
301 sizes[num_buffers++] = sizeof(start_code_h264);
308 sizes[num_buffers++] = sizeof(start_code_h265);
318 sizes[num_buffers++] = sizeof(start_code_vc1);
327 sizes[num_buffers++] = context->mpeg4.start_code_size;
332 sizes[num_buffers++] = context->mjpeg.slice_header_size;
346 sizes[num_buffers] = buf->size;
351 sizes[num_buffers++] = sizeof(eoi_jpeg);
360 num_buffers, (const void * const*)buffers, sizes);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/vdpau/
decode.c 528 vlVdpDecoderFixVC1Startcode(uint32_t *num_buffers, const void *buffers[], unsigned sizes[])
535 vl_vlc_init(&vlc, *num_buffers, buffers, sizes);
549 sizes[i] = sizes[i - 1];
553 sizes[0] = 4;
567 unsigned sizes[bitstream_buffer_count + 1]; local
647 sizes[i] = bitstream_buffers[i].bitstream_bytes;
661 vlVdpDecoderFixVC1Startcode(&bitstream_buffer_count, buffers, sizes);
681 dec->decode_bitstream(dec, vlsurf->video_buffer, &desc.base, bitstream_buffer_count, buffers, sizes);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/ir3/
ir3_gallium.c 314 uint32_t sizes[align(v->const_layout.ssbo_size.count, 4)]; local
320 sizes[off] = sb->sb[index].buffer_size;
325 0, ARRAY_SIZE(sizes), sizes, NULL);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/util/
functional.hpp 251 struct sizes { struct in namespace:clover

Completed in 26 milliseconds

1 2 3