Searched refs:level (Results 1 - 25 of 1500) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/src/freedreno/fdl/
H A Dfreedreno_layout.c46 fdl_tile_mode_desc(const struct fdl_layout *layout, int level) argument
48 if (fdl_ubwc_enabled(layout, level))
50 else if (fdl_tile_mode(layout, level) == 0) /* TILE6_LINEAR and friends */
59 for (uint32_t level = 0; local in function:fdl_dump_layout
60 level < ARRAY_SIZE(layout->slices) && layout->slices[level].size0;
61 level++) {
62 struct fdl_slice *slice = &layout->slices[level];
63 struct fdl_slice *ubwc_slice = &layout->ubwc_slices[level];
69 util_format_name(layout->format), u_minify(layout->width0, level),
[all...]
H A Dfd5_layout.c52 /* in layer_first layout, the level (slice) contains just one
63 for (uint32_t level = 0; level < mip_levels; level++) { local in function:fdl5_layout
64 struct fdl_slice *slice = &layout->slices[level];
65 uint32_t tile_mode = fdl_tile_mode(layout, level);
66 uint32_t pitch = fdl_pitch(layout, level);
68 util_format_get_nblocksy(format, u_minify(height0, level));
75 * last level. The simple solution is to over-allocate a
76 * bit the last level t
[all...]
H A Dfreedreno_layout.h49 * Each mipmap-level contains all of it's layers (ie. all cubmap
51 * programmed with the start address of each mipmap level, and hw
52 * derives the layer offset within the level.
93 * surface (layer, level) within. Or rather all the information needed
107 /* Note that for tiled textures, beyond a certain mipmap level (ie.
143 fdl_pitch(const struct fdl_layout *layout, unsigned level) argument
145 return align(u_minify(layout->pitch0, level), 1 << layout->pitchalign);
153 fdl_ubwc_pitch(const struct fdl_layout *layout, unsigned level) argument
157 return align(u_minify(layout->ubwc_width0, level), RGB_TILE_WIDTH_ALIGNMENT);
161 fdl_layer_stride(const struct fdl_layout *layout, unsigned level) argument
171 fdl2_pitch(const struct fdl_layout * layout,unsigned level) argument
180 fdl2_pitch_pixels(const struct fdl_layout * layout,unsigned level) argument
186 fdl_surface_offset(const struct fdl_layout * layout,unsigned level,unsigned layer) argument
194 fdl_ubwc_offset(const struct fdl_layout * layout,unsigned level,unsigned layer) argument
204 fdl_level_linear(const struct fdl_layout * layout,int level) argument
217 fdl_tile_mode(const struct fdl_layout * layout,int level) argument
226 fdl_ubwc_enabled(const struct fdl_layout * layout,int level) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_resource.c35 uint32_t level, size = 0; local in function:fd2_setup_slices
40 for (level = 0; level <= prsc->last_level; level++) {
41 struct fdl_slice *slice = fd_resource_slice(rsc, level);
42 uint32_t pitch = fdl2_pitch(&rsc->layout, level);
43 uint32_t nblocksy = align(u_minify(height0, level), 32);
46 if (level)
52 size += slice->size0 * u_minify(prsc->depth0, level) * prsc->array_size;
/xsrc/external/mit/MesaLib.old/dist/src/egl/main/
H A Degllog.c66 EGLint level; member in struct:__anone8c64d6f0108
70 .level = FALLBACK_LOG_LEVEL,
85 _eglDefaultLogger(EGLint level, const char *msg) argument
94 LOG_PRI(egl2alog[level], LOG_TAG, "%s", msg);
96 fprintf(stderr, "libEGL %s: %s\n", level_strings[level], msg);
108 EGLint i, level = -1; local in function:_eglInitLogger
117 level = i;
123 logging.level = (level >= 0) ? level
142 _eglLog(EGLint level,const char * fmtStr,...) argument
[all...]
H A Degllog.h48 _eglLog(EGLint level, const char *fmtStr, ...);
/xsrc/external/mit/MesaLib/dist/src/egl/main/
H A Degllog.c66 EGLint level; member in struct:__anon8bc710220108
70 .level = FALLBACK_LOG_LEVEL,
85 _eglDefaultLogger(EGLint level, const char *msg) argument
94 LOG_PRI(egl2alog[level], LOG_TAG, "%s", msg);
96 fprintf(stderr, "libEGL %s: %s\n", level_strings[level], msg);
108 EGLint i, level = -1; local in function:_eglInitLogger
117 level = i;
123 logging.level = (level >= 0) ? level
142 _eglLog(EGLint level,const char * fmtStr,...) argument
[all...]
H A Degllog.h48 _eglLog(EGLint level, const char *fmtStr, ...);
/xsrc/external/mit/MesaLib/dist/src/glx/apple/
H A Dapple_glx_log.c48 void _apple_glx_log(int level, const char *file, const char *function, argument
52 _apple_glx_vlog(level, file, function, line, fmt, v);
57 _asl_level_string(int level) argument
59 if (level == ASL_LEVEL_EMERG) return ASL_STRING_EMERG;
60 if (level == ASL_LEVEL_ALERT) return ASL_STRING_ALERT;
61 if (level == ASL_LEVEL_CRIT) return ASL_STRING_CRIT;
62 if (level == ASL_LEVEL_ERR) return ASL_STRING_ERR;
63 if (level == ASL_LEVEL_WARNING) return ASL_STRING_WARNING;
64 if (level == ASL_LEVEL_NOTICE) return ASL_STRING_NOTICE;
65 if (level
70 _apple_glx_vlog(int level,const char * file,const char * function,int line,const char * fmt,va_list args) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_resource_texture.h96 /** array indexed by cube face or 3D/array slice, one bit per mipmap level */
99 /** array indexed by cube face or 3D/array slice, one bit per mipmap level.
100 * Set if the level is marked as dirty.
177 svga_age_texture_view(struct svga_texture *tex, unsigned level) argument
179 assert(level < ARRAY_SIZE(tex->view_age));
180 tex->view_age[level] = ++(tex->age);
184 /** For debugging, check that face and level are legal */
187 unsigned face, unsigned level)
199 assert(level < 8 * sizeof(tex->rendered_to[0]));
204 * Mark the given texture face/level a
186 check_face_level(const struct svga_texture * tex,unsigned face,unsigned level) argument
207 svga_define_texture_level(struct svga_texture * tex,unsigned face,unsigned level) argument
217 svga_is_texture_level_defined(const struct svga_texture * tex,unsigned face,unsigned level) argument
226 svga_set_texture_rendered_to(struct svga_texture * tex,unsigned face,unsigned level) argument
236 svga_clear_texture_rendered_to(struct svga_texture * tex,unsigned face,unsigned level) argument
245 svga_was_texture_rendered_to(const struct svga_texture * tex,unsigned face,unsigned level) argument
253 svga_set_texture_dirty(struct svga_texture * tex,unsigned face,unsigned level) argument
270 svga_is_texture_dirty(const struct svga_texture * tex,unsigned face,unsigned level) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_resource_texture.h100 /** array indexed by cube face or 3D/array slice, one bit per mipmap level */
103 /** array indexed by cube face or 3D/array slice, one bit per mipmap level.
104 * Set if the level is marked as dirty.
181 svga_age_texture_view(struct svga_texture *tex, unsigned level) argument
183 assert(level < ARRAY_SIZE(tex->view_age));
184 tex->view_age[level] = ++(tex->age);
188 /** For debugging, check that face and level are legal */
191 unsigned face, unsigned level)
203 assert(level < 8 * sizeof(tex->rendered_to[0]));
208 * Mark the given texture face/level a
190 check_face_level(const struct svga_texture * tex,unsigned face,unsigned level) argument
211 svga_define_texture_level(struct svga_texture * tex,unsigned face,unsigned level) argument
221 svga_is_texture_level_defined(const struct svga_texture * tex,unsigned face,unsigned level) argument
230 svga_set_texture_rendered_to(struct svga_texture * tex,unsigned face,unsigned level) argument
240 svga_clear_texture_rendered_to(struct svga_texture * tex,unsigned face,unsigned level) argument
249 svga_was_texture_rendered_to(const struct svga_texture * tex,unsigned face,unsigned level) argument
257 svga_set_texture_dirty(struct svga_texture * tex,unsigned face,unsigned level) argument
274 svga_is_texture_dirty(const struct svga_texture * tex,unsigned face,unsigned level) argument
[all...]
/xsrc/external/mit/xterm/dist/
H A D256colres.pl46 our ( $level, $code, @steps );
82 $level = ($gray * 10) + 8;
87 $level, $level, $level);
H A D88colres.pl48 our ( $level, $code, @steps );
84 $level = ($gray * 23.18181818) + 46.36363636;
85 if( $gray > 0 ) { $level += 23.18181818; }
90 int($level), int($level), int($level));
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_resource.c33 uint32_t level, size = 0; local in function:setup_slices
42 for (level = 0; level <= prsc->last_level; level++) {
43 struct fdl_slice *slice = fd_resource_slice(rsc, level);
44 uint32_t pitch = fdl_pitch(&rsc->layout, level);
45 uint32_t height = u_minify(prsc->height0, level);
62 (level == 1 ||
63 (level > 1 && fd_resource_slice(rsc, level
[all...]
/xsrc/external/mit/xorg-server.old/dist/Xext/
H A Ddpmsproc.h12 int DPMSSet(ClientPtr client, int level);
H A Ddpmsstubs.c42 int DPMSSet(ClientPtr client, int level) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_resource.c35 uint32_t level, size = 0; local in function:fd4_setup_slices
39 /* in layer_first layout, the level (slice) contains just one
57 for (level = 0; level <= prsc->last_level; level++) {
58 struct fdl_slice *slice = fd_resource_slice(rsc, level);
59 uint32_t pitch = fdl_pitch(&rsc->layout, level);
70 (level > 1 && fd_resource_slice(rsc, level - 1)->size0 <= 0xf000))
71 slice->size0 = fd_resource_slice(rsc, level
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dtexcompress_cpal.h32 _mesa_cpal_compressed_teximage2d(GLenum target, GLint level,
38 _mesa_cpal_compressed_size(int level, GLenum internalFormat,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Ddisasm.h39 int disasm_a2xx(uint32_t *dwords, int sizedwords, int level, gl_shader_stage type);
40 int disasm_a3xx(uint32_t *dwords, int sizedwords, int level, FILE *out, unsigned gpu_id);
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dtexcompress_cpal.h32 _mesa_cpal_compressed_teximage2d(GLenum target, GLint level,
38 _mesa_cpal_compressed_size(int level, GLenum internalFormat,
/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dapple_glx_log.c52 void _apple_glx_log(int level, const char *file, const char *function, argument
56 _apple_glx_vlog(level, file, function, line, fmt, v);
61 _asl_level_string(int level) argument
63 if (level == ASL_LEVEL_EMERG) return ASL_STRING_EMERG;
64 if (level == ASL_LEVEL_ALERT) return ASL_STRING_ALERT;
65 if (level == ASL_LEVEL_CRIT) return ASL_STRING_CRIT;
66 if (level == ASL_LEVEL_ERR) return ASL_STRING_ERR;
67 if (level == ASL_LEVEL_WARNING) return ASL_STRING_WARNING;
68 if (level == ASL_LEVEL_NOTICE) return ASL_STRING_NOTICE;
69 if (level
74 _apple_glx_vlog(int level,const char * file,const char * function,int line,const char * fmt,va_list args) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/common/
H A Dintel_log.c65 intel_log(enum intel_log_level level, const char *tag, const char *format, ...) argument
70 intel_log_v(level, tag, format, va);
75 intel_log_v(enum intel_log_level level, const char *tag, const char *format, argument
79 __android_log_vprint(level_to_android(level), tag, format, va);
82 fprintf(stderr, "%s: %s: ", tag, level_to_str(level));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_texture.h67 /** Offset to start of mipmap level, in bytes */
180 unsigned level)
183 assert(level < LP_MAX_TEXTURE_2D_LEVELS);
184 return lpr->img_stride[level];
190 unsigned level)
193 assert(level < LP_MAX_TEXTURE_2D_LEVELS);
194 return lpr->row_stride[level];
200 unsigned level,
206 unsigned level,
220 unsigned face_slice, unsigned level);
179 llvmpipe_layer_stride(struct pipe_resource * resource,unsigned level) argument
189 llvmpipe_resource_stride(struct pipe_resource * resource,unsigned level) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
H A Di915_tex_layout.c120 GLint level; local in function:i915_miptree_layout_cube
128 for (level = mt->first_level; level <= mt->last_level; level++) {
129 intel_miptree_set_level_info(mt, level,
142 for (level = mt->first_level; level <= mt->last_level; level++) {
143 intel_miptree_set_image_offset(mt, level, face, x, y);
147 face, level, m
163 GLint level; local in function:i915_miptree_layout_3d
205 GLint level; local in function:i915_miptree_layout_2d
318 GLint level; local in function:i945_miptree_layout_cube
410 GLuint level; local in function:i945_miptree_layout_3d
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
H A Di915_tex_layout.c120 GLint level; local in function:i915_miptree_layout_cube
128 for (level = mt->first_level; level <= mt->last_level; level++) {
129 intel_miptree_set_level_info(mt, level,
142 for (level = mt->first_level; level <= mt->last_level; level++) {
143 intel_miptree_set_image_offset(mt, level, face, x, y);
147 face, level, m
163 GLint level; local in function:i915_miptree_layout_3d
205 GLint level; local in function:i915_miptree_layout_2d
318 GLint level; local in function:i945_miptree_layout_cube
410 GLuint level; local in function:i945_miptree_layout_3d
[all...]

Completed in 17 milliseconds

1234567891011>>