Home
last modified time | relevance | path

Searched refs:library (Results 1 – 25 of 5544) sorted by relevance

12345678910>>...222

/external/grpc-grpc/src/ruby/ext/grpc/
Drb_grpc_imports.generated.c280 void grpc_rb_load_imports(HMODULE library) { in grpc_rb_load_imports() argument
281 …age_import = (grpc_compression_algorithm_is_message_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
282 …ream_import = (grpc_compression_algorithm_is_stream_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
283 …hm_parse_import = (grpc_compression_algorithm_parse_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
284 …ithm_name_import = (grpc_compression_algorithm_name_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
285 …evel_import = (grpc_compression_algorithm_for_level_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
286 …ptions_init_import = (grpc_compression_options_init_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
287 …import = (grpc_compression_options_enable_algorithm_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
288 …mport = (grpc_compression_options_disable_algorithm_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
289 …rt = (grpc_compression_options_is_algorithm_enabled_type) GetProcAddress(library, "grpc_compressio… in grpc_rb_load_imports()
[all …]
/external/deqp/framework/delibs/deutil/
DdeDynamicLibrary.c39 deDynamicLibrary* library = (deDynamicLibrary*)deCalloc(sizeof(deDynamicLibrary)); in deDynamicLibrary_open() local
40 if (!library) in deDynamicLibrary_open()
43 library->libHandle = dlopen(fileName, RTLD_LAZY); in deDynamicLibrary_open()
44 if (!library->libHandle) in deDynamicLibrary_open()
46 deFree(library); in deDynamicLibrary_open()
50 return library; in deDynamicLibrary_open()
53 void deDynamicLibrary_close (deDynamicLibrary* library) in deDynamicLibrary_close() argument
55 if (library && library->libHandle) in deDynamicLibrary_close()
56 dlclose(library->libHandle); in deDynamicLibrary_close()
57 deFree(library); in deDynamicLibrary_close()
[all …]
/external/llvm-project/llvm/bindings/python/llvm/
Dcore.py450 def register_library(library): argument
452 library.LLVMInitializeCore.argtypes = [PassRegistry]
453 library.LLVMInitializeCore.restype = None
455 library.LLVMInitializeTransformUtils.argtypes = [PassRegistry]
456 library.LLVMInitializeTransformUtils.restype = None
458 library.LLVMInitializeScalarOpts.argtypes = [PassRegistry]
459 library.LLVMInitializeScalarOpts.restype = None
461 library.LLVMInitializeObjCARCOpts.argtypes = [PassRegistry]
462 library.LLVMInitializeObjCARCOpts.restype = None
464 library.LLVMInitializeVectorization.argtypes = [PassRegistry]
[all …]
Dobject.py426 def register_library(library): argument
430 library.LLVMCreateObjectFile.argtypes = [MemoryBuffer]
431 library.LLVMCreateObjectFile.restype = c_object_p
433 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
435 library.LLVMGetSections.argtypes = [ObjectFile]
436 library.LLVMGetSections.restype = c_object_p
438 library.LLVMDisposeSectionIterator.argtypes = [c_object_p]
440 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p]
441 library.LLVMIsSectionIteratorAtEnd.restype = bool
443 library.LLVMMoveToNextSection.argtypes = [c_object_p]
[all …]
/external/llvm/bindings/python/llvm/
Dcore.py439 def register_library(library): argument
441 library.LLVMInitializeCore.argtypes = [PassRegistry]
442 library.LLVMInitializeCore.restype = None
444 library.LLVMInitializeTransformUtils.argtypes = [PassRegistry]
445 library.LLVMInitializeTransformUtils.restype = None
447 library.LLVMInitializeScalarOpts.argtypes = [PassRegistry]
448 library.LLVMInitializeScalarOpts.restype = None
450 library.LLVMInitializeObjCARCOpts.argtypes = [PassRegistry]
451 library.LLVMInitializeObjCARCOpts.restype = None
453 library.LLVMInitializeVectorization.argtypes = [PassRegistry]
[all …]
Dobject.py427 def register_library(library): argument
431 library.LLVMCreateObjectFile.argtypes = [MemoryBuffer]
432 library.LLVMCreateObjectFile.restype = c_object_p
434 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
436 library.LLVMGetSections.argtypes = [ObjectFile]
437 library.LLVMGetSections.restype = c_object_p
439 library.LLVMDisposeSectionIterator.argtypes = [c_object_p]
441 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p]
442 library.LLVMIsSectionIteratorAtEnd.restype = bool
444 library.LLVMMoveToNextSection.argtypes = [c_object_p]
[all …]
/external/python/cpython3/Doc/tools/
Dsusp-ignored.csv113 library/ast,,:upper,lower:upper
114 library/ast,,:step,lower:upper:step
115 library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
116 library/bisect,32,:hi,all(val >= x for val in a[i:hi])
117 library/bisect,42,:hi,all(val > x for val in a[i:hi])
118 library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
119 library/configparser,,:option,${section:option}
120 library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
121 library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
122 library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
[all …]
/external/swiftshader/src/Common/
DSharedLibrary.hpp28 void freeLibrary(void *library);
29 void *getProcAddress(void *library, const char *name);
38 void *library = getLibraryHandle(libraryPath.c_str()); in loadLibrary() local
40 if(library) in loadLibrary()
42 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary()
44 return library; in loadLibrary()
47 freeLibrary(library); in loadLibrary()
54 void *library = loadLibrary(libraryPath.c_str()); in loadLibrary() local
56 if(library) in loadLibrary()
58 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary()
[all …]
/external/swiftshader/src/System/
DSharedLibrary.hpp28 void freeLibrary(void *library);
29 void *getProcAddress(void *library, const char *name);
37 void *library = getLibraryHandle(libraryPath.c_str()); in loadLibrary() local
39 if(library) in loadLibrary()
41 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary()
43 return library; in loadLibrary()
46 freeLibrary(library); in loadLibrary()
53 void *library = loadLibrary(libraryPath.c_str()); in loadLibrary() local
55 if(library) in loadLibrary()
57 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary()
[all …]
/external/python/cpython2/Doc/tools/
Dsusp-ignored.csv50 library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
51 library/bisect,,:hi,all(val >= x for val in a[i:hi])
52 library/bisect,,:hi,all(val > x for val in a[i:hi])
53 library/cookie,,`,!#$%&'*+-.^_`|~
54 library/datetime,,:MM,
55 library/datetime,,:SS,
56 library/decimal,,:optional,"trailneg:optional trailing minus indicator"
57 library/difflib,,:ahi,a[alo:ahi]
58 library/difflib,,:bhi,b[blo:bhi]
59 library/difflib,,:i2,
[all …]
/external/dagger2/util/
Ddeploy-library.sh13 local library=$1
23 $library $pomfile
28 $(bazel_output_file $library) \
36 -Dfile=$(bazel_output_file $library) \
43 -Dfile=$(bazel_output_file $library) \
50 local library=$1
51 local output_file=bazel-bin/$library
53 output_file=bazel-genfiles/$library
56 echo "Could not find bazel output file for $library"
63 local library=$1
[all …]
/external/OpenCSD/decoder/docs/
Dbuild_libs.md4 @brief How to build the library and test programs and include the library in an application
9 The current makefiles and build projects support building the library on:
14 In addition to building the library from the project, the library may be installed into the standard
20 The library and test programs are built from the library `./build/<platform>` directory, where
34 …t_dir> to `builddir` for all build variants of the library. Using this only one variant of the lib…
39 `decoder/lib/linux<bit-variant>/<dbg|rel>` directories, allowing multiple variants of the library
49 - `DEBUG=1` : build the debug version of the library.
63 The makefile will scan the `ocsd_if_version.h` to get the library version numbers and use these
66 Main C++ library names:
67 - `libcstraced.so.M.m.p` : shared library containing the main C++ based decoder library
[all …]
/external/python/cpython2/Modules/
Dar_beos19 library=$2
24 if test -d $library
27 mkdir $library
29 if cp -p $* $library
32 if test -e $library/.tch
33 then rm $library/.tch
34 else echo tch > $library/.tch
40 if test -d $library
42 cd $library
58 mwld -xms -export pragma -nodup -o $1 $library/* $extralibs
[all …]
/external/oss-fuzz/projects/python3-libraries/
Dbuild.sh49 cp $SRC/python-library-fuzzers/python_coverage.h Python/
61 cd $SRC/python-library-fuzzers
64 cp $SRC/python-library-fuzzers/fuzzer-html $OUT/
65 cp $SRC/python-library-fuzzers/html.py $OUT/
68 cp $SRC/python-library-fuzzers/fuzzer-email $OUT/
69 cp $SRC/python-library-fuzzers/email.py $OUT/
72 cp $SRC/python-library-fuzzers/fuzzer-httpclient $OUT/
73 cp $SRC/python-library-fuzzers/httpclient.py $OUT/
76 cp $SRC/python-library-fuzzers/fuzzer-json $OUT/
77 cp $SRC/python-library-fuzzers/json.py $OUT/
[all …]
/external/exoplayer/tree/
Dcore_settings.gradle20 include modulePrefix + 'library'
21 include modulePrefix + 'library-common'
22 include modulePrefix + 'library-core'
23 include modulePrefix + 'library-dash'
24 include modulePrefix + 'library-extractor'
25 include modulePrefix + 'library-hls'
26 include modulePrefix + 'library-smoothstreaming'
27 include modulePrefix + 'library-ui'
46 project(modulePrefix + 'library').projectDir = new File(rootDir, 'library/all')
47 project(modulePrefix + 'library-common').projectDir = new File(rootDir, 'library/common')
[all …]
/external/freetype/src/base/
Dftglyph.c65 FT_Library library = FT_GLYPH( glyph )->library; in ft_bitmap_glyph_init() local
86 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap ); in ft_bitmap_glyph_init()
98 FT_Library library = bitmap_source->library; in ft_bitmap_glyph_copy() local
106 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap ); in ft_bitmap_glyph_copy()
114 FT_Library library = FT_GLYPH( glyph )->library; in ft_bitmap_glyph_done() local
117 FT_Bitmap_Done( library, &glyph->bitmap ); in ft_bitmap_glyph_done()
165 FT_Library library = FT_GLYPH( glyph )->library; in FT_DEFINE_GLYPH() local
178 error = FT_Outline_New( library, in FT_DEFINE_GLYPH()
198 FT_Outline_Done( FT_GLYPH( glyph )->library, &glyph->outline ); in ft_outline_glyph_done()
209 FT_Library library = FT_GLYPH( source )->library; in ft_outline_glyph_copy() local
[all …]
/external/deqp/external/openglcts/modules/common/
DglcConfigListEGL.cpp96 const eglw::Library& library = nativeDisplay->getLibrary(); in getDefaultEglConfigList() local
98 std::vector<eglw::EGLConfig> configs = eglu::getConfigs(library, display); in getDefaultEglConfigList()
99 bool supportFloatConfigs = eglu::hasExtension(library, display, "EGL_EXT_pixel_format_float"); in getDefaultEglConfigList()
100 bool supportYUVConfigs = eglu::hasExtension(library, display, "EGL_EXT_yuv_surface"); in getDefaultEglConfigList()
104 int id = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_CONFIG_ID); in getDefaultEglConfigList()
105 …deUint32 renderableBits = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_RENDERABLE_TYPE… in getDefaultEglConfigList()
106 deUint32 conformantBits = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_CONFORMANT); in getDefaultEglConfigList()
107 deInt32 redSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_RED_SIZE); in getDefaultEglConfigList()
108 deInt32 greenSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_GREEN_SIZE); in getDefaultEglConfigList()
109 deInt32 blueSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_BLUE_SIZE); in getDefaultEglConfigList()
[all …]
/external/rust/crates/clang-sys/src/
Dlink.rs29 pub fn $name(library: &mut super::SharedLibrary) {
30 let symbol = unsafe { library.library.get(stringify!($name).as_bytes()) }.ok();
31 library.functions.$name = match symbol {
87 library: libloading::Library,
93 fn new(library: libloading::Library, path: PathBuf) -> Self {
94 Self { library, path, functions: Functions::default() }
112 if self.library.get::<unsafe extern fn()>($fn).is_ok() {
146 Some(library) => Some(f(&library)),
199 let library = libloading::Library::new(&path).map_err(|e| { localVariable
207 let mut library = SharedLibrary::new(library?, path); localVariable
[all …]
/external/ImageMagick/
DMake.com51 $ define/nolog lnk$library sys$library:vaxcrtl
80 sys$library:freetype.olb/lib, -
81 sys$library:libjasper.olb/lib, -
82 sys$library:libjpeg.olb/lib, -
83 sys$library:libpng.olb/lib, -
84 sys$library:tiff.olb/lib, -
85 sys$library:libz.olb/lib, -
86 sys$library:libbz2.olb/lib, -
87 sys$library:libjbig.olb/lib
98 sys$library:libjasper.olb/lib
[all …]
/external/oboe/apps/fxlab/app/
DCMakeLists.txt4 # Sets the minimum version of CMake required to build the native library.
15 # Creates and names a library, sets it as either STATIC
20 add_library( # Sets the name of the library.
22 # Sets the library as a shared library.
38 # Searches for a specified prebuilt library and stores the path as a
40 # default, you only need to specify the name of the public NDK library
41 # you want to add. CMake verifies that the library exists before
46 # Specifies the name of the NDK library that
53 # Set the path to the Oboe library directory
56 # Add the Oboe library as a subproject. Since Oboe is an out-of-tree source library we must also
[all …]
/external/freetype/include/freetype/
Dftmodapi.h273 FT_Add_Module( FT_Library library,
300 FT_Get_Module( FT_Library library,
327 FT_Remove_Module( FT_Library library,
389 FT_Property_Set( FT_Library library,
452 FT_Property_Get( FT_Library library,
500 FT_Set_Default_Properties( FT_Library library );
528 FT_Reference_Library( FT_Library library );
592 FT_Done_Library( FT_Library library );
676 FT_Set_Debug_Hook( FT_Library library,
696 FT_Add_Default_Modules( FT_Library library );
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DNativeMethods.Generated.cs135 public NativeMethods(UnmanagedLibrary library) in NativeMethods() argument
137 this.grpcsharp_init = GetMethodDelegate<Delegates.grpcsharp_init_delegate>(library); in NativeMethods()
138 … this.grpcsharp_shutdown = GetMethodDelegate<Delegates.grpcsharp_shutdown_delegate>(library); in NativeMethods()
139 …grpcsharp_version_string = GetMethodDelegate<Delegates.grpcsharp_version_string_delegate>(library); in NativeMethods()
140 …tch_context_create = GetMethodDelegate<Delegates.grpcsharp_batch_context_create_delegate>(library); in NativeMethods()
141 …ata = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_initial_metadata_delegate>(library); in NativeMethods()
142 …ength = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_message_length_delegate>(library); in NativeMethods()
143 …er = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_message_to_buffer_delegate>(library); in NativeMethods()
144 …etMethodDelegate<Delegates.grpcsharp_batch_context_recv_status_on_client_status_delegate>(library); in NativeMethods()
145 …tMethodDelegate<Delegates.grpcsharp_batch_context_recv_status_on_client_details_delegate>(library); in NativeMethods()
[all …]
/external/glide/
D.gitignore6 library/bin/*
7 library/gen/*
8 library/.gradle
9 library/.settings
10 library/target
11 library/install_dependencies/maven-android-sdk-deployer
28 /library/.classpath
29 /library/.project
/external/webrtc/third_party/abseil-cpp/
DREADME.md3 The repository contains the Abseil C++ library code. Abseil is an open-source
5 standard library.
19 Abseil is an open-source collection of C++ library code designed to augment
20 the C++ standard library. The Abseil library code is collected from Google's
27 clearly within the library code we provide you.
29 Abseil is not meant to be a competitor to the standard library; we've
56 Abseil contains the following C++ library components:
59 <br /> The `base` library contains initialization code and other code which
61 other code (other than the C++ standard library).
63 <br /> The `algorithm` library contains additions to the C++ `<algorithm>`
[all …]
/external/openscreen/third_party/abseil/src/
DREADME.md3 The repository contains the Abseil C++ library code. Abseil is an open-source
5 standard library.
19 Abseil is an open-source collection of C++ library code designed to augment
20 the C++ standard library. The Abseil library code is collected from Google's
27 clearly within the library code we provide you.
29 Abseil is not meant to be a competitor to the standard library; we've
56 Abseil contains the following C++ library components:
59 <br /> The `base` library contains initialization code and other code which
61 other code (other than the C++ standard library).
63 <br /> The `algorithm` library contains additions to the C++ `<algorithm>`
[all …]

12345678910>>...222