/third_party/elfutils/backends/ |
H A D | aarch64_corenote.c | 110 #define AARCH64_HWBP_REG(KIND, N) \ 112 .name = "DBG" KIND "VR" #N "_EL1", .type = ELF_T_XWORD, .format = 'x', \ 116 .name = "DBG" KIND "CR" #N "_EL1", .type = ELF_T_WORD, .format = 'x', \ 120 #define AARCH64_BP_WP_GROUP(KIND, NAME) \ 129 AARCH64_HWBP_REG(KIND, 0), \ 130 AARCH64_HWBP_REG(KIND, 1), \ 131 AARCH64_HWBP_REG(KIND, 2), \ 132 AARCH64_HWBP_REG(KIND, 3), \ 133 AARCH64_HWBP_REG(KIND, 4), \ 134 AARCH64_HWBP_REG(KIND, [all...] |
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_idet_init.c | 28 #define FUNC_MAIN_DECL(KIND, SPAN) \ 29 int ff_idet_filter_line_##KIND(const uint8_t *a, const uint8_t *b, \ 31 static int idet_filter_line_##KIND(const uint8_t *a, const uint8_t *b, \ 37 sum += ff_idet_filter_line_##KIND(a, b, c, w); \ 44 #define FUNC_MAIN_DECL_16bit(KIND, SPAN) \ 45 int ff_idet_filter_line_16bit_##KIND(const uint16_t *a, const uint16_t *b, \ 47 static int idet_filter_line_16bit_##KIND(const uint16_t *a, const uint16_t *b, \ 53 sum += ff_idet_filter_line_16bit_##KIND(a, b, c, w); \
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | __main__.py | 23 from c_parser.info import KIND namespace 34 KIND.TYPEDEF, 35 KIND.STRUCT, 36 KIND.UNION, 37 KIND.ENUM, 38 KIND.FUNCTION, 39 KIND.VARIABLE, 40 KIND.STATEMENT, 52 KIND.is_type_decl, 61 (lambda kind: kind is KIND [all...] |
H A D | analyze.py | 2 KIND, 69 if decl.kind is KIND.STRUCT or decl.kind is KIND.UNION: 101 if decl.kind is KIND.ENUM: 104 if decl.kind is KIND.VARIABLE: 106 elif decl.kind is KIND.FUNCTION: 108 elif decl.kind is KIND.TYPEDEF: 110 elif decl.kind is KIND.STRUCT or decl.kind is KIND.UNION: 263 if decl.kind is KIND [all...] |
H A D | __init__.py | 5 KIND, 38 kinds = KIND.DECLS if kinds is None else (KIND.DECLS & set(kinds))
|
H A D | info.py | 8 KIND, 61 if item.kind is KIND.ENUM: 96 elif item.kind is KIND.STRUCT or item.kind is KIND.UNION:
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _analyzer.py | 6 KIND, 63 KINDS = frozenset((*KIND.TYPES, KIND.VARIABLE)) 141 if decl.kind in (KIND.STRUCT, KIND.UNION): 162 if decl.kind in (KIND.STRUCT, KIND.UNION): 164 elif decl.kind is KIND.ENUM: 214 elif decl.kind is KIND.TYPEDEF: 216 elif decl.kind is KIND [all...] |
H A D | __main__.py | 18 from c_parser.info import KIND namespace 169 if decl.kind in (KIND.STRUCT, KIND.UNION): 184 if not KIND.is_type_decl(decl.kind): 238 parser.add_argument('--kinds', action='append', metavar='KIND[,...]') 249 parser.error(f'expected KIND to be one of {sorted(_capi.KINDS)}, got {kind!r}')
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | info.py | 23 class KIND(enum.Enum): class 66 raise TypeError(f'expected KIND, got {kind!r}') 74 raise TypeError(f'expected KIND, got {kind!r}') 80 raise TypeError(f'expected KIND, got {kind!r}') 117 KIND._TYPE_DECLS_BY_PRIORITY = [ 119 KIND.TYPEDEF, 120 KIND.STRUCT, 121 KIND.UNION, 122 KIND.ENUM, 124 KIND [all...] |
H A D | __main__.py | 22 from .info import KIND namespace 83 if kind is KIND.FUNCTION: 91 elif kind is KIND.VARIABLE: 93 elif kind is KIND.STRUCT or kind is KIND.UNION: 106 elif kind is KIND.ENUM: 120 elif kind is KIND.TYPEDEF: 122 elif kind == KIND.STATEMENT:
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-handler-gen.cc | 236 #define ELEMENTS_KINDS_CASE(KIND) KIND, in DispatchByElementsKind() 241 #define ELEMENTS_KINDS_CASE(KIND) Label if_##KIND(this); in DispatchByElementsKind() 246 #define ELEMENTS_KINDS_CASE(KIND) &if_##KIND, in DispatchByElementsKind() 257 #define ELEMENTS_KINDS_CASE(KIND) \ in DispatchByElementsKind() 258 BIND(&if_##KIND); \ in DispatchByElementsKind() 261 IsAnyNonextensibleElementsKindUnchecked(KIND)) { \ in DispatchByElementsKind() 265 IsTypedArrayOrRabGsabTypedArrayElementsKind(KIND)) { \ in DispatchByElementsKind() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | ARMTargetParser.h | 118 #define ARM_FPU(NAME, KIND, VERSION, NEON_SUPPORT, RESTRICTION) KIND, 175 #define ARM_FPU(NAME, KIND, VERSION, NEON_SUPPORT, RESTRICTION) \ 176 {NAME, sizeof(NAME) - 1, KIND, VERSION, NEON_SUPPORT, RESTRICTION},
|
H A D | Compiler.h | 480 #define LLVM_NO_SANITIZE(KIND) __attribute__((no_sanitize(KIND))) 482 #define LLVM_NO_SANITIZE(KIND)
|
/third_party/node/deps/v8/src/compiler/ |
H A D | machine-operator.cc | 959 #define LOAD_TRANSFORM_KIND(TYPE, KIND) \ 960 struct KIND##LoadTransform##TYPE##Operator final \ 962 KIND##LoadTransform##TYPE##Operator() \ 965 MemoryAccessKind::k##KIND == MemoryAccessKind::kProtected \ 968 #KIND "LoadTransform", 2, 1, 1, 1, 1, 0, \ 969 LoadTransformParameters{MemoryAccessKind::k##KIND, \ 972 KIND##LoadTransform##TYPE##Operator k##KIND##LoadTransform##TYPE; 1468 #define LOAD_TRANSFORM_KIND(TYPE, KIND) \ in LoadTransform() 1469 if (kind == MemoryAccessKind::k##KIND in LoadTransform() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Compiler.h | 450 #define LLVM_NO_SANITIZE(KIND) __attribute__((no_sanitize(KIND))) 452 #define LLVM_NO_SANITIZE(KIND)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-dlltool/ |
H A D | DlltoolDriver.cpp | 42 #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \ 43 {X1, X2, X10, X11, OPT_##ID, llvm::opt::Option::KIND##Class, \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/ |
H A D | Dwarf.cpp | 25 #define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \ in TagString() 34 #define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \ in getTag() 44 #define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \ in TagVersion() 55 #define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \ in TagVendor()
|
/third_party/python/Tools/c-analyzer/c_parser/parser/ |
H A D | _info.py | 3 from ..info import KIND, ParsedItem, FileInfo namespace 119 kind = KIND._from_raw(kind)
|
/third_party/python/Include/cpython/ |
H A D | unicodeobject.h | 766 /* Prepare the buffer to have at least the kind KIND. 771 #define _PyUnicodeWriter_PrepareKind(WRITER, KIND) \ 772 (assert((KIND) != PyUnicode_WCHAR_KIND), \ 773 (KIND) <= (WRITER)->kind \ 775 : _PyUnicodeWriter_PrepareKindInternal((WRITER), (KIND)))
|
/third_party/vk-gl-cts/external/amber/src/kokoro/windows-msvc-2017-debug/ |
H A D | build.bat | 11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
/third_party/vk-gl-cts/external/amber/src/kokoro/windows-msvc-2017-release/ |
H A D | build.bat | 11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2013-release/ |
H A D | build.bat | 11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2015-release/ |
H A D | build.bat | 11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2017-debug/ |
H A D | build.bat | 11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2017-release/ |
H A D | build.bat | 11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|