/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
loopfilter.c | 103 /* init LUT for lvl and hev thr picking */ 155 vpx_memset(lfi->lvl[seg][0], lvl_seg, 4 * 4 ); 172 lfi->lvl[seg][ref][mode] = lvl_mode; 177 lfi->lvl[seg][ref][mode] = lvl_mode; 192 lfi->lvl[seg][ref][mode] = lvl_mode; 220 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 277 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 352 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 408 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 494 filter_level = lfi_n->lvl[seg][ref_frame][mode_index] [all...] |
loopfilter.h | 49 unsigned char lvl[4][4][4]; member in struct:__anon30603
|
/external/dhcpcd-6.8.2/ |
common.h | 168 #define logger_mask(ctx, lvl) setlogmask((lvl)) 173 #define logger_mask(ctx, lvl) setlogmask((lvl))
|
dhcpcd-run-hooks.in | 184 local lvl="$1" 186 if [ "$lvl" = debug ]; then 189 [ -n "$lvl" ] && shift 191 case "$lvl" in 196 logger -i -p daemon."$lvl" -t dhcpcd-run-hooks "$interface: $*"
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
SimpleLog.java | 214 String lvl = getStringProperty(systemPrefix + "log." + logName); local 216 while(null == lvl && i > -1) { 218 lvl = getStringProperty(systemPrefix + "log." + name); 222 if(null == lvl) { 223 lvl = getStringProperty(systemPrefix + "defaultlog"); 226 if("all".equalsIgnoreCase(lvl)) { 228 } else if("trace".equalsIgnoreCase(lvl)) { 230 } else if("debug".equalsIgnoreCase(lvl)) { 232 } else if("info".equalsIgnoreCase(lvl)) { 234 } else if("warn".equalsIgnoreCase(lvl)) { [all...] |
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/ |
SimpleLog.java | 209 String lvl = getStringProperty(systemPrefix + "log." + logName); local 211 while (null == lvl && i > -1) { 213 lvl = getStringProperty(systemPrefix + "log." + name); 217 if (null == lvl) { 218 lvl = getStringProperty(systemPrefix + "defaultlog"); 221 if ("all".equalsIgnoreCase(lvl)) { 223 } else if ("trace".equalsIgnoreCase(lvl)) { 225 } else if ("debug".equalsIgnoreCase(lvl)) { 227 } else if ("info".equalsIgnoreCase(lvl)) { 229 } else if ("warn".equalsIgnoreCase(lvl)) { [all...] |
/device/moto/shamu/camera/QCamera2/HAL/ |
QCameraThermalAdapter.cpp | 156 qcamera_thermal_level_enum_t lvl = (qcamera_thermal_level_enum_t) level; local 158 rc = instance.mCallback->thermalEvtHandle(lvl, userdata, data);
|
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_miptree.c | 224 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/srtp/crypto/kernel/ |
err.c | 146 err_reporting_set_level(err_reporting_level_t lvl) { 147 err_level = lvl;
|
/system/core/mkbootimg/ |
bootimg.h | 51 * lvl = ((Y - 2000) & 127) << 4 | M (7 bits for Y, 4 bits for M) 52 * os_version = ver << 11 | lvl */
|
/external/libnl/include/ |
netlink-local.h | 73 #define NL_DBG(LVL,FMT,ARG...) \ 75 if (LVL <= nl_debug) \ 76 fprintf(stderr, "DBG<" #LVL ">: " FMT, ##ARG); \
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_texture.c | 160 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->rowstride / texel_size [all...] |
/system/vold/ |
main.cpp | 167 static void do_coldboot(DIR *d, int lvl) { 185 if (de->d_type != DT_DIR && lvl > 0) 196 do_coldboot(d2, lvl + 1);
|
/external/opencv3/3rdparty/libjasper/ |
jpc_enc.c | 1108 jpc_enc_rlvl_t *lvl; local 1645 jpc_enc_rlvl_t *lvl; local [all...] |
jpc_t1enc.c | 112 jpc_enc_rlvl_t *lvl; local 132 for (lvl = tcmpt->rlvls; lvl != endlvls; ++lvl) { 133 if (!lvl->bands) { 136 endbands = &lvl->bands[lvl->numbands]; 137 for (band = lvl->bands; band != endbands; ++band) { 141 for (prcno = 0, prc = band->prcs; prcno < lvl->numprcs; ++prcno, ++prc) {
|
/external/toybox/toys/pending/ |
syslogd.c | 104 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] & (1 << fac)) || (tf->level[fac] & (1<<lvl)))) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_loopfilter.c | 210 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/libvpx/libvpx/vp8/common/ |
loopfilter.h | 49 unsigned char lvl[4][4][4]; member in struct:__anon17125
|
/external/boringssl/src/crypto/x509v3/ |
pcy_node.c | 174 int policy_node_match(const X509_POLICY_LEVEL *lvl, 181 if ( (lvl->flags & X509_V_FLAG_INHIBIT_MAP)
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_surface.c | 92 printf("surface copy from %u lvl %u to %u lvl %u: %u,%u,%u to %u,%u,%u %u x %u x %u\n",
|
/external/skia/gm/ |
filterbitmap.cpp | 28 SkFilterQuality lvl) { 30 paint.setFilterQuality(lvl);
|
/frameworks/base/docs/html/google/play/licensing/ |
licensing-reference.jd | 13 <li><a href="#lvl-summary">LVL Classes and Interfaces</a></li> 22 <h2 id="lvl-summary">LVL Classes and Interfaces</h2> 25 Library (LVL) available through the Android SDK. All of the files are part of 28 <p class="table-caption"><strong>Table 1.</strong> Summary of LVL library 136 codes. By default, the LicenseValidator class in the LVL provides all of the 258 response and use them as needed. The LVL default {@code Policy} implementation, <a
|
/external/libvpx/libvpx/vp9/common/ |
vp9_loopfilter.c | 213 int lvl; local 216 for (lvl = 0; lvl <= MAX_LOOP_FILTER; lvl++) { 218 int block_inside_limit = lvl >> ((sharpness_lvl > 0) + (sharpness_lvl > 4)); 228 memset(lfi->lfthr[lvl].lim, block_inside_limit, SIMD_WIDTH); 229 memset(lfi->lfthr[lvl].mblim, (2 * (lvl + 2) + block_inside_limit), 236 return lfi_n->lvl[mbmi->segment_id][mbmi->ref_frame[0]] 243 int lvl; local [all...] |
vp9_loopfilter.h | 48 uint8_t lvl[MAX_SEGMENTS][MAX_REF_FRAMES][MAX_MODE_LF_DELTAS]; member in struct:__anon17187
|
/external/tcpdump/ |
rpl.h | 44 /* bit 10-8, LVL, bit 7-0 flags */
|