Searched defs:lvl (Results 1 - 25 of 33) sorted by relevance

12

/external/linux-tools-perf/src/tools/perf/arch/x86/util/
H A Dheader.c25 unsigned int a, b, c, d, lvl; local
30 cpuid(0, &lvl, &b, &c, &d);
36 if (lvl >= 1) {
/external/selinux/libsepol/cil/src/
H A Dcil_log.c40 void cil_default_log_handler(__attribute__((unused)) int lvl, char *msg) argument
45 void (*cil_log_handler)(int lvl, char *msg) = &cil_default_log_handler;
47 void cil_set_log_handler(void (*handler)(int lvl, char *msg)) argument
52 __attribute__ ((format (printf, 2, 0))) void cil_vlog(enum cil_log_level lvl, const char *msg, va_list args) argument
54 if (cil_log_level >= lvl) {
61 __attribute__ ((format (printf, 2, 3))) void cil_log(enum cil_log_level lvl, const char *msg, ...) argument
65 cil_vlog(lvl, msg, args);
69 void cil_set_log_level(enum cil_log_level lvl) argument
71 cil_log_level = lvl;
/external/srtp/crypto/kernel/
H A Derr.c146 err_reporting_set_level(err_reporting_level_t lvl) { argument
147 err_level = lvl;
/external/libvpx/libvpx/vp8/common/
H A Dloopfilter.h49 unsigned char lvl[4][4][4]; member in struct:__anon9459
/external/boringssl/src/crypto/x509v3/
H A Dpcy_node.c174 int policy_node_match(const X509_POLICY_LEVEL *lvl, argument
181 if ( (lvl->flags & X509_V_FLAG_INHIBIT_MAP)
/external/skia/bench/
H A DPictureNestingBench.cpp44 int sierpinsky(SkCanvas* canvas, int lvl, const SkPaint& paint) { argument
45 if (++lvl > fMaxLevel) {
50 bool recordPicture = lvl <= fMaxPictureLevel;
67 pics += this->sierpinsky(c, lvl, paint);
70 pics += this->sierpinsky(c, lvl, paint);
73 pics += this->sierpinsky(c, lvl, paint);
/external/skia/gm/
H A Dfilterindiabox.cpp27 SkFilterQuality lvl) {
29 paint.setFilterQuality(lvl);
26 draw_cell(SkCanvas* canvas, const SkBitmap& bm, const SkMatrix& mat, SkScalar dx, SkFilterQuality lvl) argument
H A Dfilterbitmap.cpp28 SkFilterQuality lvl) {
30 paint.setFilterQuality(lvl);
27 draw_cell(SkCanvas* canvas, const SkBitmap& bm, const SkMatrix& mat, SkScalar dx, SkFilterQuality lvl) argument
/external/libvpx/libvpx/vp9/common/
H A Dvp9_loopfilter.h60 uint8_t lvl[MAX_SEGMENTS][MAX_REF_FRAMES][MAX_MODE_LF_DELTAS]; member in struct:__anon9528
H A Dvp9_loopfilter.c210 int lvl; local
213 for (lvl = 0; lvl <= MAX_LOOP_FILTER; lvl++) {
215 int block_inside_limit = lvl >> ((sharpness_lvl > 0) + (sharpness_lvl > 4));
225 vpx_memset(lfi->lfthr[lvl].lim, block_inside_limit, SIMD_WIDTH);
226 vpx_memset(lfi->lfthr[lvl].mblim, (2 * (lvl + 2) + block_inside_limit),
233 return lfi_n->lvl[mbmi->segment_id][mbmi->ref_frame[0]]
240 int lvl; local
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexcompress_cpal.c116 int lvl; local
128 for (lvl = 0; lvl < num_levels; lvl++) {
129 w = width >> lvl;
132 h = height >> lvl;
172 GLint lvl, num_levels; local
192 for (lvl = 0; lvl < num_levels; lvl
[all...]
/external/openssh/openbsd-compat/
H A Dport-linux.c64 char *sename = NULL, *lvl = NULL; local
68 if (getseuserbyname(pwname, &sename, &lvl) != 0)
72 lvl = NULL;
76 r = get_default_context_with_level(sename, lvl, NULL, &sc);
100 free(lvl);
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_miptree.c40 struct nv30_miptree_level *lvl = &mt->level[level]; local
43 return (layer * mt->layer_size) + lvl->offset;
45 return lvl->offset + (layer * lvl->zslice_size);
93 struct nv30_miptree_level *lvl = &mt->level[level]; local
108 rect->pitch = lvl->pitch;
323 struct nv30_miptree_level *lvl = &mt->level[l]; local
327 lvl->offset = size;
328 lvl->pitch = mt->uniform_pitch;
329 if (!lvl
403 struct nv30_miptree_level *lvl = &mt->level[tmpl->u.tex.level]; local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_miptree.c224 struct nv50_miptree_level *lvl = &mt->level[l]; local
229 lvl->offset = mt->total_size;
231 lvl->tile_mode = nv50_tex_choose_tile_dims(nbx, nby, d);
233 tsx = NV50_TILE_SIZE_X(lvl->tile_mode); /* x is tile row pitch in bytes */
234 tsy = NV50_TILE_SIZE_Y(lvl->tile_mode);
235 tsz = NV50_TILE_SIZE_Z(lvl->tile_mode);
237 lvl->pitch = align(nbx * blocksize, tsx);
239 mt->total_size += lvl->pitch * align(nby, tsy) * align(d, tsz);
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c229 struct nv50_miptree_level *lvl = &mt->level[l]; local
234 lvl->offset = mt->total_size;
236 lvl->tile_mode = nvc0_tex_choose_tile_dims(nbx, nby, d);
238 tsx = NVC0_TILE_SIZE_X(lvl->tile_mode); /* x is tile row pitch in bytes */
239 tsy = NVC0_TILE_SIZE_Y(lvl->tile_mode);
240 tsz = NVC0_TILE_SIZE_Z(lvl->tile_mode);
242 lvl->pitch = align(nbx * blocksize, tsx);
244 mt->total_size += lvl->pitch * align(nby, tsy) * align(d, tsz);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_state_init.c598 radeon_mipmap_level *lvl; local
606 lvl = &t->mt->levels[0];
609 OUT_BATCH_RELOC(lvl->faces[j].offset, t->mt->bo, lvl->faces[j].offset,
H A Dradeon_mipmap_tree.c130 radeon_mipmap_level *lvl = &mt->levels[level]; local
133 height = _mesa_next_pow_two_32(lvl->height);
135 lvl->rowstride = get_texture_image_row_stride(rmesa, mt->mesaFormat, lvl->width, mt->tilebits, mt->target);
136 lvl->size = get_texture_image_size(mt->mesaFormat, lvl->rowstride, height, lvl->depth, mt->tilebits);
138 assert(lvl->size > 0);
140 lvl->faces[face].offset = *curOffset;
141 *curOffset += lvl
303 radeon_mipmap_level *lvl; local
[all...]
H A Dradeon_texture.c160 radeon_mipmap_level *lvl; local
169 lvl = &image->mt->levels[image->base.Base.Level];
171 image->base.Map = image->mt->bo->ptr + lvl->faces[image->base.Base.Face].offset;
172 image->base.RowStride = lvl->rowstride / _mesa_get_format_bytes(image->base.Base.TexFormat);
252 radeon_mipmap_level *lvl = &image->mt->levels[texImage->Level]; local
255 base = mt->bo->ptr + lvl->faces[image->base.Base.Face].offset;
257 *stride = lvl->rowstride;
712 radeon_mipmap_level *lvl; local
723 lvl = &image->mt->levels[level];
725 rs = lvl
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_state_init.c422 radeon_mipmap_level *lvl; local
442 lvl = &t->mt->levels[0];
445 OUT_BATCH_RELOC(lvl->faces[j].offset, t->mt->bo, lvl->faces[j].offset,
458 radeon_mipmap_level *lvl; local
481 lvl = &t->mt->levels[t->minLod];
482 OUT_BATCH_RELOC(lvl->faces[5].offset, t->mt->bo, lvl->faces[5].offset,
H A Dradeon_mipmap_tree.c130 radeon_mipmap_level *lvl = &mt->levels[level]; local
133 height = _mesa_next_pow_two_32(lvl->height);
135 lvl->rowstride = get_texture_image_row_stride(rmesa, mt->mesaFormat, lvl->width, mt->tilebits, mt->target);
136 lvl->size = get_texture_image_size(mt->mesaFormat, lvl->rowstride, height, lvl->depth, mt->tilebits);
138 assert(lvl->size > 0);
140 lvl->faces[face].offset = *curOffset;
141 *curOffset += lvl
303 radeon_mipmap_level *lvl; local
[all...]
H A Dradeon_texture.c160 radeon_mipmap_level *lvl; local
169 lvl = &image->mt->levels[image->base.Base.Level];
171 image->base.Map = image->mt->bo->ptr + lvl->faces[image->base.Base.Face].offset;
172 image->base.RowStride = lvl->rowstride / _mesa_get_format_bytes(image->base.Base.TexFormat);
252 radeon_mipmap_level *lvl = &image->mt->levels[texImage->Level]; local
255 base = mt->bo->ptr + lvl->faces[image->base.Base.Face].offset;
257 *stride = lvl->rowstride;
712 radeon_mipmap_level *lvl; local
723 lvl = &image->mt->levels[level];
725 rs = lvl
[all...]
/external/libvncserver/x11vnc/
H A DmacosxCGS.c493 int lvl = 0; local
500 lvl = macwins[q].level;
507 macosx_add_mapnotify(win, lvl, 0);
511 macosx_add_destroy(win, lvl);
/external/toybox/toys/pending/
H A Dsyslogd.c104 char *fac = tk, *lvl; local
112 lvl = tk + 1;
131 if (*lvl == *tk) {
133 lvl++;
137 if (*lvl) {
138 if ((i = logger_lookup(1, lvl)) == -1) return -1;
324 int olen = len, fac, lvl; local
344 lvl = LOG_PRI(pri);
358 if (lvl >= TT.log_prio) return;
362 if (!((tf->facility[lvl]
[all...]
/external/dhcpcd/
H A Ddhcpcd.c442 log_dhcp(int lvl, const char *msg, argument
462 syslog(lvl, "%s: %s %s %s %s `%s'", iface->name, msg, a,
470 syslog(lvl, "%s: %s %s %s",
473 syslog(lvl, "%s: %s %s %s %s",
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c1386 unsigned lvl, size = 0; local
1388 for (lvl = 0; lvl <= lpr->base.last_level; lvl++) {
1389 if (lpr->linear[lvl].data)
1390 size += tex_image_size(lpr, lvl, LP_TEX_LAYOUT_LINEAR);
1392 if (lpr->tiled[lvl].data)
1393 size += tex_image_size(lpr, lvl, LP_TEX_LAYOUT_TILED);

Completed in 623 milliseconds

12