| /external/libpng/scripts/ |
| D | checksym.awk | 1 #!/bin/awk -f 3 # Check a list of symbols against the master definition 6 # awk -f checksym.awk official-def list-to-check 8 # Output is a file in the current directory called 'symbols.new', 19 official[1] = "" # defined symbols from master file 20 symbol[1] = "" # defined symbols from png.h 21 removed[1] = "" # removed symbols from png.h 25 missing = "error"# log an error on missing symbols 26 of="symbols.new" # default to a fixed name 52 # This allows the master file to control how missing symbols [all …]
|
| D | symbols.c | 2 /* symbols.c - find all exported symbols 4 * Copyright (c) 2011-2014 Glenn Randers-Pehrson 11 /* NOTE: making 'symbols.chk' checks both that the exported 12 * symbols in the library don't change and (implicitly) that
|
| /external/mesa3d/bin/ |
| D | symbols-check.py | 8 # This list contains symbols that _might_ be exported for some platforms 60 List all the (non platform-specific) symbols exported by the library 63 symbols = [] 65 output = subprocess.check_output([nm, '-gP', lib], 78 symbols.append(symbol_name) 79 return symbols 84 List all the (non platform-specific) symbols exported by the library 87 symbols = [] 92 # The lines with the symbols are made of at least 4 columns; see details below 104 # De-mangle symbols [all …]
|
| /external/tensorflow/tensorflow/tools/def_file_filter/ |
| D | def_file_filter.py.tpl | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 """def_file_filter.py - tool to filter a windows def file. 18 The def file can be used to export symbols from the tensorflow dll to enable 21 Because the linker allows only 64K symbols to be exported per dll 22 we filter the symbols down to the essentials. The regular expressions 39 DUMPBIN_CMD = "\"{}\" /SYMBOLS".format("%{dumpbin_bin_path}") 77 # can implicitly link against the DLL if they use one of the variables exported 93 --symbols $(location //tensorflow/tools/def_file_filter:symbols_pybind) 94 --lib_paths_file $(location :pybind_symbol_target_libs_file) 98 parser.add_argument("--input", type=filename_list, [all …]
|
| /external/cronet/third_party/libc++/src/docs/DesignDocs/ |
| D | VisibilityMacros.rst | 8 .. _visibility-macros: 15 visibility and inlining characteristics of the symbols they are applied to. 19 type_visibility to export RTTI and other type-specific information. Note that 21 type-specific attributes. The only exception are enums, which GCC always gives 28 Mark a symbol as hidden so it will not be exported from shared libraries. 32 of the libc++ library, type information and other symbols. On Windows, 37 Mark a symbol as being exported by the libc++ library, but allow it to be 38 overridden locally. On non-Windows, this is equivalent to `_LIBCPP_FUNC_VIS`. 53 Historical predecessor of ``_LIBCPP_HIDE_FROM_ABI`` -- please use 59 maintain ABI compatibility for symbols that have been historically exported [all …]
|
| /external/libcxx/docs/DesignDocs/ |
| D | VisibilityMacros.rst | 13 visibility and inlining characteristics of the symbols they are applied to. 19 Mark a symbol as hidden so it will not be exported from shared libraries. 22 Mark a symbol as being exported by the libc++ library. This attribute must 23 be applied to the declaration of all functions exported by the libc++ dylib. 26 Mark a symbol as being exported by the libc++ library. This attribute may 32 Mark a symbol as being exported by the libc++ library, but allow it to be 33 overridden locally. On non-Windows, this is equivalent to `_LIBCPP_FUNC_VIS`. 50 maintain ABI compatibility for symbols that have been historically exported 56 building libc++), the macro always marks symbols as internal so that programs 57 built using new libc++ headers stop relying on symbols that are removed from [all …]
|
| /external/libdrm/ |
| D | symbols-check.py | 8 # This list contains symbols that _might_ be exported for some platforms 24 List all the (non platform-specific) symbols exported by the library 26 symbols = [] 28 output = subprocess.check_output([nm, '-gP', lib], 41 symbols.append(symbol_name) 43 return symbols 48 parser.add_argument('--symbols-file', 51 help='path to file containing symbols') 52 parser.add_argument('--lib', 56 parser.add_argument('--nm', [all …]
|
| /external/compiler-rt/cmake/Modules/ |
| D | SanitizerUtils.cmake | 7 # Create a target "<name>-<arch>-symbols" that would generate the list of 8 # symbols that need to be exported from sanitizer runtime "<name>". Function 9 # interceptors are exported automatically, user can also provide files with 10 # symbol names that should be exported as well. 14 # EXTRA <files with extra symbols to export>) 22 set(target_name ${name}-${arch}) 23 set(stamp ${CMAKE_CURRENT_BINARY_DIR}/${target_name}.syms-stamp) 26 list(APPEND extra_args "--extra" ${arg}) 32 COMMAND ${CMAKE_COMMAND} -E touch ${stamp} 35 COMMENT "Generating exported symbols for ${target_name}" [all …]
|
| /external/llvm/include/llvm/ExecutionEngine/ |
| D | JITSymbolFlags.h | 1 //===------ JITSymbolFlags.h - Flags for symbols in the JIT -----*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 10 // Symbol flags for symbols in the JIT (e.g. weak, exported). 12 //===----------------------------------------------------------------------===// 22 /// @brief Flags for symbols in the JIT. 26 Exported = 1U << 1 enumerator 51 /// @brief Base class for symbols in the JIT. 63 return (Flags & JITSymbolFlags::Exported) == JITSymbolFlags::Exported; in isExported() 71 Flags |= JITSymbolFlags::Exported; in flagsFromGlobalValue() 81 Flags |= JITSymbolFlags::Exported; in flagsFromObjectSymbol()
|
| D | RTDyldMemoryManager.h | 1 //===-- RTDyldMemoryManager.cpp - Memory manager for MC-JIT -----*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 18 #include "llvm-c/ExecutionEngine.h" 82 /// Legacy symbol lookup - DEPRECATED! Please override findSymbol instead. 85 /// It is used to resolve symbols during module linking. 91 /// or variable. It is used to resolve symbols during module linking. 95 /// a strong, exported symbol, consistent with historical treatment by 100 /// necessary for RuntimeDyld to correctly handle weak and non-exported symbols. 103 JITSymbolFlags::Exported); in findSymbol() [all …]
|
| /external/deqp-deps/SPIRV-Tools/include/spirv-tools/ |
| D | linker.hpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 32 // All exported symbols are kept when creating a library, whereas they will 51 // Returns whether to allow for imported symbols to have no corresponding 52 // exported symbols 55 // Sets whether to allow for imported symbols to have no corresponding 56 // exported symbols 73 // Links one or more SPIR-V modules into a new SPIR-V module. That is, combine 74 // several SPIR-V modules into one, resolving link dependencies between them. 85 // * Some imported symbols did not have an exported counterpart;
|
| /external/angle/third_party/spirv-tools/src/include/spirv-tools/ |
| D | linker.hpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 32 // All exported symbols are kept when creating a library, whereas they will 51 // Returns whether to allow for imported symbols to have no corresponding 52 // exported symbols 55 // Sets whether to allow for imported symbols to have no corresponding 56 // exported symbols 73 // Links one or more SPIR-V modules into a new SPIR-V module. That is, combine 74 // several SPIR-V modules into one, resolving link dependencies between them. 85 // * Some imported symbols did not have an exported counterpart;
|
| /external/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/ |
| D | linker.hpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 32 // All exported symbols are kept when creating a library, whereas they will 51 // Returns whether to allow for imported symbols to have no corresponding 52 // exported symbols 55 // Sets whether to allow for imported symbols to have no corresponding 56 // exported symbols 73 // Links one or more SPIR-V modules into a new SPIR-V module. That is, combine 74 // several SPIR-V modules into one, resolving link dependencies between them. 85 // * Some imported symbols did not have an exported counterpart;
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
| D | RTDyldMemoryManager.h | 1 //===-- RTDyldMemoryManager.cpp - Memory manager for MC-JIT -----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 16 #include "llvm-c/ExecutionEngine.h" 81 /// Legacy symbol lookup - DEPRECATED! Please override findSymbol instead. 84 /// It is used to resolve symbols during module linking. 90 /// or variable. It is used to resolve symbols during module linking. 94 /// a strong, exported symbol, consistent with historical treatment by 99 /// necessary for RuntimeDyld to correctly handle weak and non-exported symbols. [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/ |
| D | RTDyldMemoryManager.h | 1 //===-- RTDyldMemoryManager.cpp - Memory manager for MC-JIT -----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 16 #include "llvm-c/ExecutionEngine.h" 81 /// Legacy symbol lookup - DEPRECATED! Please override findSymbol instead. 84 /// It is used to resolve symbols during module linking. 90 /// or variable. It is used to resolve symbols during module linking. 94 /// a strong, exported symbol, consistent with historical treatment by 99 /// necessary for RuntimeDyld to correctly handle weak and non-exported symbols. [all …]
|
| D | JITSymbol.h | 1 //===- JITSymbol.h - JIT symbol abstraction ---------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 73 /// Flags for symbols in the JIT. 85 Exported = 1U << 4, enumerator 92 /// Default-construct a JITSymbolFlags instance. 111 /// Bitwise AND-assignment for FlagNames. 117 /// Bitwise OR-assignment for FlagNames. 143 /// Returns true if the Exported flag is set. [all …]
|
| /external/python/cpython3/Modules/expat/ |
| D | pyexpatns.h | 1 /* Copyright (c) 2005-2006 ActiveState Software Inc. 3 * Namespace all expat exported symbols to avoid dynamic loading symbol 7 * - you embed Python in some app 8 * - the app dynamically loads libexpat of version X 9 * - the embedded Python imports pyexpat (which was built against 11 * --> pyexpat gets the expat symbols from the already loaded and *older* 24 * Prefix all exported symbols with "PyExpat_". This is similar to 28 * The list of relevant exported symbols can be had with this command: 31 | grep -v " [a-zBUA] " \ 32 | grep -v "_fini\|_init\|initpyexpat" [all …]
|
| /external/python/cpython2/Modules/expat/ |
| D | pyexpatns.h | 1 /* Copyright (c) 2005-2006 ActiveState Software Inc. 3 * Namespace all expat exported symbols to avoid dynamic loading symbol 7 * - you embed Python in some app 8 * - the app dynamically loads libexpat of version X 9 * - the embedded Python imports pyexpat (which was built against 11 * --> pyexpat gets the expat symbols from the already loaded and *older* 24 * Prefix all exported symbols with "PyExpat_". This is similar to 28 * The list of relevant exported symbols can be had with this command: 31 | grep -v " [a-zBUA] " \ 32 | grep -v "_fini\|_init\|initpyexpat" [all …]
|
| /external/icu/libicu/cts_headers/ |
| D | number_patternstring.h | 37 // Exported as U_I18N_API because it is a public member field of exported ParsedSubpatternInfo 43 // Exported as U_I18N_API because it is a public member field of exported ParsedPatternInfo 74 // Exported as U_I18N_API because it is needed for the unit test PatternStringTest 81 : state(this->pattern), currentSubpattern(nullptr) {} in ParsedPatternInfo() 125 /** Returns the next code point, or -1 if string is too short. */ 128 /** Returns the code point after the next code point, or -1 if string is too short. */ 190 * The LDML decimal format pattern (Excel-style pattern) to parse. 256 * exported by NumberPropertyMapper (package private) so it is in 260 * The roundingIncrement to be checked. Must be non-zero. 284 …* using generic placeholders in the pattern, you use the corresponding locale-specific characters … [all …]
|
| /external/cronet/third_party/icu/source/i18n/ |
| D | number_patternstring.h | 37 // Exported as U_I18N_API because it is a public member field of exported ParsedSubpatternInfo 43 // Exported as U_I18N_API because it is a public member field of exported ParsedPatternInfo 74 // Exported as U_I18N_API because it is needed for the unit test PatternStringTest 81 : state(this->pattern), currentSubpattern(nullptr) {} in ParsedPatternInfo() 125 /** Returns the next code point, or -1 if string is too short. */ 128 /** Returns the code point after the next code point, or -1 if string is too short. */ 190 * The LDML decimal format pattern (Excel-style pattern) to parse. 256 * exported by NumberPropertyMapper (package private) so it is in 260 * The roundingIncrement to be checked. Must be non-zero. 284 …* using generic placeholders in the pattern, you use the corresponding locale-specific characters … [all …]
|
| /external/icu/icu4c/source/i18n/ |
| D | number_patternstring.h | 37 // Exported as U_I18N_API because it is a public member field of exported ParsedSubpatternInfo 43 // Exported as U_I18N_API because it is a public member field of exported ParsedPatternInfo 74 // Exported as U_I18N_API because it is needed for the unit test PatternStringTest 81 : state(this->pattern), currentSubpattern(nullptr) {} in ParsedPatternInfo() 125 /** Returns the next code point, or -1 if string is too short. */ 128 /** Returns the code point after the next code point, or -1 if string is too short. */ 190 * The LDML decimal format pattern (Excel-style pattern) to parse. 256 * exported by NumberPropertyMapper (package private) so it is in 260 * The roundingIncrement to be checked. Must be non-zero. 284 …* using generic placeholders in the pattern, you use the corresponding locale-specific characters … [all …]
|
| /external/boringssl/src/util/ |
| D | read_symbols.go | 18 // the .a files, reads the list of symbols in that object file. 43 outFlag = flag.String("out", "-", "File to write output symbols") 44 …objFileFormat = flag.String("obj-file-format", defaultObjFileFormat(runtime.GOOS), "Object file fo… 57 // cross-compile from an unsupported platform to a supported platform by 73 …printAndExit("Usage: %s [-out OUT] [-obj-file-format FORMAT] ARCHIVE_FILE [ARCHIVE_FILE [...]]", o… 78 if *outFlag != "-" { 87 var symbols []string 104 printAndExit("Error listing symbols from %q in %q: %s", name, archive, err) 109 symbols = append(symbols, s) 115 sort.Strings(symbols) [all …]
|
| /external/cronet/third_party/boringssl/src/util/ |
| D | read_symbols.go | 18 // the .a files, reads the list of symbols in that object file. 43 outFlag = flag.String("out", "-", "File to write output symbols") 44 …objFileFormat = flag.String("obj-file-format", defaultObjFileFormat(runtime.GOOS), "Object file fo… 57 // cross-compile from an unsupported platform to a supported platform by 73 …printAndExit("Usage: %s [-out OUT] [-obj-file-format FORMAT] ARCHIVE_FILE [ARCHIVE_FILE [...]]", o… 78 if *outFlag != "-" { 87 var symbols []string 104 printAndExit("Error listing symbols from %q in %q: %s", name, archive, err) 109 symbols = append(symbols, s) 115 sort.Strings(symbols) [all …]
|
| /external/harfbuzz_ng/test/api/ |
| D | Makefile.am | 11 @$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib 13 @$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src libs 25 AM_CPPFLAGS = -DSRCDIR="\"$(srcdir)\"" -I$(top_srcdir)/src/ -I$(top_builddir)/src/ $(GLIB_CFLAGS) 28 EXTRA_DIST += hb-test.h hb-subset-test.h 34 test-aat-layout \ 35 test-baseline \ 36 test-base-minmax \ 37 test-be-glyph-advance \ 38 test-be-num-glyphs \ 39 test-blob \ [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| D | JITSymbol.cpp | 1 //===----------- JITSymbol.cpp - JITSymbol class implementation -----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 31 Flags |= JITSymbolFlags::Exported; in fromGlobalValue() 39 // Check for a linker-private-global-prefix on the symbol name, in which in fromGlobalValue() 40 // case it must be marked as non-exported. in fromGlobalValue() 42 const auto &DL = M->getDataLayout(); in fromGlobalValue() 46 Flags &= ~JITSymbolFlags::Exported; in fromGlobalValue() 54 auto L = S->linkage(); in fromSummary() [all …]
|