| /xsrc/external/mit/libXft/dist/src/ |
| xftdbg.c | 29 static int debug; local 40 debug = atoi (e); 41 if (debug <= 0) 42 debug = 1; 45 return debug;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/ |
| table.c | 48 static int debug = -1; local 50 if (debug < 0) 51 debug = (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")); 53 if (debug)
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/ |
| radeon_debug.c | 30 #include "util/debug.h" 77 const size_t length = sizeof(radeon->debug.indent) 78 / sizeof(radeon->debug.indent[0]); 79 if (radeon->debug.indent_depth < length - 1) { 80 radeon->debug.indent[radeon->debug.indent_depth] = '\t'; 81 ++radeon->debug.indent_depth; 89 if (radeon->debug.indent_depth > 0) { 90 radeon->debug.indent[radeon->debug.indent_depth] = '\0' [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/ |
| radeon_debug.c | 30 #include "util/debug.h" 73 const size_t length = sizeof(radeon->debug.indent) 74 / sizeof(radeon->debug.indent[0]); 75 if (radeon->debug.indent_depth < length - 1) { 76 radeon->debug.indent[radeon->debug.indent_depth] = '\t'; 77 ++radeon->debug.indent_depth; 85 if (radeon->debug.indent_depth > 0) { 86 radeon->debug.indent[radeon->debug.indent_depth] = '\0' [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/ |
| table.c | 48 const char *debug = getenv("MESA_DEBUG"); local 49 if (!debug) 50 debug = getenv("LIBGL_DEBUG"); 51 if (debug && strcmp(debug, "silent") != 0)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_disasm.h | 38 etna_disasm(uint32_t *dwords, int sizedwords, enum debug_t debug);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_disasm.h | 38 etna_disasm(uint32_t *dwords, int sizedwords, enum debug_t debug);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| debug_output.c | 69 * An error, warning, or other piece of debug information for an application 86 * Debug message log. It works like a ring buffer. 185 * building a giant enum list of all debug output messages that Mesa might 388 * Allocate and initialize context debug state. 393 struct gl_debug_state *debug; local 396 debug = CALLOC_STRUCT(gl_debug_state); 397 if (!debug) 400 debug->Groups[0] = malloc(sizeof(*debug->Groups[0])); 401 if (!debug->Groups[0]) 725 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 756 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 796 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 830 struct gl_debug_state *debug = ctx->Debug; local 868 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 1025 struct gl_debug_state *debug; local 1100 struct gl_debug_state *debug; local 1148 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 1163 struct gl_debug_state *debug; local 1221 struct gl_debug_state *debug; local 1268 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local [all...] |
| errors.c | 47 static int debug = -1; local 49 /* Init the local 'debug' var once. 53 if (debug == -1) { 63 /* in debug builds, print messages unless MESA_DEBUG="silent" */ 65 debug = 0; 67 debug = 1; 70 debug = env && strstr(env, "silent") == NULL; 75 if (debug) { 101 * Return the file handle to use for debug/logging. Defaults to stderr 135 * either DEBUG is defined or the MESA_DEBUG env var is set 188 static GLint debug = -1; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| debug_output.c | 69 * An error, warning, or other piece of debug information for an application 86 * Debug message log. It works like a ring buffer. 185 * building a giant enum list of all debug output messages that Mesa might 403 * Allocate and initialize context debug state. 408 struct gl_debug_state *debug; local 411 debug = CALLOC_STRUCT(gl_debug_state); 412 if (!debug) 415 debug->Groups[0] = malloc(sizeof(*debug->Groups[0])); 416 if (!debug->Groups[0]) 740 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 771 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 811 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 845 struct gl_debug_state *debug = ctx->Debug; local 883 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 1040 struct gl_debug_state *debug; local 1115 struct gl_debug_state *debug; local 1163 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local 1178 struct gl_debug_state *debug; local 1236 struct gl_debug_state *debug; local 1283 struct gl_debug_state *debug = _mesa_lock_debug_state(ctx); local [all...] |
| 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...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/x86emu/x86emu/ |
| debug.h | 35 * Description: Header file for debug definitions. 51 #ifdef DEBUG 63 #ifdef DEBUG 64 #define DEBUG_INSTRUMENT() (M.x86.debug & DEBUG_INSTRUMENT_F) 65 #define DEBUG_DECODE() (M.x86.debug & DEBUG_DECODE_F) 66 #define DEBUG_TRACE() (M.x86.debug & DEBUG_TRACE_F) 67 #define DEBUG_STEP() (M.x86.debug & DEBUG_STEP_F) 68 #define DEBUG_DISASSEMBLE() (M.x86.debug & DEBUG_DISASSEMBLE_F) 69 #define DEBUG_BREAK() (M.x86.debug & DEBUG_BREAK_F) 70 #define DEBUG_SVC() (M.x86.debug & DEBUG_SVC_F [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/x86emu/x86emu/ |
| debug.h | 35 * Description: Header file for debug definitions. 51 #ifdef DEBUG 63 #ifdef DEBUG 64 # define DEBUG_INSTRUMENT() (M.x86.debug & DEBUG_INSTRUMENT_F) 65 # define DEBUG_DECODE() (M.x86.debug & DEBUG_DECODE_F) 66 # define DEBUG_TRACE() (M.x86.debug & DEBUG_TRACE_F) 67 # define DEBUG_STEP() (M.x86.debug & DEBUG_STEP_F) 68 # define DEBUG_DISASSEMBLE() (M.x86.debug & DEBUG_DISASSEMBLE_F) 69 # define DEBUG_BREAK() (M.x86.debug & DEBUG_BREAK_F) 70 # define DEBUG_SVC() (M.x86.debug & DEBUG_SVC_F [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/ir3/ |
| ir3_gallium.h | 36 struct pipe_debug_callback *debug, 41 struct pipe_debug_callback *debug, 45 struct pipe_debug_callback *debug);
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| glutState.h | 47 bool debug; // call glGetError member in struct:GlutState 64 debug = quitAll = false;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/ |
| i915_screen.h | 50 } debug; member in struct:i915_screen
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| debug.c | 26 #include "debug.h" 30 parse_debug_string(const char *debug, 35 if (debug != NULL) { 37 if (!strcmp(debug, "all")) { 41 const char *s = debug;
|
| debug.h | 40 parse_debug_string(const char *debug,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/ |
| disasm.h | 33 /* bitmask of debug flags */ 41 void disasm_set_debug(enum debug_t debug);
|
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| debug.c | 27 #include "debug.h" 30 parse_debug_string(const char *debug, 35 if (debug != NULL) { 37 if (!strcmp(debug, "all")) { 41 const char *s = debug;
|
| debug.h | 40 parse_debug_string(const char *debug,
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/common/ |
| disasm.h | 33 /* bitmask of debug flags */ 65 void disasm_a2xx_set_debug(enum debug_t debug); 66 void disasm_a3xx_set_debug(enum debug_t debug);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/ |
| lima_ir.h | 57 struct pipe_debug_callback *debug); 63 struct pipe_debug_callback *debug);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| opt_dead_code.cpp | 36 static bool debug = false; variable 66 if (debug) { 107 if (debug) { 165 if (debug) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| opt_dead_code.cpp | 36 static bool debug = false; variable 66 if (debug) { 107 if (debug) { 158 if (debug) {
|