HomeSort by: relevance | last modified time | path
    Searched refs:fallthrough (Results 1 - 7 of 7) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/util/
compiler.h 81 * clang::fallthrough in the preprocessor fails in GCC. */
82 # define HAS_CLANG_FALLTHROUGH __has_cpp_attribute(clang::fallthrough)
89 #define FALLTHROUGH [[fallthrough]]
92 #define FALLTHROUGH [[clang::fallthrough]]
93 #elif __has_attribute(fallthrough)
95 #define FALLTHROUGH __attribute__((fallthrough))
97 #define FALLTHROUGH do { } while(0
    [all...]
  /xsrc/external/mit/xorgproto/dist/include/X11/
Xfuncproto.h 219 /* Mark a fallthrough in a switch statement as intentional
221 For older compilers/linters, pair with a fallthrough comment. */
223 #if __has_c_attribute(fallthrough)
224 #define _X_FALLTHROUGH [[fallthrough]]
225 #elif __has_attribute(fallthrough)
226 #define _X_FALLTHROUGH __attribute__((fallthrough))
  /xsrc/external/mit/libxcb/dist/src/
xcbint.h 45 #if __has_attribute(fallthrough)
46 # define XCB_ALLOW_FALLTHRU __attribute__ ((fallthrough));
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/
vtn_cfg.c 407 c->fallthrough = NULL;
437 if (cse->fallthrough) {
438 vtn_order_case(swtch, cse->fallthrough);
447 list_addtail(&cse->link, &cse->fallthrough->link);
460 /* This branch is actually a fallthrough */
461 vtn_assert(swcase->fallthrough == NULL ||
462 swcase->fallthrough == block->switch_case);
463 swcase->fallthrough = block->switch_case;
1047 /* Take fallthrough into account */
vtn_private.h 182 /* The fallthrough case, if any */
183 struct vtn_case *fallthrough; member in struct:vtn_case
  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/
vtn_cfg.c 301 if (cse->fallthrough) {
302 vtn_order_case(swtch, cse->fallthrough);
311 list_addtail(&cse->node.link, &cse->fallthrough->node.link);
402 vtn_fail_if(switch_case->fallthrough != NULL &&
403 switch_case->fallthrough != target_block->switch_case,
407 switch_case->fallthrough = target_block->switch_case;
1210 /* Take fallthrough into account */
vtn_private.h 204 /* The fallthrough case, if any */
205 struct vtn_case *fallthrough; member in struct:vtn_case

Completed in 11 milliseconds