/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/ |
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/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/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/ |
header.c | 25 unsigned int a, b, c, d, lvl; local 30 cpuid(0, &lvl, &b, &c, &d); 36 if (lvl >= 1) {
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
logging.h | 261 inline void RAW_LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); } 262 inline void RAW_VLOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); } 263 inline void LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); } 264 inline void VLOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); } 265 inline void LOG_IF(int lvl, bool cond, const char* pat, ...) { 266 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 | 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/chromium_org/third_party/skia/bench/ |
PictureNestingBench.cpp | 45 int sierpinsky(SkCanvas* canvas, int lvl, const SkPaint& paint) { 46 if (++lvl > fMaxLevel) { 51 bool recordPicture = lvl <= fMaxPictureLevel; 68 pics += this->sierpinsky(c, lvl, paint); 71 pics += this->sierpinsky(c, lvl, paint); 74 pics += this->sierpinsky(c, lvl, paint);
|
/external/chromium_org/third_party/libjpeg_turbo/ |
jerror.h | 275 #define TRACEMS(cinfo,lvl,code) \ 277 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 278 #define TRACEMS1(cinfo,lvl,code,p1) \ 281 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 282 #define TRACEMS2(cinfo,lvl,code,p1,p2) \ 286 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 287 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \ 291 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) 292 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \ 296 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (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/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/ |
tcp_node.h | 45 virtual Error GetSockOpt(int lvl, int optname, void* optval, socklen_t* len); 47 virtual Error SetSockOpt(int lvl,
|
/external/chromium_org/third_party/libsrtp/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...] |
/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/chromium_org/v8/tools/gcmole/ |
gccause.lua | 41 local function TrackCause(name, lvl) 42 io.write((" "):rep(lvl or 0), name, "\n") 49 TrackCause(f, (lvl or 0) + 1)
|
/device/asus/flo/camera/QCamera2/HAL/ |
QCameraThermalAdapter.cpp | 155 qcamera_thermal_level_enum_t lvl = (qcamera_thermal_level_enum_t) level; local 157 rc = instance.mCallback->thermalEvtHandle(lvl, userdata, data);
|