Searched refs:diagnostic (Results 1 - 25 of 68) sorted by path

123

/xsrc/external/mit/MesaLib.old/dist/docs/specs/
H A DMESA_shader_debug.spec44 during execution, issue diagnostic function calls that are logged
204 a diagnostic message is written to the "debug assert log".
218 The diagnostic message examples follow.
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_debug_stack.c269 #pragma GCC diagnostic push
270 #pragma GCC diagnostic ignored "-Wframe-address"
272 #pragma GCC diagnostic pop
/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dapple_glx_log.c41 static bool diagnostic = false; variable in typeref:typename:bool
46 diagnostic = true;
93 if (diagnostic) {
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.cpp953 #pragma clang diagnostic ignored "-Wunknown-pragmas" // warning : unknown warning group '-Wformat-pedantic *' // not all warnings are known by all clang versions.. so ignoring warnings triggers new warnings on some configuration. great!
954 #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse.
955 #pragma clang diagnostic ignored "-Wfloat-equal" // warning : comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok.
956 #pragma clang diagnostic ignored "-Wformat-nonliteral" // warning : format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code.
957 #pragma clang diagnostic ignored "-Wexit-time-destructors" // warning : declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals.
958 #pragma clang diagnostic ignored "-Wglobal-constructors" // warning : declaration requires a global destructor // similar to above, not sure what the exact difference it.
959 #pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness //
960 #pragma clang diagnostic ignored "-Wformat-pedantic" // warning : format specifies type 'void *' but the argument has type 'xxxx *' // unreasonable, would lead to casting every %p arg to void*. probably enabled by -pedantic.
961 #pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning : cast to 'void *' from smaller integer type 'int'
963 #pragma clang diagnostic ignore
[all...]
H A Dimgui.h79 #pragma clang diagnostic push
80 #pragma clang diagnostic ignored "-Wold-style-cast"
82 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
85 #pragma GCC diagnostic push
86 #pragma GCC diagnostic ignored "-Wclass-memaccess"
2135 #pragma clang diagnostic pop
2137 #pragma GCC diagnostic pop
H A Dimgui_demo.cpp67 #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse.
68 #pragma clang diagnostic ignored "-Wdeprecated-declarations" // warning : 'xx' is deprecated: The POSIX name for this item.. // for strdup used in demo code (so user can copy & paste the code)
69 #pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning : cast to 'void *' from smaller integer type 'int'
70 #pragma clang diagnostic ignored "-Wformat-security" // warning : warning: format string is not a string literal
71 #pragma clang diagnostic ignored "-Wexit-time-destructors" // warning : declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals.
72 #pragma clang diagnostic ignored "-Wunused-macros" // warning : warning: macro is not used // we define snprintf/vsnprintf on Windows so they are available, but not always used.
74 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning : zero as null pointer constant // some standard header variations use #define NULL 0
77 #pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double.
80 #pragma clang diagnostic ignored "-Wreserved-id-macro" // warning : macro name is a reserved identifier //
83 #pragma GCC diagnostic ignore
[all...]
H A Dimgui_draw.cpp56 #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse.
57 #pragma clang diagnostic ignored "-Wfloat-equal" // warning : comparing floating point with == or != is unsafe // storing and comparing against same constants ok.
58 #pragma clang diagnostic ignored "-Wglobal-constructors" // warning : declaration requires a global destructor // similar to above, not sure what the exact difference it.
59 #pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness //
61 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning : zero as null pointer constant // some standard header variations use #define NULL 0
64 #pragma clang diagnostic ignored "-Wcomma" // warning : possible misuse of comma operator here //
67 #pragma clang diagnostic ignored "-Wreserved-id-macro" // warning : macro name is a reserved identifier //
70 #pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double.
73 #pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
74 #pragma GCC diagnostic ignore
[all...]
H A Dimgui_internal.h45 #pragma clang diagnostic push
46 #pragma clang diagnostic ignored "-Wunused-function" // for stb_textedit.h
47 #pragma clang diagnostic ignored "-Wmissing-prototypes" // for stb_textedit.h
48 #pragma clang diagnostic ignored "-Wold-style-cast"
50 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
53 #pragma clang diagnostic ignored "-Wdouble-promotion"
1527 #pragma clang diagnostic pop
H A Dimgui_widgets.cpp55 #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse.
56 #pragma clang diagnostic ignored "-Wfloat-equal" // warning : comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok.
57 #pragma clang diagnostic ignored "-Wformat-nonliteral" // warning : format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code.
58 #pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness //
60 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning : zero as null pointer constant // some standard header variations use #define NULL 0
63 #pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double.
66 #pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked
68 #pragma GCC diagnostic ignored "-Wclass-memaccess" // warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead
H A Dimstb_textedit.h1362 #pragma GCC diagnostic push
1363 #pragma GCC diagnostic ignored "-Wcast-qual"
1372 #pragma GCC diagnostic pop
H A Dimstb_truetype.h4763 #pragma GCC diagnostic push
4764 #pragma GCC diagnostic ignored "-Wcast-qual"
4800 #pragma GCC diagnostic pop
/xsrc/external/mit/MesaLib/dist/docs/_extra/specs/
H A DMESA_shader_debug.spec44 during execution, issue diagnostic function calls that are logged
204 a diagnostic message is written to the "debug assert log".
218 The diagnostic message examples follow.
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D18.1.0.rst207 - u_debug_stack.c:268: error: #pragma GCC diagnostic not allowed
H A D19.3.0.rst2505 - radeonsi: don't print diagnostic LLVM remarks and notes
/xsrc/external/mit/MesaLib/dist/include/android_stub/cutils/
H A Dnative_handle.h40 #pragma clang diagnostic push
41 #pragma clang diagnostic ignored "-Wzero-length-array"
45 #pragma clang diagnostic pop
H A Dproperties.h121 #pragma clang diagnostic push
122 #pragma clang diagnostic ignored "-Wgcc-compat"
127 #pragma clang diagnostic pop
/xsrc/external/mit/MesaLib/dist/include/android_stub/log/
H A Dlog_main.h52 #pragma clang diagnostic push
53 #pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
375 #pragma clang diagnostic pop
/xsrc/external/mit/MesaLib/dist/include/android_stub/ndk/
H A Dsync.h89 #pragma GCC diagnostic push
90 #pragma GCC diagnostic ignored "-Wold-style-cast"
92 #pragma GCC diagnostic pop
/xsrc/external/mit/MesaLib/dist/include/android_stub/system/
H A Dgraphics.h230 #pragma clang diagnostic push
231 #pragma clang diagnostic ignored "-Wc99-extensions"
235 #pragma clang diagnostic pop
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
H A Dradv_shader.c261 /* VK_DEBUG_REPORT_DEBUG_BIT_EXT specifies diagnostic information
2025 #pragma GCC diagnostic push
2026 #pragma GCC diagnostic ignored "-Wshadow"
2031 #pragma GCC diagnostic pop
/xsrc/external/mit/MesaLib/dist/src/compiler/clc/
H A Dclc_helpers.cpp612 spv_diagnostic diagnostic = NULL; local in function:SPIRVKernelParser::parseBinary
615 NULL, parseInstruction, &diagnostic);
618 if (diagnostic && logger)
619 logger->error(logger->priv, diagnostic->error);
/xsrc/external/mit/MesaLib/dist/src/freedreno/rnn/
H A Drnn.c30 #pragma GCC diagnostic ignored "-Wpointer-sign"
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.cpp953 #pragma clang diagnostic ignored "-Wunknown-pragmas" // warning : unknown warning group '-Wformat-pedantic *' // not all warnings are known by all clang versions.. so ignoring warnings triggers new warnings on some configuration. great!
954 #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse.
955 #pragma clang diagnostic ignored "-Wfloat-equal" // warning : comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok.
956 #pragma clang diagnostic ignored "-Wformat-nonliteral" // warning : format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code.
957 #pragma clang diagnostic ignored "-Wexit-time-destructors" // warning : declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals.
958 #pragma clang diagnostic ignored "-Wglobal-constructors" // warning : declaration requires a global destructor // similar to above, not sure what the exact difference it.
959 #pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness //
960 #pragma clang diagnostic ignored "-Wformat-pedantic" // warning : format specifies type 'void *' but the argument has type 'xxxx *' // unreasonable, would lead to casting every %p arg to void*. probably enabled by -pedantic.
961 #pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning : cast to 'void *' from smaller integer type 'int'
963 #pragma clang diagnostic ignore
[all...]
H A Dimgui.h79 #pragma clang diagnostic push
80 #pragma clang diagnostic ignored "-Wold-style-cast"
82 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
85 #pragma GCC diagnostic push
86 #pragma GCC diagnostic ignored "-Wclass-memaccess"
2135 #pragma clang diagnostic pop
2137 #pragma GCC diagnostic pop
H A Dimgui_draw.cpp56 #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse.
57 #pragma clang diagnostic ignored "-Wfloat-equal" // warning : comparing floating point with == or != is unsafe // storing and comparing against same constants ok.
58 #pragma clang diagnostic ignored "-Wglobal-constructors" // warning : declaration requires a global destructor // similar to above, not sure what the exact difference it.
59 #pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness //
61 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning : zero as null pointer constant // some standard header variations use #define NULL 0
64 #pragma clang diagnostic ignored "-Wcomma" // warning : possible misuse of comma operator here //
67 #pragma clang diagnostic ignored "-Wreserved-id-macro" // warning : macro name is a reserved identifier //
70 #pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double.
73 #pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
74 #pragma GCC diagnostic ignore
[all...]

Completed in 90 milliseconds

123