Searched defs:lib (Results 26 - 50 of 117) sorted by relevance

12345

/external/python/cpython3/Lib/ctypes/test/
H A Dtest_funcptr.py11 lib = CDLL(_ctypes_test.__file__) variable
97 strchr = lib.my_strchr
104 strtok = lib.my_strtok
H A Dtest_stringptr.py7 lib = CDLL(_ctypes_test.__file__) variable
47 strchr = lib.my_strchr
/external/python/cpython3/Python/
H A Ddynload_hpux.c23 shl_t lib; local
33 lib = shl_load(pathname, flags, 0);
35 if (lib == NULL) {
58 if (shl_findsym(&lib, funcname, TYPE_UNDEFINED, (void *) &p) == -1) {
59 shl_unload(lib);
/external/tensorflow/tensorflow/contrib/rnn/ops/
H A Dlstm_ops_test.cc20 #include "tensorflow/core/lib/core/status_test_util.h"
21 #include "tensorflow/core/lib/strings/strcat.h"
30 auto* lib = TF_LoadLibrary( local
36 TF_DeleteLibraryHandle(lib);
/external/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp56 DynamicLibrary lib = DynamicLibrary::getPermanentLibrary(i->c_str(), &err); local
57 if (!lib.isValid()) {
64 (const char *) lib.getAddressOfSymbol("clang_analyzerAPIVersionString");
72 (RegisterCheckersFn) (intptr_t) lib.getAddressOfSymbol(
/external/clang/test/Lexer/
H A Dcxx0x_keyword_as_cxx98.cpp7 namespace lib { namespace
/external/compiler-rt/test/asan/TestCases/Posix/
H A Ddlclose-test.cc51 void *lib = dlopen(path.c_str(), RTLD_NOW); local
52 if (!lib) {
56 fun_t *get = (fun_t*)dlsym(lib, "get_address_of_static_var");
68 if (dlclose(lib)) {
/external/compiler-rt/test/cfi/cross-dso/
H A Dshadow_is_read_only.cpp59 const char *lib = argc > 2 ? argv[2] : nullptr; local
70 void *handle = dlopen(lib, RTLD_NOW);
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.c86 struct util_dl_library *lib; local
104 lib = util_dl_open(path);
105 if (lib) {
106 return lib;
H A Dpipe_loader_sw.c45 struct util_dl_library *lib; member in struct:pipe_loader_sw_device
103 sdev->lib = pipe_loader_find_module(&sdev->base, PIPE_SEARCH_DIR);
104 if (!sdev->lib)
108 util_dl_get_proc_address(sdev->lib, "swrast_driver_descriptor");
111 util_dl_close(sdev->lib);
112 sdev->lib = NULL;
124 if (sdev->lib)
125 util_dl_close(sdev->lib);
276 if (sdev->lib)
277 util_dl_close(sdev->lib);
[all...]
/external/python/cpython2/Tools/ssl/
H A Dmake_ssl_data.py56 lib = error_libraries[_ssl.lib_codes_to_names[libnum]] variable
57 libcode = lib[0] # e.g. ERR_LIB_PEM
58 errcode = lib[1] + errname # e.g. SSL_R_BAD_SSL_SESSION_ID_LENGTH
/external/python/cpython3/Tools/ssl/
H A Dmake_ssl_data.py56 lib = error_libraries[_ssl.lib_codes_to_names[libnum]] variable
57 libcode = lib[0] # e.g. ERR_LIB_PEM
58 errcode = lib[1] + errname # e.g. SSL_R_BAD_SSL_SESSION_ID_LENGTH
/external/tensorflow/tensorflow/python/profiler/
H A Dprofile_context_test.py31 from tensorflow.python.profiler.internal import model_analyzer_testlib as lib namespace
44 x = lib.BuildFullModel()
64 with lib.ProfilerFromFile(
72 x = lib.BuildFullModel()
93 x = lib.BuildFullModel()
H A Dprofiler_test.py31 from tensorflow.python.profiler.internal import model_analyzer_testlib as lib namespace
49 r = lib.BuildFullModel()
112 r1, r2, r3 = lib.BuildSplitableModel()
126 self.assertNotEqual(lib.SearchTFProfNode(pb1, 'DW'), None)
127 self.assertEqual(lib.SearchTFProfNode(pb1, 'DW2'), None)
128 self.assertEqual(lib.SearchTFProfNode(pb1, 'add'), None)
138 self.assertNotEqual(lib.SearchTFProfNode(pb2, 'DW'), None)
139 self.assertNotEqual(lib.SearchTFProfNode(pb2, 'DW2'), None)
140 self.assertEqual(lib.SearchTFProfNode(pb2, 'add'), None)
150 self.assertNotEqual(lib
[all...]
/external/autotest/site_utils/
H A Dtest_droid.py24 import chromite.lib.terminal # pylint: disable=unused-import namespace
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dstress_dtls.c81 int lib; local
82 for (lib = 0; lib < num_libs; lib++) {
84 snprintf(buf, sizeof(buf), "%s-f%d.so", argv[0], lib);
90 snprintf(buf, sizeof(buf), "f%d", lib);
91 Functions[lib] = (f_t)dlsym(handle, buf);
92 if (!Functions[lib]) {
96 fprintf(stderr, "LIB[%03d] %s: %p\n", lib, buf, Functions[lib]);
[all...]
/external/icu/icu4c/source/tools/icuinfo/
H A Dicuinfo.cpp159 const char *lib = uplug_getLibraryName(plug, &libStatus); local
170 (U_SUCCESS(libStatus)?(lib!=NULL?lib:"(null)"):u_errorName(libStatus)),
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
H A DModifier.java18 String lib; field in class:Modifier
20 private Modifier(String lib) { argument
21 this.lib = lib;
25 * @return the lib
28 return lib;
/external/llvm/bindings/python/llvm/
H A Ddisassembler.py30 lib = get_library() variable
52 f = getattr(lib, "LLVMInitialize" + tgt + initializer)
76 ptr = lib.LLVMCreateDisasm(c_char_p(triple), c_void_p(None), c_int(0),
82 LLVMObject.__init__(self, ptr, disposer=lib.LLVMDisasmDispose)
104 result = lib.LLVMDisasmInstruction(self, buf, c_uint64(len(source)),
132 result = lib.LLVMDisasmInstruction(self, b,
145 if not lib.LLVMSetDisasmOptions(self, options):
170 register_library(lib)
/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dgraph_mgr.h30 #include "tensorflow/core/lib/core/refcount.h"
113 FunctionLibraryRuntime* lib = nullptr; // not owned. member in struct:tensorflow::GraphMgr::ExecutionUnit
/external/tensorflow/tensorflow/core/kernels/
H A Dfunction_ops.cc234 FunctionLibraryRuntime* lib = ctx->function_library(); variable
235 OP_REQUIRES_ASYNC(ctx, lib != nullptr,
241 ctx, lib->Instantiate(kGradientOp, AttrSlice(def()), &handle), done);
256 lib->Run(opts, handle, args, rets, [ctx, done, rets](const Status& status) {
301 FunctionLibraryRuntime* lib = ctx->function_library(); variable
302 OP_REQUIRES_ASYNC(ctx, lib != nullptr,
310 lib->Instantiate(func_.name(), AttrSlice(&attr_values),
320 opts.source_device = lib->device()->name();
331 lib->Run(opts, handle, args, rets, [rets, done, ctx](const Status& status) {
/external/tensorflow/tensorflow/python/profiler/internal/
H A Drun_metadata_test.py37 from tensorflow.python.profiler.internal import model_analyzer_testlib as lib namespace
89 x = lib.BuildFullModel()
179 mm_node = lib.SearchTFProfNode(
/external/turbine/javatests/com/google/turbine/deps/
H A DAbstractTransitiveTest.java57 ImmutableList.of(Paths.get(System.getProperty("java.home")).resolve("lib/rt.jar"));
62 private final Path lib; field in class:AbstractTransitiveTest.SourceBuilder
66 lib = temporaryFolder.newFolder().toPath();
70 Path path = lib.resolve(name);
/external/chromium-trace/catapult/systrace/atrace_helper/jni/
H A Dlibmemtrack_wrapper.cc37 void Import(T** func, void* lib, const char* name) { argument
38 *(reinterpret_cast<void**>(func)) = dlsym(lib, name);
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
H A DAnalyseJavaSymbolSolver060Test.java48 private static final File lib = adaptPath(new File(root + "/lib")); field in class:AnalyseJavaSymbolSolver060Test
58 combinedTypeSolver.add(new JarTypeSolver(lib + "/guava-21.0.jar"));
59 combinedTypeSolver.add(new JarTypeSolver(lib + "/javaparser-core-3.3.0.jar"));
60 combinedTypeSolver.add(new JarTypeSolver(lib + "/javaslang-2.0.3.jar"));
61 combinedTypeSolver.add(new JarTypeSolver(lib + "/javassist-3.19.0-GA.jar"));

Completed in 4300 milliseconds

12345