HomeSort by relevance Sort by last modified time
    Searched defs:debug (Results 351 - 375 of 1831) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_context.h 18 struct pipe_debug_callback debug; member in struct:nouveau_context
  /external/mesa3d/src/gallium/drivers/r300/
r300_screen.h 45 unsigned debug; member in struct:r300_screen
65 /* Debug functionality. */
68 * Debug flags to disable/enable certain groups of debugging outputs.
109 return (screen->debug & flags) ? TRUE : FALSE;
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen.h 66 } debug; member in struct:svga_screen
92 #ifndef DEBUG
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_combine_constants.cpp 42 static const bool debug = false; variable
307 if (debug) {
brw_fs_vector_splitting.cpp 46 static bool debug = false; variable
337 if (debug) {
  /external/mesa3d/src/mesa/main/
errors.c 47 static int debug = -1; local
49 /* Init the local 'debug' var once.
53 if (debug == -1) {
62 #ifdef DEBUG
63 /* in debug builds, print messages unless MESA_DEBUG="silent" */
65 debug = 0;
67 debug = 1;
70 debug = getenv("MESA_DEBUG") != NULL;
75 if (debug) {
98 * Return the file handle to use for debug/logging. Defaults to stder
185 static GLint debug = -1; local
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
util.py 46 'sub_debug', 'debug', 'info', 'sub_warning', 'get_logger',
58 DEBUG = 10
72 def debug(msg, *args): function
74 _logger.log(DEBUG, msg, *args)
294 def _exit_function(info=info, debug=debug, _run_finalizers=_run_finalizers,
304 debug('running all "atexit" finalizers with priority >= 0')
327 debug('running the remaining "atexit" finalizers')
  /external/python/cpython2/Lib/unittest/
suite.py 72 def debug(self): member in class:BaseTestSuite
75 test.debug()
88 def run(self, result, debug=False):
107 if not debug:
110 test.debug()
118 def debug(self): member in class:TestSuite
120 debug = _DebugResult()
121 self.run(debug, True)
300 "Used by the TestSuite to hold previous class when running in debug."
  /external/python/cpython2/Modules/_ctypes/libffi/src/pa/
ffi.c 52 #define debug(lvl, x...) do { if (lvl <= DEBUG_LEVEL) { printf(x); } } while (0) macro
151 debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack,
182 debug(3, "Storing UINT32 %u in slot %u\n", *(UINT32 *)(*p_argv),
196 debug(3, "Storing UINT32(float) in slot %u\n", slot);
211 debug(3, "Storing UINT64(double) at slot %u\n", slot);
264 debug(5, "Stack setup:\n");
267 if ((n%4) == 0) { debug(5, "\n%08x: ", (unsigned int)(stack - n)); }
268 debug(5, "%08x ", *(stack - n));
270 debug(5, "\n");
315 debug(3, "Calculated stack size is %u bytes\n", cif->bytes)
    [all...]
  /external/python/cpython3/Lib/unittest/
suite.py 86 def debug(self): member in class:BaseTestSuite
89 test.debug()
102 def run(self, result, debug=False):
121 if not debug:
124 test.debug()
135 def debug(self): member in class:TestSuite
137 debug = _DebugResult()
138 self.run(debug, True)
318 "Used by the TestSuite to hold previous class when running in debug."
  /external/python/cpython3/Modules/_ctypes/libffi/src/pa/
ffi.c 52 #define debug(lvl, x...) do { if (lvl <= DEBUG_LEVEL) { printf(x); } } while (0) macro
151 debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack,
182 debug(3, "Storing UINT32 %u in slot %u\n", *(UINT32 *)(*p_argv),
196 debug(3, "Storing UINT32(float) in slot %u\n", slot);
211 debug(3, "Storing UINT64(double) at slot %u\n", slot);
264 debug(5, "Stack setup:\n");
267 if ((n%4) == 0) { debug(5, "\n%08x: ", (unsigned int)(stack - n)); }
268 debug(5, "%08x ", *(stack - n));
270 debug(5, "\n");
315 debug(3, "Calculated stack size is %u bytes\n", cif->bytes)
    [all...]
  /external/scapy/scapy/
sendrecv.py 36 ## Debug class ##
39 class debug: class in inherits:
150 debug.recv.append(r)
180 debug.recv = plist.PacketList([],"Unanswered")
181 debug.sent = plist.PacketList([],"Sent")
182 debug.match = plist.SndRcvList([])
225 debug.sent=plist.PacketList(remain[:], "Sent")
226 debug.match=plist.SndRcvList(ans[:])
  /external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/
InvokeJCLTest.java 50 log.debug(null);
51 log.debug("debug message");
68 log.debug(null, e);
69 log.debug("debug message", e);
  /external/slf4j/slf4j-jcl/src/test/java/org/slf4j/
InvocationTest.java 59 logger.debug("Hello world.");
69 logger.debug("Hello world 1.");
70 logger.debug("Hello world {}", i1);
71 logger.debug("val={} val={}", i1, i2);
72 logger.debug("val={} val={} val={}", new Object[] { i1, i2, i3 });
74 logger.debug("Hello world 2", e);
87 logger.debug(null);
93 logger.debug(null, e);
102 logger.debug(blue, "hello");
107 logger.debug(blue, "hello {}", "world")
    [all...]
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 174 public void debug(String msg) { method in class:JDK14LoggerAdapter
193 public void debug(String format, Object arg) { method in class:JDK14LoggerAdapter
216 public void debug(String format, Object arg1, Object arg2) { method in class:JDK14LoggerAdapter
237 public void debug(String format, Object... argArray) { method in class:JDK14LoggerAdapter
252 public void debug(String msg, Throwable t) { method in class:JDK14LoggerAdapter
  /external/slf4j/slf4j-nop/src/test/java/org/slf4j/
InvocationTest.java 53 logger.debug("Hello world.");
63 logger.debug("Hello world 1.");
64 logger.debug("Hello world {}", i1);
65 logger.debug("val={} val={}", i1, i2);
66 logger.debug("val={} val={} val={}", new Object[] { i1, i2, i3 });
68 logger.debug("Hello world 2", e);
81 logger.debug(null);
87 logger.debug(null, e);
96 logger.debug(blue, "hello");
101 logger.debug(blue, "hello {}", "world")
    [all...]
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/
InvocationTest.java 57 logger.debug("Hello world.");
67 logger.debug("Hello world 1.");
68 logger.debug("Hello world {}", i1);
69 logger.debug("val={} val={}", i1, i2);
70 logger.debug("val={} val={} val={}", new Object[] { i1, i2, i3 });
72 logger.debug("Hello world 2", e);
93 logger.debug(null);
99 logger.debug(null, e);
108 logger.debug(blue, "hello");
113 logger.debug(blue, "hello {}", "world")
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
main.cpp 23 #include "common/debug.h"
64 FILE *debug = fopen(TRACE_OUTPUT_FILE, "rt"); local
66 if(debug)
68 fclose(debug);
69 debug = fopen(TRACE_OUTPUT_FILE, "wt"); // Erase
70 fclose(debug);
  /external/v8/src/base/debug/
stack_trace_win.cc 8 #include "src/base/debug/stack_trace.h"
23 namespace debug { namespace in namespace:v8::base
39 debug::StackTrace(info).Print();
246 } // namespace debug
  /external/v8/src/debug/
debug-interface.h 10 #include "include/v8-debug.h"
14 #include "src/debug/interface-types.h"
26 namespace debug { namespace in namespace:v8
47 * v8::Debug::Call will return the current line of JavaScript execution.
138 bool GetPossibleBreakpoints(const debug::Location& start,
139 const debug::Location& end,
140 std::vector<debug::Location>* locations) const;
143 int GetSourcePosition(const debug::Location& location) const;
156 debug::WasmDisassembly DisassembleFunction(int function_index) const;
167 virtual void PromiseEventOccurred(debug::PromiseDebugActionType type, int id
    [all...]
  /external/valgrind/coregrind/
m_libcsignal.c 466 const Bool debug = False; local
498 if (debug)
522 if (debug)
  /external/vogar/src/vogar/tasks/
BuildActionTask.java 91 javac.debug();
  /frameworks/av/tools/resampler_tools/
fir.cpp 74 " -d debug, print comma-separated coefficient table\n"
97 bool debug = false; local
166 debug = true;
232 if (!debug) {
263 if (!debug) {
275 printf("%.9g%s", y, debug ? "," : "f,");
286 if (!debug) printf("\n ");
301 printf("%.9g%s", y, debug ? "," : "f,");
311 if (!debug && declarations) {
  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 220 public String debug(String output) { method in class:AbsoluteLayout.LayoutParams
  /frameworks/base/libs/hwui/debug/
NullGlesDriver.cpp 17 #include <debug/NullGlesDriver.h>
21 namespace debug { namespace in namespace:android::uirenderer
170 } // namespace debug

Completed in 1467 milliseconds

<<11121314151617181920>>