Searched defs:library (Results 1 - 25 of 81) sorted by relevance

1234

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dl.c58 util_dl_get_proc_address(struct util_dl_library *library, argument
62 return (util_dl_proc) pointer_to_func(dlsym((void *)library, procname));
64 return (util_dl_proc)GetProcAddress((HMODULE)library, procname);
72 util_dl_close(struct util_dl_library *library) argument
75 dlclose((void *)library);
77 FreeLibrary((HMODULE)library);
79 (void)library;
/external/freetype/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c92 FT_Library library; local
101 library = slot->library;
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
H A Dftglyph.c26 /* handy for many other simple uses of the library. */
65 FT_Library library = FT_GLYPH( glyph )->library; local
86 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap );
98 FT_Library library = bitmap_source->library; local
106 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap );
114 FT_Library library = FT_GLYPH( glyph )->library; local
117 FT_Bitmap_Done( library,
163 FT_Library library = FT_GLYPH( glyph )->library; local
207 FT_Library library = FT_GLYPH( source )->library; local
285 ft_new_glyph( FT_Library library, const FT_Glyph_Class* clazz, FT_Glyph* aglyph ) argument
362 FT_Library library; local
520 FT_Library library; local
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c92 FT_Library library; local
101 library = slot->library;
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
/external/deqp/framework/delibs/deutil/
H A DdeDynamicLibrary.c21 * \brief Dynamic link library abstraction.
39 deDynamicLibrary* library = (deDynamicLibrary*)deCalloc(sizeof(deDynamicLibrary)); local
40 if (!library)
43 library->libHandle = dlopen(fileName, RTLD_LAZY);
44 if (!library->libHandle)
46 deFree(library);
50 return library;
53 void deDynamicLibrary_close (deDynamicLibrary* library) argument
55 if (library && library
60 deDynamicLibrary_getFunction(const deDynamicLibrary* library, const char* symbolName) argument
88 deDynamicLibrary* library = (deDynamicLibrary*)deCalloc(sizeof(deDynamicLibrary)); local
102 deDynamicLibrary_close(deDynamicLibrary* library) argument
109 deDynamicLibrary_getFunction(const deDynamicLibrary* library, const char* symbolName) argument
[all...]
/external/deqp/framework/egl/
H A DegluGLFunctionLoader.cpp32 GLFunctionLoader::GLFunctionLoader (const eglw::Library& egl, const tcu::FunctionLibrary* library) argument
34 , m_library (library)
62 tcu::FunctionLibrary* library = DE_NULL; local
68 library = m_platform.createDefaultGLFunctionLibrary(apiType, m_cmdLine);
71 m_libraries.insert(std::make_pair(key, library));
75 delete library;
80 library = iter->second;
82 return library;
/external/deqp/scripts/egl/
H A D__init__.py30 import library namespace
42 library.gen(registry)
/external/freetype/include/internal/
H A Dftpic.h55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
/external/pdfium/third_party/freetype/include/internal/
H A Dftpic.h55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
/external/webrtc/src/system_wrappers/source/
H A Drw_lock_win.cc22 static HMODULE library = NULL; member in namespace:webrtc
50 if(!library)
53 library = LoadLibrary(TEXT("Kernel32.dll"));
54 if(library)
61 library,
66 library,
70 library,
74 library,
78 library,
H A Dcondition_variable_win.cc28 static HMODULE library = NULL; member in namespace:webrtc
44 if (!library)
47 library = LoadLibrary(TEXT("Kernel32.dll"));
48 if (library)
55 library,
59 library,
63 library,
67 library,
/external/pdfium/third_party/freetype/src/raster/
H A Dftrend1.c34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
/external/freetype/src/cache/
H A Dftcmanag.h93 FT_Library library; member in struct:FTC_ManagerRec_
/external/freetype/src/raster/
H A Dftrend1.c34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
/external/replicaisland/src/com/replica/replicaisland/
H A DDebugSystem.java36 public DebugSystem(TextureLibrary library) { argument
38 if (library != null) {
39 mRedBoxTexture = library.allocateTexture(R.drawable.debug_box_red);
40 mBlueBoxTexture = library.allocateTexture(R.drawable.debug_box_blue);
41 mOutlineBoxTexture = library.allocateTexture(R.drawable.debug_box_outline);
42 mRedCircleTexture = library.allocateTexture(R.drawable.debug_circle_red);
43 mBlueCircleTexture = library.allocateTexture(R.drawable.debug_circle_blue);
44 mOutlineCircleTexture = library.allocateTexture(R.drawable.debug_circle_outline);
/external/compiler-rt/lib/asan/
H A DAndroid.mk145 define build-asan-rt-shared-library
150 # We need to unwind by frame pointers through a small portion of ASan runtime library code,
174 $(eval $(call build-asan-rt-shared-library,$(ADDRESS_SANITIZER_RUNTIME_LIBRARY),64))
175 $(eval $(call build-asan-rt-shared-library,$(2ND_ADDRESS_SANITIZER_RUNTIME_LIBRARY),32))
177 $(eval $(call build-asan-rt-shared-library,$(ADDRESS_SANITIZER_RUNTIME_LIBRARY),32))
/external/freetype/include/
H A Dftglyph.h27 /* handy for many other simple uses of the library. */
83 /* Glyph objects are not owned by the library. You must thus release */
100 /* library :: A handle to the FreeType library object. */
110 FT_Library library; member in struct:FT_GlyphRec_
H A Dftmodapi.h236 /* Add a new module to a given library instance. */
239 /* library :: A handle to the library object. */
252 FT_Add_Module( FT_Library library,
265 /* library :: A handle to the library object. */
277 FT_Get_Module( FT_Library library,
287 /* Remove a given module from a library instance. */
290 /* library :: A handle to a library objec
461 FT_Reference_Library( FT_Library library ); variable
521 FT_Done_Library( FT_Library library ); variable
576 FT_Add_Default_Modules( FT_Library library ); variable
659 FT_Get_TrueType_Engine_Type( FT_Library library ); variable
[all...]
/external/freetype/src/autofit/
H A Dafmodule.c270 /* AF_SERVICES_GET dereferences `library' in PIC mode */
272 FT_Library library; local
277 library = module->library;
278 if ( !library )
324 FT_Memory memory = module->root.library->memory;
/external/freetype/src/cff/
H A Dcffparse.h39 FT_Library library; member in struct:CFF_ParserRec_
57 FT_Library library);
/external/freetype/src/sfnt/
H A Dsfdriver.c430 /* SFNT_SERVICES_GET dereferences `library' in PIC mode */
432 FT_Library library; local
437 library = module->library;
438 if ( !library )
/external/ltrace/
H A Dlibrary.h49 struct library *lib;
62 * potentially become active if a library implementing them
83 /* Copy library symbol SYM into the area pointed-to by RETP. Return 0
88 /* Destroy library symbol. This essentially just frees name if it's
94 /* Compare two library symbols. Returns a negative value, 0, or a
100 /* Set a name for library symbol. This frees the old name, if
131 struct library { struct
132 struct library *next;
134 /* Unique key. Two library objects are considered equal, if
138 /* Address where the library i
[all...]
/external/pdfium/third_party/freetype/include/
H A Dftglyph.h27 /* handy for many other simple uses of the library. */
83 /* Glyph objects are not owned by the library. You must thus release */
100 /* library :: A handle to the FreeType library object. */
110 FT_Library library; member in struct:FT_GlyphRec_

Completed in 590 milliseconds

1234