HomeSort by relevance Sort by last modified time
    Searched refs:lvl (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
getsockopt.c 10 int getsockopt(int fd, int lvl, int optname, void* optval, socklen_t* len) {
11 return ki_getsockopt(fd, lvl, optname, optval, len);
setsockopt.c 10 int setsockopt(int fd, int lvl, int optname, const void* optval,
12 return ki_setsockopt(fd, lvl, optname, optval, len);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_cpal.c 116 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/mesa3d/src/mesa/main/
texcompress_cpal.c 116 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/chromium_org/third_party/opus/src/silk/fixed/
vector_ops_FIX.c 104 opus_int32 max = 0, i, lvl = 0, ind; local
110 lvl = silk_SMULBB( vec[ i ], vec[ i ] );
111 if( lvl > max ) {
112 max = lvl;
  /external/chromium_org/tools/python/google/
logging_utils.py 31 def setLevel(self, lvl):
32 logging.Handler.setLevel(self, lvl)
33 self._err.setLevel(lvl)
34 self._out.setLevel(lvl)
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
logging.h 257 inline void RAW_LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
258 inline void RAW_VLOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
259 inline void LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
260 inline void VLOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
261 inline void LOG_IF(int lvl, bool cond, const char* pat, ...) {
262 if (cond) LOG_PRINTF(lvl, pat)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
logging.h 227 inline void RAW_LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
228 inline void RAW_VLOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
229 inline void LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
230 inline void VLOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); }
231 inline void LOG_IF(int lvl, bool cond, const char* pat, ...) {
232 if (cond) LOG_PRINTF(lvl, pat)
    [all...]
  /external/apache-http/src/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...]
  /external/jpeg/
jerror.h 252 #define TRACEMS(cinfo,lvl,code) \
254 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
255 #define TRACEMS1(cinfo,lvl,code,p1) \
258 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
259 #define TRACEMS2(cinfo,lvl,code,p1,p2) \
263 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
264 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
268 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
269 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
273 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
    [all...]
  /external/qemu/distrib/jpeg-6b/
jerror.h 252 #define TRACEMS(cinfo,lvl,code) \
254 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
255 #define TRACEMS1(cinfo,lvl,code,p1) \
258 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
259 #define TRACEMS2(cinfo,lvl,code,p1,p2) \
263 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
264 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
268 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
269 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
273 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
    [all...]
  /external/srtp/crypto/kernel/
err.c 146 err_reporting_set_level(err_reporting_level_t lvl) {
147 err_level = lvl;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 130 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->size
303 radeon_mipmap_level *lvl; local
    [all...]
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...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 130 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->size
303 radeon_mipmap_level *lvl; local
    [all...]
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/netd/
main.cpp 101 static void do_coldboot(DIR *d, int lvl)
120 if (de->d_type != DT_DIR && lvl > 0)
131 do_coldboot(d2, lvl + 1);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_miptree.c 40 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->pitch
403 struct nv30_miptree_level *lvl = &mt->level[tmpl->u.tex.level]; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_miptree.c 40 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->pitch
403 struct nv30_miptree_level *lvl = &mt->level[tmpl->u.tex.level]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_miptree.c 229 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/gallium/drivers/nvc0/
nvc0_miptree.c 229 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/dhcpcd/
dhcpcd-run-hooks.in 140 local lvl="$1"
142 [ -n "$lvl" ] && shift
145 logger -t dhcpcd -p daemon."$lvl" -is "$interface: $*"
  /external/openssh/openbsd-compat/
port-linux.c 64 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 if (lvl != NULL)
101 xfree(lvl);
  /cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/
CodecInfo.java 74 for (CodecProfileLevel lvl : cap.profileLevels) {
75 if (lvl.level > highestLevel) {
76 highestLevel = lvl.level;
  /system/vold/
main.cpp 109 static void do_coldboot(DIR *d, int lvl)
128 if (de->d_type != DT_DIR && lvl > 0)
139 do_coldboot(d2, lvl + 1);

Completed in 1814 milliseconds

1 2 3