/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ksdebug.h | 103 # define _DbgPrintFEx(component, lvl, strings) { \ 104 if ((lvl) <= DEBUG_VARIABLE) { \ 105 DbgPrintEx(component, lvl, STR_MODULENAME); \ 106 DbgPrintEx(component, lvl, strings); \ 107 DbgPrintEx(component, lvl, "\n"); \ 108 if ((lvl) == DEBUGLVL_ERROR) { \ 115 # define _DbgPrintF(lvl, strings) { \ 116 if (((lvl)==DEBUG_VARIABLE) || (lvl < DEBUG_VARIABLE)) { \ 120 if ((lvl) == DEBUGLVL_ERROR) { [all...] |
/external/selinux/libsepol/cil/src/ |
cil_log.c | 40 void cil_default_log_handler(__attribute__((unused)) int lvl, char *msg) 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)) 52 __attribute__ ((format (printf, 2, 0))) void cil_vlog(enum cil_log_level lvl, const char *msg, va_list args) 54 if (cil_log_level >= lvl) { 61 __attribute__ ((format (printf, 2, 3))) void cil_log(enum cil_log_level lvl, const char *msg, ...) 65 cil_vlog(lvl, msg, args); 69 void cil_set_log_level(enum cil_log_level lvl) 71 cil_log_level = lvl;
|
cil_log.h | 37 __attribute__ ((format(printf, 2, 0))) void cil_vlog(enum cil_log_level lvl, const char *msg, va_list args); 38 __attribute__ ((format(printf, 2, 3))) void cil_log(enum cil_log_level lvl, const char *msg, ...);
|
/external/libdrm/nouveau/ |
private.h | 14 #define dbg_on(lvl) (nouveau_debug & (1 << lvl)) 15 #define dbg(lvl, fmt, args...) do { \ 16 if (dbg_on((lvl))) \ 20 #define dbg_on(lvl) (0) 21 #define dbg(lvl, fmt, args...)
|
/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/opencv3/modules/photo/src/ |
merge.cpp | 226 for(int lvl = 0; lvl < maxlevel; lvl++) { 228 pyrUp(img_pyr[lvl + 1], up, img_pyr[lvl].size()); 229 img_pyr[lvl] -= up; 231 for(int lvl = 0; lvl <= maxlevel; lvl++) { 233 split(img_pyr[lvl], splitted) [all...] |
/external/skia/bench/ |
PictureNestingBench.cpp | 44 int sierpinsky(SkCanvas* canvas, int lvl, const SkPaint& paint) { 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);
|
/frameworks/av/media/libstagefright/tests/ |
Utils_test.cpp | 111 #define LVL(x) (ADebug::Level)(x) 112 ASSERT_EQ(ADebug::GetLevelFromSettingsString("video", "", LVL(5)), LVL(5)); 113 ASSERT_EQ(ADebug::GetLevelFromSettingsString("video", " \t \n ", LVL(2)), LVL(2)); 114 ASSERT_EQ(ADebug::GetLevelFromSettingsString("video", "3", LVL(5)), LVL(3)); 115 ASSERT_EQ(ADebug::GetLevelFromSettingsString("video", "3:*deo", LVL(5)), LVL(3)); 117 "video", "\t\n 3 \t\n:\t\n video \t\n", LVL(5)), LVL(3)) [all...] |
/external/opencv3/3rdparty/libjasper/ |
jpc_t2enc.c | 164 jpc_enc_rlvl_t *lvl; local 216 lvl = &comp->rlvls[lvlno]; 217 endbands = &lvl->bands[lvl->numbands]; 218 for (band = lvl->bands; band != endbands; ++band) { 343 lvl = &comp->rlvls[lvlno]; 344 endbands = &lvl->bands[lvl->numbands]; 345 for (band = lvl->bands; band != endbands; ++band) { 394 jpc_enc_rlvl_t *lvl; local 442 jpc_enc_rlvl_t *lvl; local 490 jpc_enc_rlvl_t *lvl; local [all...] |
/external/pdfium/tools/drmemory/scripts/ |
logging_utils.py | 31 def setLevel(self, lvl): 32 logging.Handler.setLevel(self, lvl) 33 self._err.setLevel(lvl) 34 self._out.setLevel(lvl)
|
/frameworks/base/docs/html/google/play/licensing/ |
setting-up.jd | 16 <li><a href="#download-lvl">Downloading the LVL</a></li> 17 <li><a href="#lvl-setup">Setting Up the Licensing Verification Library</a></li> 18 <li><a href="#add-library">Including the LVL library project sources in your 97 <li><a href="#download-lvl">Downloading the LVL</a> into your SDK </li> 98 <li><a href="#lvl-setup">Setting up the Licensing Verification Library</a></li> 99 <li><a href="#add-library">Including the LVL library project in your application</a></li> 219 <h3 id="download-lvl">Downloading the LVL</h3 [all...] |
adding-licensing.jd | 53 your app with the License Verification Library (LVL).</p> 55 <p>Adding license verification with the LVL involves these tasks:</p> 59 <li><a href="#impl-Policy">Implementing a Policy</a> — you can choose one of the full implementations provided in the LVL or create your own.</li> 74 <p>For an overview of the full set of source files included in the LVL, see <a 75 href="{@docRoot}google/play/licensing/licensing-reference.html#lvl-summary">Summary of LVL Classes 85 the LVL throws a security exception.</p> 94 <p>For example, here's how the LVL sample application declares the permission: 109 <code>CHECK_LICENSE</code> permission in the LVL library project's manifest, 121 <p>The LVL includes a complete {@code Policy} implementation called ServerManagedPolic [all...] |
overview.jd | 20 <li><a href="#LVL">Licensing Verification Library</a></li> 67 Licensing package. The License Verification Library (LVL) is a library you can add to your 70 the LVL added to your application, your application can determine its licensing status for the 124 <h2 id="LVL">Licensing Verification Library</h2> 127 which includes the License Verification Library (LVL). The LVL greatly simplifies the process of 129 application. The LVL provides internal classes that handle most of the standard operations of a 133 LVL interfaces are: </p> 154 <p>To help you get started with a {@code Policy}, the LVL provides two fully complete 172 <p>The LVL is available as a downloadable package of the Android SDK. Th [all...] |
/external/selinux/libsepol/cil/include/cil/ |
cil.h | 61 extern void cil_set_log_level(enum cil_log_level lvl); 62 extern void cil_set_log_handler(void (*handler)(int lvl, char *msg)); 67 extern void cil_log(enum cil_log_level lvl, const char *msg, ...);
|
/external/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)
|
/external/libjpeg-turbo/ |
jerror.h | 277 #define TRACEMS(cinfo,lvl,code) \ 279 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 280 #define TRACEMS1(cinfo,lvl,code,p1) \ 283 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 284 #define TRACEMS2(cinfo,lvl,code,p1,p2) \ 288 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 289 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \ 293 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) 294 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \ 298 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) [all...] |
/external/llvm/test/CodeGen/ARM/ |
2009-03-09-AddrModeBug.ll | 7 define fastcc %struct.node_t* @_ZL6createP6node_tii3v_tS1_d(%struct.node_t* %n, i32 %lvl, i32 %dist, i64 %c.0.0, i64 %c.0.1, i64 %c.0.2, i64 %d.0.0, i64 %d.0.1, i64 %d.0.2, double %r) nounwind {
|
/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/opencv3/3rdparty/libjpeg/ |
jerror.h | 265 #define TRACEMS(cinfo,lvl,code) \ 267 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 268 #define TRACEMS1(cinfo,lvl,code,p1) \ 271 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 272 #define TRACEMS2(cinfo,lvl,code,p1,p2) \ 276 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) 277 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \ 281 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) 282 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \ 286 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); ) [all...] |
/external/pdfium/third_party/libjpeg/ |
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/opencv3/cmake/ |
OpenCVDetectAndroidSDK.cmake | 142 foreach(lvl ${ARGN}) 143 string(REGEX MATCH "[0-9]+$" __level "${lvl}") 150 foreach(lvl ${ANDROID_SDK_TARGETS}) 151 string(REGEX MATCH "[0-9]+$" __level "${lvl}") 155 if("${usrlvl}" STREQUAL "${lvl}") 156 set(${VAR} "${lvl}") 160 if("${${VAR}}" STREQUAL "${lvl}") 163 set(${VAR} "${lvl}") 167 set(${VAR} "${lvl}")
|
/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...] |
/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/skia/gm/ |
filterindiabox.cpp | 27 SkFilterQuality lvl) { 29 paint.setFilterQuality(lvl);
|
/external/libvpx/libvpx/vp8/common/ |
vp8_loopfilter.c | 101 /* init LUT for lvl and hev thr picking */ 153 memset(lfi->lvl[seg][0], lvl_seg, 4 * 4 ); 170 lfi->lvl[seg][ref][mode] = lvl_mode; 175 lfi->lvl[seg][ref][mode] = lvl_mode; 190 lfi->lvl[seg][ref][mode] = lvl_mode; 218 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 275 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 350 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 406 filter_level = lfi_n->lvl[seg][ref_frame][mode_index]; 492 filter_level = lfi_n->lvl[seg][ref_frame][mode_index] [all...] |