Searched refs:level (Results 1 - 25 of 973) sorted by relevance

1234567891011>>

/external/valgrind/main/helgrind/tests/
H A Dt2t_laog.stdout.exp2 many 30 level 10 total_locks: 310
3 init level 0
4 init level 1
5 init level 2
6 init level 3
7 init level 4
8 init level 5
9 init level 6
10 init level 7
11 init level
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dnlfork_chain.stdout.exp1 forking level 15
2 forking level 14
3 forking level 13
4 forking level 12
5 forking level 11
6 forking level 10
7 forking level 9
8 forking level 8
9 forking level 7
10 forking level
[all...]
H A Dfork_chain.c6 void fork_chain(int level) argument
10 printf ("forking level %d\n", level);
19 if (level > 0) {
20 fork_chain (level - 1);
/external/webkit/Source/WebKit/chromium/public/
H A DWebConsoleMessage.h46 Level level; member in struct:WebKit::WebConsoleMessage
50 : level(LevelLog) { }
51 WebConsoleMessage(Level level, const WebString& text) argument
52 : level(level)
/external/chromium/chrome/browser/chromeos/
H A Dbrightness_observer.cc12 void BrightnessObserver::BrightnessChanged(int level, bool user_initiated) { argument
14 BrightnessBubble::GetInstance()->ShowBubble(level);
16 BrightnessBubble::GetInstance()->UpdateWithoutShowingBubble(level);
/external/libsepol/include/sepol/policydb/
H A Dmls_types.h28 * Type definitions for the multi-level security (MLS) policy.
45 mls_level_t level[2]; /* low == level[0], high == level[1] */ member in struct:mls_range
57 static inline void mls_level_init(struct mls_level *level) argument
60 memset(level, 0, sizeof(mls_level_t));
63 static inline void mls_level_destroy(struct mls_level *level) argument
66 if (level == NULL)
69 ebitmap_destroy(&level->cat);
70 mls_level_init(level);
141 mls_semantic_level_t level[2]; member in struct:mls_semantic_range
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DZIPCompressedMessage.java55 public ZIPCompressedMessage(Message msg, int level) { argument
57 setLevel(level);
61 * Set the compression level, where 1 is the best compression but slower and 9 is the weakest
64 * @param level The level.
66 public static void setLevel(int level) { argument
67 compressionLevel = level;
/external/chromium/build/
H A Dextract_from_cab.py19 level = subprocess.call(['expand', cab_path, '-F:' + archived_file, output_dir]) variable
20 if level != 0:
21 sys.exit(level)
/external/chromium/sdch/open-vcdiff/src/
H A Dlogging.h46 inline std::ostream& LogMessage(LogLevel level, const char* level_name) { argument
47 if (level == FATAL) {
62 #define LOG(level) LogMessage(open_vcdiff::level, #level)
/external/icu4c/common/
H A Dutracimp.h20 * - using a trace level variable to only call trace functions
21 * when the level is sufficient
50 * Trace level variable. Negative for "off".
112 * @param level The trace level for this message.
118 utrace_data(int32_t utraceFnNumber, int32_t level, const char *fmt, ...);
126 * to at least the specified level.
129 #define UTRACE_LEVEL(level) (utrace_getLevel()>=(level))
232 * Calls utrace_data() if the level i
[all...]
/external/valgrind/main/tests/
H A Dx86_amd64_features.c47 unsigned int level = 0, cmask = 0, dmask = 0, a, b, c, d; local
51 level = 1;
54 level = 1;
57 level = 1;
60 level = 0x80000001;
63 level = 1;
66 level = 1;
69 level = 1;
72 level = 1;
75 level
[all...]
/external/openssl/crypto/x509v3/
H A Dpcy_lib.c106 int X509_policy_level_node_count(X509_POLICY_LEVEL *level) argument
109 if (!level)
111 if (level->anyPolicy)
115 if (level->nodes)
116 n += sk_X509_POLICY_NODE_num(level->nodes);
120 X509_POLICY_NODE *X509_policy_level_get0_node(X509_POLICY_LEVEL *level, int i) argument
122 if (!level)
124 if (level->anyPolicy)
127 return level->anyPolicy;
130 return sk_X509_POLICY_NODE_value(level
[all...]
/external/bison/src/
H A Dprint-xml.c56 print_core (FILE *out, int level, state *s) argument
68 xml_puts (out, level, "<itemset/>");
72 xml_puts (out, level, "<itemset>");
97 xml_printf (out, level + 1,
101 out, level + 2);
102 xml_puts (out, level + 1, "</item>");
109 xml_printf (out, level + 1,
115 xml_puts (out, level, "</itemset>");
125 print_transitions (state *s, FILE *out, int level) argument
139 xml_puts (out, level, "<transition
181 print_errs(FILE *out, int level, state *s) argument
218 print_reduction(FILE *out, int level, char const *lookahead_token, rule *r, bool enabled) argument
240 print_reductions(FILE *out, int level, state *s) argument
341 print_actions(FILE *out, int level, state *s) argument
356 print_state(FILE *out, int level, state *s) argument
379 print_grammar(FILE *out, int level) argument
427 xml_indent(FILE *out, int level) argument
435 xml_puts(FILE *out, int level, char const *s) argument
443 xml_printf(FILE *out, int level, char const *fmt, ...) argument
500 int level = 0; local
[all...]
/external/chromium/base/
H A Dlogging_win.cc28 EtwEventLevel level = TRACE_LEVEL_NONE; local
30 // Convert the log severity to the most appropriate ETW trace level.
34 level = TRACE_LEVEL_INFORMATION;
37 level = TRACE_LEVEL_WARNING;
41 level = TRACE_LEVEL_ERROR;
44 level = TRACE_LEVEL_FATAL;
48 level = TRACE_LEVEL_INFORMATION - severity;
51 // Bail if we're not logging, not at that level,
54 if (provider == NULL || level > provider->enable_level())
59 EtwMofEvent<1> event(kLogEventId, LOG_MESSAGE, level);
119 EtwEventLevel level = enable_level(); local
[all...]
/external/qemu/hw/
H A Darm_pic.c25 static void arm_pic_cpu_handler(void *opaque, int irq, int level) argument
30 if (level)
36 if (level)
/external/webkit/Source/WebCore/platform/text/
H A DBidiContext.h41 static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction, bool override = false, BidiEmbeddingSource = FromStyleOrDOM, BidiContext* parent = 0);
44 unsigned char level() const { return m_level; } function in class:WebCore::BidiContext
51 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSource source, BidiContext* parent) argument
52 : m_level(level)
60 static PassRefPtr<BidiContext> createUncached(unsigned char level, WTF::Unicode::Direction, bool override, BidiEmbeddingSource, BidiContext* parent);
69 inline unsigned char nextGreaterOddLevel(unsigned char level) argument
71 return (level + 1) | 1;
74 inline unsigned char nextGreaterEvenLevel(unsigned char level) argument
76 return (level + 2) & ~1;
/external/webp/src/enc/
H A Dcost.h8 // Cost tables for level and modes.
21 extern const uint16_t VP8LevelFixedCosts[2048]; // approximate cost per level
32 static WEBP_INLINE int VP8LevelCost(const uint16_t* const table, int level) { argument
33 return VP8LevelFixedCosts[level]
34 + table[(level > MAX_VARIABLE_LEVEL) ? MAX_VARIABLE_LEVEL : level];
/external/emma/core/java12/com/vladium/logging/
H A DLogger.java30 * logging verbosity level etc. In general, a Logger is looked up as an
68 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask) argument
70 if ((level < NONE) || (level > ALL))
71 throw new IllegalArgumentException ("invalid log level: " + level);
76 return new Logger (level, out, prefix, classMask);
82 * @param level
89 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask, argument
94 return create (level, ou
130 isLoggable(final int level) argument
250 log(final int level, final String msg, final boolean logCaller) argument
263 log(final int level, final String method, final String msg, final boolean logCaller) argument
277 log(final int level, final String msg, final Throwable throwable) argument
292 log(final int level, final String method, final String msg, final Throwable throwable) argument
373 stringToLevel(final String level) argument
426 Logger(final int level, final PrintWriter out, final String prefix, final Set classMask) argument
439 _log(final int level, final String method, final String msg, final boolean logCaller) argument
487 _log(final int level, final String method, final String msg, final Throwable throwable) argument
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/util/
H A DAndroidLogHandler.java25 Level level = record.getLevel();
29 if (level == Level.INFO) {
31 } else if (level == Level.SEVERE) {
33 } else if (level == Level.WARNING) {
35 } else if (level == Level.CONFIG) {
37 } else if (level == Level.FINE || level == Level.FINER || level == Level.FINEST) {
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dwpa_debug.h57 * @level: priority level (MSG_*) of the message
66 void wpa_printf(int level, const char *fmt, ...)
71 * @level: priority level (MSG_*) of the message
80 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
82 static inline void wpa_hexdump_buf(int level, const char *title, argument
85 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
91 * @level: priority level (MSG
104 wpa_hexdump_buf_key(int level, const char *title, const struct wpabuf *buf) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dwpa_debug.h57 * @level: priority level (MSG_*) of the message
66 void wpa_printf(int level, const char *fmt, ...)
71 * @level: priority level (MSG_*) of the message
80 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
82 static inline void wpa_hexdump_buf(int level, const char *title, argument
85 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
91 * @level: priority level (MSG
104 wpa_hexdump_buf_key(int level, const char *title, const struct wpabuf *buf) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dwpa_debug.h57 * @level: priority level (MSG_*) of the message
66 void wpa_printf(int level, const char *fmt, ...)
71 * @level: priority level (MSG_*) of the message
80 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
82 static inline void wpa_hexdump_buf(int level, const char *title, argument
85 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
91 * @level: priority level (MSG
104 wpa_hexdump_buf_key(int level, const char *title, const struct wpabuf *buf) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTracer.cs51 protected int level = 0; field in class:Antlr.Runtime.Debug.Tracer
60 for (int i = 1; i <= level; i++)
65 level++;
70 level--;
71 for (int i = 1; i <= level; i++)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTracer.cs48 protected int level = 0; field in class:Antlr.Runtime.Debug.Tracer
57 for ( int i = 1; i <= level; i++ )
62 level++;
67 level--;
68 for ( int i = 1; i <= level; i++ )
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTracer.java39 protected int level = 0; field in class:Tracer
46 for (int i=1; i<=level; i++) {System.out.print(" ");}
48 level++;
52 level--;
53 for (int i=1; i<=level; i++) {System.out.print(" ");}

Completed in 698 milliseconds

1234567891011>>