| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_generate_mipmap.c | 98 const struct isl_extent4d *base_size = &mt->surf.logical_level0_px; local in function:brw_generate_mipmap 105 last_layer = base_size->array_len - 1; 135 minify(base_size->width, src_level), 136 minify(base_size->height, src_level), 138 minify(base_size->width, dst_level), 139 minify(base_size->height, dst_level),
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_generate_mipmap.c | 98 const struct isl_extent4d *base_size = &mt->surf.logical_level0_px; local in function:brw_generate_mipmap 105 last_layer = base_size->array_len - 1; 135 minify(base_size->width, src_level), 136 minify(base_size->height, src_level), 138 minify(base_size->width, dst_level), 139 minify(base_size->height, dst_level),
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/ |
| H A D | vmw_screen_dri.c | 226 SVGA3dSize base_size; local in function:vmw_drm_surface_from_handle 309 base_size.width = size.width; 310 base_size.height = size.height; 311 base_size.depth = size.depth; 312 vsrf->size = svga3dsurface_get_serialized_size(rep->format, base_size,
|
| H A D | vmw_screen_ioctl.c | 250 req->base.base_size.width = size.width; 251 req->base.base_size.height = size.height; 252 req->base.base_size.depth = size.depth; 289 req->base_size.width = size.width; 290 req->base_size.height = size.height; 291 req->base_size.depth = size.depth;
|
| H A D | vmwgfx_drm.h | 914 * @base_size Size of the base mip level for all faces. 930 struct drm_vmw_size base_size; member in struct:drm_vmw_gb_surface_create_req
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/svga/drm/ |
| H A D | vmw_screen_dri.c | 226 SVGA3dSize base_size; local in function:vmw_drm_surface_from_handle 309 base_size.width = size.width; 310 base_size.height = size.height; 311 base_size.depth = size.depth; 312 vsrf->size = svga3dsurface_get_serialized_size(rep->format, base_size,
|
| H A D | vmw_screen_ioctl.c | 254 req->base.base_size.width = size.width; 255 req->base.base_size.height = size.height; 256 req->base.base_size.depth = size.depth; 293 req->base_size.width = size.width; 294 req->base_size.height = size.height; 295 req->base_size.depth = size.depth;
|
| H A D | vmwgfx_drm.h | 922 * @base_size Size of the base mip level for all faces. 938 struct drm_vmw_size base_size; member in struct:drm_vmw_gb_surface_create_req
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/ |
| H A D | midgard_emit.c | 92 unsigned base_size = max_bitsize_for_alu(ins); local in function:mir_pack_mod 94 bool half = (sz == (base_size >> 1)); 239 unsigned sz, unsigned base_size, 246 midgard_reg_mode reg_mode = reg_mode_for_bitsize(base_size); 313 if (base_size == 16) { 335 unsigned base_size = max_bitsize_for_alu(ins); local in function:mir_pack_vector_srcs 345 assert((sz == base_size) || (sz == base_size / 2)); 349 sz, base_size, channeled, 238 mir_pack_swizzle(unsigned mask,unsigned * swizzle,unsigned sz,unsigned base_size,bool op_channeled,midgard_src_expand_mode * expand_mode) argument
|
| H A D | midgard_print.c | 116 unsigned base_size = max_bitsize_for_alu(ins); local in function:mir_print_embedded_constant 118 bool half = (sz == (base_size >> 1));
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| H A D | zink_program.c | 94 unsigned base_size = 0; local in function:get_shader_module_for_stage 100 base_size = zs->nir->info.num_inlinable_uniforms; 106 LIST_FOR_EACH_ENTRY_SAFE(iter, next, &prog->shader_cache[pstage][!!base_size], list) { 107 if (!shader_key_matches(iter, key, base_size)) 115 zm = malloc(sizeof(struct zink_shader_module) + key->size + base_size * sizeof(uint32_t)); 126 zm->num_uniforms = base_size; 129 if (base_size) 130 memcpy(zm->key + key->size, &key->base, base_size * sizeof(uint32_t)); 132 zm->default_variant = !base_size && list_is_empty(&prog->shader_cache[pstage][0]); 133 if (base_size) [all...] |
| /xsrc/external/mit/libXi/dist/src/ |
| H A D | XListDev.c | 69 static int pad_to_xid(int base_size) argument 73 return ((base_size + padsize - 1)/padsize) * padsize;
|
| /xsrc/external/mit/libdrm/dist/include/drm/ |
| H A D | vmwgfx_drm.h | 921 * @base_size Size of the base mip level for all faces. 937 struct drm_vmw_size base_size; member in struct:drm_vmw_gb_surface_create_req
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_sample.h | 638 LLVMValueRef base_size,
|
| H A D | lp_bld_sample.c | 1098 * Return max(1, base_size >> level); 1102 LLVMValueRef base_size, 1107 assert(lp_check_value(bld->type, base_size)); 1112 return base_size; 1119 size = LLVMBuildLShr(builder, base_size, level, "minify"); 1146 base_size = lp_build_int_to_float(&fbld, base_size); 1147 size = lp_build_mul(&fbld, base_size, lf); 1101 lp_build_minify(struct lp_build_context * bld,LLVMValueRef base_size,LLVMValueRef level,boolean lod_scalar) argument
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_sample.c | 1235 * Return max(1, base_size >> level); 1239 LLVMValueRef base_size, 1244 assert(lp_check_value(bld->type, base_size)); 1249 return base_size; 1256 size = LLVMBuildLShr(builder, base_size, level, "minify"); 1283 base_size = lp_build_int_to_float(&fbld, base_size); 1284 size = lp_build_mul(&fbld, base_size, lf); 1238 lp_build_minify(struct lp_build_context * bld,LLVMValueRef base_size,LLVMValueRef level,boolean lod_scalar) argument
|
| H A D | lp_bld_sample.h | 720 LLVMValueRef base_size,
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | lower_ubo_reference.cpp | 218 ir_constant *base_size = new(mem_ctx) local in function:__anonf648b2340110::interface_field_name 220 array_index = mul(array_index, base_size);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | lower_ubo_reference.cpp | 216 ir_constant *base_size = new(mem_ctx) local in function:__anon515fc8010110::interface_field_name 218 array_index = mul(array_index, base_size);
|
| /xsrc/external/mit/libXfont/dist/src/FreeType/ |
| H A D | ftfuncs.c | 3103 double base_size; local in function:is_matrix_unit 3106 base_size = hypot(vals->point_matrix[2], vals->point_matrix[3]); 3108 m.xx = vals->point_matrix[0] / base_size * 65536; 3109 m.xy = vals->point_matrix[2] / base_size * 65536; 3110 m.yx = vals->point_matrix[1] / base_size * 65536; 3111 m.yy = vals->point_matrix[3] / base_size * 65536;
|
| /xsrc/external/mit/libXfont2/dist/src/FreeType/ |
| H A D | ftfuncs.c | 3107 double base_size; local in function:is_matrix_unit 3110 base_size = hypot(vals->point_matrix[2], vals->point_matrix[3]); 3112 m.xx = vals->point_matrix[0] / base_size * 65536; 3113 m.xy = vals->point_matrix[2] / base_size * 65536; 3114 m.yx = vals->point_matrix[1] / base_size * 65536; 3115 m.yy = vals->point_matrix[3] / base_size * 65536;
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| H A D | v3dv_cmd_buffer.c | 125 const uint32_t base_size = sizeof(struct vk_command_buffer); local in function:cmd_buffer_init 126 uint8_t *cmd_buffer_driver_start = ((uint8_t *) cmd_buffer) + base_size; 127 memset(cmd_buffer_driver_start, 0, sizeof(*cmd_buffer) - base_size);
|