HomeSort by relevance Sort by last modified time
    Searched refs:library (Results 226 - 250 of 725) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/include/internal/
ftdriver.h 332 FT_Destroy_Class_ ## class_( FT_Library library, \
335 FT_Memory memory = library->memory; \
339 class_ ## _pic_free( library ); \
346 FT_Create_Class_ ## class_( FT_Library library, \
351 FT_Memory memory = library->memory; \
357 error = class_ ## _pic_init( library ); \
  /external/libpng/contrib/gregbook/
makevms.com 38 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
42 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
61 $ write xopt "sys$library:decw$xlibshr.exe/share"
  /external/libpng/contrib/pngminus/
makevms.com 13 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
17 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
36 $ write xopt "sys$library:decw$xlibshr.exe/share"
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
Linker.java 32 * When two processes load the same native library at the _same_ memory address,
51 * before library native code is executed.
64 * Not using fixed library addresses in the browser process is preferred
84 * - The common library load addresses are randomized for each instance of
92 * library per APK.
102 * - Before loading any library, prepareLibraryLoad() should be called.
120 * - The browser is in charge of deciding where in memory each library should
124 * - The browser will also generate shared RELROs for each library it loads.
129 * - Compute the fixed address to be used to load the same library
143 * links each loaded library to its shared RELRO region
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffdrivr.c 415 FT_Library library = FT_FACE_LIBRARY( face ); local
424 FT_Module sfnt = FT_Get_Module( library, "sfnt" );
702 FT_Library library; local
707 /* CFF_SERVICES_GET derefers `library' in PIC mode */
711 library = driver->library;
712 if ( !library )
724 library = driver->library;
725 if ( !library )
    [all...]
  /external/freetype/src/cff/
cffdrivr.c 417 FT_Library library = FT_FACE_LIBRARY( face ); local
426 FT_Module sfnt = FT_Get_Module( library, "sfnt" );
751 FT_Library library; local
756 /* CFF_SERVICES_GET derefers `library' in PIC mode */
760 library = driver->library;
761 if ( !library )
773 library = driver->library;
774 if ( !library )
    [all...]
  /external/libcap-ng/libcap-ng-0.7/
libcap-ng.spec 3 Summary: An alternate posix capabilities library
16 Libcap-ng is a library that makes using posix capabilities easier
19 Summary: Header files for libcap-ng library
28 applications that need to use the libcap-ng library.
31 Summary: Python bindings for libcap-ng library
  /external/chromium_org/third_party/freetype/src/base/
ftbitmap.c 43 FT_Bitmap_Copy( FT_Library library,
47 FT_Memory memory = library->memory;
216 FT_Bitmap_Embolden( FT_Library library,
227 if ( !library )
261 error = FT_Bitmap_Convert( library, bitmap, &tmp, align );
265 FT_Bitmap_Done( library, bitmap );
288 error = ft_bitmap_assure_buffer( library->memory, bitmap, xstr, ystr );
434 FT_Bitmap_Convert( FT_Library library,
443 if ( !library )
446 memory = library->memory
    [all...]
  /external/chromium_org/third_party/libxml/src/
libxml2.spec 1 Summary: Library providing XML and HTML support
13 This library allows to manipulate XML files. It includes support
21 URI library.
32 This library allows to manipulate XML files. It includes support
40 URI library.
43 Summary: Python bindings for the libxml2 library
51 supplied by the libxml2 library to manipulate XML files.
53 This library allows to manipulate XML files. It includes support
  /external/freetype/src/base/
ftbitmap.c 43 FT_Bitmap_Copy( FT_Library library,
47 FT_Memory memory = library->memory;
216 FT_Bitmap_Embolden( FT_Library library,
227 if ( !library )
261 error = FT_Bitmap_Convert( library, bitmap, &tmp, align );
265 FT_Bitmap_Done( library, bitmap );
288 error = ft_bitmap_assure_buffer( library->memory, bitmap, xstr, ystr );
427 FT_Bitmap_Convert( FT_Library library,
436 if ( !library )
439 memory = library->memory
    [all...]
  /external/chromium_org/ui/ozone/platform/egltest/
ozone_platform_egltest.cc 42 // Get the library soname to load.
44 std::string library; local
46 if (env->GetVar(kEglplatformShim, &library))
47 return library;
247 LOG(WARNING) << "Failed to load EGL library: " << error.ToString();
254 LOG(WARNING) << "Failed to load GLES library: " << error.ToString();
289 // handled by a separate library called eglplatform_shim.so.1 because
301 std::string library = GetShimLibraryName(); local
303 if (eglplatform_shim_.Load(library))
309 base::FilePath library_path = module_path.Append(library);
    [all...]
  /external/chromium_org/content/ppapi_plugin/
ppapi_thread.cc 275 base::ScopedNativeLibrary library; local
277 // Load the plugin from the specified library.
279 library.Reset(base::LoadNativeLibrary(path, &error));
280 if (!library.is_valid()) {
296 library.GetFunctionPointer("PPP_GetInterface"));
298 LOG(WARNING) << "No PPP_GetInterface in plugin library";
307 library.GetFunctionPointer("PPP_ShutdownBroker")) :
309 library.GetFunctionPointer("PPP_ShutdownModule"));
315 library.GetFunctionPointer("PPP_InitializeModule"));
317 LOG(WARNING) << "No PPP_InitializeModule in plugin library";
    [all...]
  /external/chromium_org/content/renderer/pepper/
plugin_module.cc 345 // Gets the PPAPI entry points from the given library and places them into the
347 bool LoadEntryPointsFromLibrary(const base::NativeLibrary& library,
351 base::GetFunctionPointerFromNativeLibrary(library,
354 LOG(WARNING) << "No PPP_GetInterface in plugin library";
360 base::GetFunctionPointerFromNativeLibrary(library,
363 LOG(WARNING) << "No PPP_InitializeModule in plugin library";
371 base::GetFunctionPointerFromNativeLibrary(library,
473 base::NativeLibrary library = base::LoadNativeLibrary(path, NULL); local
474 if (!library)
479 if (!LoadEntryPointsFromLibrary(library, &entry_points) |
    [all...]
  /external/ltrace/
proc.c 176 proc->dwfl = NULL; /* Initialize for leader only on first library. */
272 struct library *lib;
274 struct library *next = lib->next;
377 struct library *lib;
378 struct library **nlibp = &retp->libraries;
392 struct library *next = lib->next;
462 * corresponding library symbol in the cloned
463 * library. */
518 is_main(struct process *proc, struct library *lib, void *data)
529 struct library *mainli
    [all...]
filter.c 27 #include "library.h"
128 matcher_matches_library(struct filter_lib_matcher *matcher, struct library *lib)
133 "library soname");
136 "library pathname");
145 filter_matches_library(struct filter *filt, struct library *lib)
166 const char *sym_name, struct library *lib)
  /external/chromium_org/third_party/ots/test/
idempotent.cc 96 FT_Library library; local
97 FT_Error error = ::FT_Init_FreeType(&library);
102 error = ::FT_New_Memory_Face(library, result, len, 0, &dummy);
validator-checker.cc 49 FT_Library library; local
50 FT_Error error = FT_Init_FreeType(&library);
57 error = FT_New_Memory_Face(library, trans_font, trans_len, 0, &trans_face);
  /external/clang/runtime/compiler-rt/
Makefile 111 # On Linux, include a library which has all the runtime functions.
197 # Expand rules for copying/installing each individual library. We can't use
212 $(Echo) Copying runtime library $1/$$* to build dir
217 $(Echo) Copying runtime library $1/$$* to build dir
222 $(Echo) Copying runtime library $1/$$* to build dir
235 $(Echo) Installing compiler runtime library: $1/$$*
239 $(Echo) Installing compiler runtime library: $1/$$*
243 $(Echo) Installing compiler runtime library: $1/$$*
  /external/libnfc-nci/
Android.mk 20 # Build shared library system/lib/libnfc-nci.so for stack code.
53 # Build shared library system/lib/hw/nfc_nci.*.so for Hardware Abstraction Layer.
54 # Android's generic HAL (libhardware.so) dynamically loads this shared library.
  /build/tools/droiddoc/templates-pdk/assets/
customizations.js 5 + "and be compiled against a version of the Android library that supports an equal or higher API Level. To reveal this "
  /cts/tools/dex-tools/
Android.mk 17 # dex-tools java library
  /development/ndk/tests/prebuilt-library/jni/
Android.mk 17 # Note: the module is named foo-prebuilt, but the library is libfool.so !
  /development/tools/apkcheck/src/
Android.mk 18 # apkcheck java library
  /external/chromium_org/third_party/freetype/include/freetype/internal/
pshints.h 705 FT_Init_Class_ ## class_( FT_Library library, \
708 FT_UNUSED( library ); \
  /external/chromium_org/third_party/freetype/src/smooth/
ftsmooth.c 34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
210 if ( slot->library->lcd_filter_func )
212 FT_Int extra = slot->library->lcd_extra;
309 if ( slot->library->lcd_filter_func )
310 slot->library->lcd_filter_func( bitmap, mode, slot->library );

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011>>