Home
last modified time | relevance | path

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

12345678910>>...159

/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/swiftshader/third_party/llvm-7.0/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/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.csv110 library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)],"
111 library/bisect,32,:hi,all(val >= x for val in a[i:hi])
112 library/bisect,42,:hi,all(val > x for val in a[i:hi])
113 library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
114 library/configparser,,:option,${section:option}
115 library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
116 library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
117 library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
118 library/datetime,,:MM,
119 library/datetime,,:SS,
[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/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/freetype/src/base/
Dftrfork.c51 FT_Raccess_Get_HeaderInfo( FT_Library library, in FT_Raccess_Get_HeaderInfo() argument
63 FT_UNUSED( library ); in FT_Raccess_Get_HeaderInfo()
185 FT_Raccess_Get_DataOffsets( FT_Library library, in FT_Raccess_Get_DataOffsets() argument
197 FT_Memory memory = library->memory; in FT_Raccess_Get_DataOffsets()
349 raccess_guess_apple_double( FT_Library library,
356 raccess_guess_apple_single( FT_Library library,
363 raccess_guess_darwin_ufs_export( FT_Library library,
370 raccess_guess_darwin_newvfs( FT_Library library,
377 raccess_guess_darwin_hfsplus( FT_Library library,
384 raccess_guess_vfat( FT_Library library,
[all …]
Dftglyph.c64 FT_Library library = FT_GLYPH( glyph )->library; in ft_bitmap_glyph_init() local
85 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap ); in ft_bitmap_glyph_init()
97 FT_Library library = bitmap_source->library; in ft_bitmap_glyph_copy() local
105 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap ); in ft_bitmap_glyph_copy()
113 FT_Library library = FT_GLYPH( glyph )->library; in ft_bitmap_glyph_done() local
116 FT_Bitmap_Done( library, &glyph->bitmap ); in ft_bitmap_glyph_done()
164 FT_Library library = FT_GLYPH( glyph )->library; in FT_DEFINE_GLYPH() local
177 error = FT_Outline_New( library, in FT_DEFINE_GLYPH()
197 FT_Outline_Done( FT_GLYPH( glyph )->library, &glyph->outline ); in ft_outline_glyph_done()
208 FT_Library library = FT_GLYPH( source )->library; in ft_outline_glyph_copy() local
[all …]
Dftobjs.c102 ft_open_face_internal( FT_Library library,
190 FT_Stream_New( FT_Library library, in FT_Stream_New() argument
201 if ( !library ) in FT_Stream_New()
207 memory = library->memory; in FT_Stream_New()
307 slot->library = driver->root.library; in ft_glyphslot_init()
773 FT_Library library; in FT_Load_Glyph() local
789 library = driver->root.library; in FT_Load_Glyph()
790 hinter = library->auto_hinter; in FT_Load_Glyph()
1419 FT_New_Face( FT_Library library, in FT_New_Face() argument
1435 return ft_open_face_internal( library, &args, face_index, aface, 1 ); in FT_New_Face()
[all …]
Dftlcdfil.c53 lcd_weights = slot->library->lcd_weights; in ft_lcd_padding()
54 lcd_filter_func = slot->library->lcd_filter_func; in ft_lcd_padding()
291 FT_Library_SetLcdFilterWeights( FT_Library library, in FT_Library_SetLcdFilterWeights() argument
294 if ( !library ) in FT_Library_SetLcdFilterWeights()
300 ft_memcpy( library->lcd_weights, weights, FT_LCD_FILTER_FIVE_TAPS ); in FT_Library_SetLcdFilterWeights()
301 library->lcd_filter_func = ft_lcd_filter_fir; in FT_Library_SetLcdFilterWeights()
310 FT_Library_SetLcdFilter( FT_Library library, in FT_Library_SetLcdFilter() argument
319 if ( !library ) in FT_Library_SetLcdFilter()
325 library->lcd_filter_func = NULL; in FT_Library_SetLcdFilter()
329 ft_memcpy( library->lcd_weights, in FT_Library_SetLcdFilter()
[all …]
Dftinit.c80 FT_Add_Default_Modules( FT_Library library ) in FT_Add_Default_Modules() argument
94 error = FT_Add_Module( library, *cur ); in FT_Add_Default_Modules()
112 FT_Set_Default_Properties( FT_Library library ) in FT_Set_Default_Properties() argument
175 ft_property_string_set( library, in FT_Set_Default_Properties()
185 FT_Set_Default_Properties( FT_Library library ) in FT_Set_Default_Properties() argument
187 FT_UNUSED( library ); in FT_Set_Default_Properties()
232 FT_Done_FreeType( FT_Library library ) in FT_Done_FreeType() argument
237 if ( !library ) in FT_Done_FreeType()
240 memory = library->memory; in FT_Done_FreeType()
243 FT_Done_Library( library ); in FT_Done_FreeType()
/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/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/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/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/freetype/include/freetype/
Dftmodapi.h274 FT_Add_Module( FT_Library library,
301 FT_Get_Module( FT_Library library,
328 FT_Remove_Module( FT_Library library,
392 FT_Property_Set( FT_Library library,
455 FT_Property_Get( FT_Library library,
503 FT_Set_Default_Properties( FT_Library library );
531 FT_Reference_Library( FT_Library library );
595 FT_Done_Library( FT_Library library );
634 FT_Set_Debug_Hook( FT_Library library,
654 FT_Add_Default_Modules( FT_Library library );
[all …]
/external/python/cpython2/Doc/library/
Dmsilib.rst126 …`FCICreateFile <https://msdn.microsoft.com/library?url=/library/en-us/devnotes/winprog/fcicreate.a…
127 `UuidCreate <https://msdn.microsoft.com/library?url=/library/en-us/rpc/rpc/uuidcreate.asp>`_
128 `UuidToString <https://msdn.microsoft.com/library?url=/library/en-us/rpc/rpc/uuidtostring.asp>`_
157 …`MSIDatabaseOpenView <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msidatabaseo…
158 …`MSIDatabaseCommit <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msidatabasecom…
159 …`MSIGetSummaryInformation <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msigets…
205 …`MsiViewExecute <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msiviewexecute.as…
206 …`MSIViewGetColumnInfo <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msiviewgetc…
207 … `MsiViewFetch <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msiviewfetch.asp>`_
208 …`MsiViewModify <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/msiviewmodify.asp>…
[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/freetype/builds/amiga/
Dsmakefile2 # Makefile for FreeType2 link library using Amiga SAS/C 6.58
111 # freetype library base
119 ftsystempure.o: src/base/ftsystem.c ## pure version for use in run-time library etc
123 ftdebugpure.o: src/base/ftdebug.c ## pure version for use in run-time library etc
126 # freetype library base extensions
162 # freetype library autofitter module
168 # freetype library PS hinting module
173 # freetype library PS support module
179 # freetype library PS glyph names module
185 # freetype library monochrome raster module
[all …]
/external/bcc/tools/
Dfunclatency.py83 library = None variable
86 library = parts[0] variable
87 libpath = BPF.find_library(library) or BPF.find_exe(library)
89 bail("can't resolve library %s" % library)
90 library = libpath variable
154 need_key = args.function or (library and not args.pid)
177 pid = '-1' if not library else 'tgid'
209 if not library:
214 b.attach_uprobe(name=library, sym_re=pattern, fn_name="trace_func_entry",
216 b.attach_uretprobe(name=library, sym_re=pattern,
[all …]
/external/deqp/framework/egl/
DegluGLFunctionLoader.cpp32 GLFunctionLoader::GLFunctionLoader (const eglw::Library& egl, const tcu::FunctionLibrary* library) in GLFunctionLoader() argument
34 , m_library (library) in GLFunctionLoader()
62 tcu::FunctionLibrary* library = DE_NULL; in getLibrary() local
68 library = m_platform.createDefaultGLFunctionLibrary(apiType, m_cmdLine); in getLibrary()
71 m_libraries.insert(std::make_pair(key, library)); in getLibrary()
75 delete library; in getLibrary()
80 library = iter->second; in getLibrary()
82 return library; in getLibrary()

12345678910>>...159