HomeSort by: relevance | last modified time | path
    Searched refs:module (Results 1 - 25 of 549) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/freetype/dist/src/pshinter/
pshmod.c 5 * FreeType PostScript hinter module implementation (body).
25 /* the Postscript Hinter module structure */
38 /* finalize module */
40 ps_hinter_done( PS_Hinter_Module module )
42 module->t1_funcs.hints = NULL;
43 module->t2_funcs.hints = NULL;
45 ps_hints_done( &module->ps_hints );
49 /* initialize module, create hints recorder and the interface */
51 ps_hinter_init( PS_Hinter_Module module )
53 FT_Memory memory = module->root.memory
    [all...]
module.mk 2 # FreeType 2 PSHinter module definition
20 $(ECHO_DRIVER)pshinter $(ECHO_DRIVER_DESC)Postscript hinter module$(ECHO_DRIVER_DONE)
  /xsrc/external/mit/MesaLib/dist/src/android_stub/
hardware_stub.cpp 5 int hw_get_module(const char *id, const struct hw_module_t **module)
  /xsrc/external/mit/MesaLib/dist/src/vulkan/util/
vk_shader_module.c 36 struct vk_shader_module *module; local
41 module = vk_object_alloc(device, pAllocator,
42 sizeof(*module) + pCreateInfo->codeSize,
44 if (module == NULL)
47 module->size = pCreateInfo->codeSize;
48 module->nir = NULL;
49 memcpy(module->data, pCreateInfo->pCode, module->size);
51 _mesa_sha1_compute(module->data, module->size, module->sha1)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
panvk_shader.c 55 struct panvk_shader_module *module; local
61 module = vk_object_zalloc(&device->vk, pAllocator,
62 sizeof(*module) + pCreateInfo->codeSize,
64 if (module == NULL)
67 module->code_size = pCreateInfo->codeSize;
68 memcpy(module->code, pCreateInfo->pCode, pCreateInfo->codeSize);
70 _mesa_sha1_compute(module->code, module->code_size, module->sha1);
72 *pShaderModule = panvk_shader_module_to_handle(module);
    [all...]
  /xsrc/external/mit/libdrm/dist/tests/util/
kms.h 32 int util_open(const char *device, const char *module);
  /xsrc/external/mit/xcb-proto/dist/xcbgen/
matcher.py 4 Most functions just declare a new object and add it to the module.
19 def import_(node, module, namespace):
26 module.import_level = module.import_level + 1
30 execute(module, new_namespace)
31 module.import_level = module.import_level - 1
32 if not module.has_import(node.text):
33 module.add_import(node.text, new_namespace)
35 def typedef(node, module, namespace)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/
invocation.hpp 27 #include "core/module.hpp"
33 module compile_program(const std::string &source,
39 module link_program(const std::vector<module> &modules,
codegen.hpp 26 /// the given llvm::Module object and output the result as a clover::module.
33 #include "core/module.hpp"
35 #include <llvm/IR/Module.h>
42 print_module_bitcode(const ::llvm::Module &mod);
44 module
45 build_module_library(const ::llvm::Module &mod,
46 enum module::section::type section_type);
48 std::unique_ptr< ::llvm::Module>
49 parse_module_library(const module &m, ::llvm::LLVMContext &ctx
    [all...]
  /xsrc/external/mit/xf86-video-qxl/dist/src/
spiceqxl_inputs.h 28 void xspice_add_input_drivers(pointer module);
  /xsrc/external/mit/xedit/dist/lisp/
require.c 66 require module &optional pathname
72 LispObj *obj, *module, *pathname; local
75 module = ARGUMENT(0);
77 CHECK_STRING(module);
86 pathname = module;
89 if (strcmp(THESTR(CAR(obj)), THESTR(module)) == 0)
90 return (module);
120 if (lisp__data.module == NULL) {
130 snprintf(data, sizeof(data), "%sLispModuleData", THESTR(module));
135 STRFUN(builtin), STROBJ(module));
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/codegen/
common.cpp 28 /// clover::module, including kernel argument metadata extraction and
47 using ::llvm::Module;
55 enum module::argument::type
59 return module::argument::image2d_rd;
61 return module::argument::image2d_wr;
63 return module::argument::image3d_rd;
65 return module::argument::image3d_wr;
70 std::vector<module::argument>
71 make_kernel_args(const Module &mod, const std::string &kernel_name,
73 std::vector<module::argument> args
    [all...]
  /xsrc/external/mit/freetype/dist/include/freetype/internal/
ftpsprop.h 30 ps_property_set( FT_Module module, /* PS_Driver */
36 ps_property_get( FT_Module module, /* PS_Driver */
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/loader/
sdksyms.sh 24 /* fb/Makefile.am -- module */
34 /* miext/shadow/Makefile.am -- module */
48 /* Xext/Makefile.am -- half is module, half is builtin */
63 /* hw/xfree86/int10/Makefile.am -- module */
95 /* hw/xfree86/dri2/Makefile.am -- module */
103 /* hw/xfree86/vgahw/Makefile.am -- module */
109 /* hw/xfree86/fbdevhw/Makefile.am -- module */
135 /* XF86VidMode code is in libextmod module */
155 /* hw/xfree86/shadowfb/Makefile.am -- module */
179 /* hw/xfree86/xaa/Makefile.am -- module */
    [all...]
  /xsrc/external/mit/freetype/dist/src/autofit/
afmodule.c 5 * Auto-fitter module implementation (body).
75 AF_Module module )
89 error = af_face_globals_new( face, &globals, module );
113 AF_Module module = (AF_Module)ft_module; local
144 module->fallback_style = ss;
170 module->default_script = *default_script;
187 error = af_property_get_face_globals( prop->face, &globals, module );
204 module->warping = 0;
206 module->warping = 1;
216 module->warping = *warping
322 AF_Module module = (AF_Module)ft_module; local
445 AF_Module module = (AF_Module)ft_module; local
    [all...]
module.mk 2 # FreeType 2 auto-fitter module definition
20 $(ECHO_DRIVER)autofit $(ECHO_DRIVER_DESC)automatic hinting module$(ECHO_DRIVER_DONE)
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_llvm_helper.h 35 bool radv_compile_to_elf(struct ac_llvm_compiler *info, LLVMModuleRef module, char **pelf_buffer,
  /xsrc/external/mit/freetype/dist/src/gxvalid/
module.mk 2 # FreeType 2 gxvalid module definition
20 $(ECHO_DRIVER)gxvalid $(ECHO_DRIVER_DESC)TrueTypeGX/AAT validation module$(ECHO_DRIVER_DONE)
  /xsrc/external/mit/freetype/dist/src/otvalid/
module.mk 2 # FreeType 2 otvalid module definition
20 $(ECHO_DRIVER)otvalid $(ECHO_DRIVER_DESC)OpenType validation module$(ECHO_DRIVER_DONE)
  /xsrc/external/mit/freetype/dist/src/psaux/
module.mk 2 # FreeType 2 PSaux module definition
20 $(ECHO_DRIVER)psaux $(ECHO_DRIVER_DESC)Postscript Type 1 & Type 2 helper module$(ECHO_DRIVER_DONE)
  /xsrc/external/mit/freetype/dist/src/sfnt/
module.mk 2 # FreeType 2 SFNT module definition
20 $(ECHO_DRIVER)sfnt $(ECHO_DRIVER_DESC)helper module for TrueType & OpenType formats$(ECHO_DRIVER_DONE)
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/
sdksyms.sh 29 /* wfb is still a module
34 /* miext/shadow/Makefile.am -- module */
51 /* Xext/Makefile.am -- half is module, half is builtin */
71 /* hw/xfree86/int10/Makefile.am -- module */
105 /* hw/xfree86/dri2/Makefile.am -- module */
112 /* hw/xfree86/vgahw/Makefile.am -- module */
118 /* hw/xfree86/fbdevhw/Makefile.am -- module */
154 /* hw/xfree86/shadowfb/Makefile.am -- module */
185 /* hw/xfree86/dri/Makefile.am -- module */
212 /* dbe/Makefile.am -- module */
    [all...]
  /xsrc/external/mit/freetype/dist/include/freetype/internal/services/
svprop.h 30 (*FT_Properties_SetFunc)( FT_Module module,
36 (*FT_Properties_GetFunc)( FT_Module module,
  /xsrc/external/mit/MesaLib/dist/include/android_stub/hardware/
gralloc.h 36 * Module versioning information for the Gralloc hardware module, based on
42 * Initial Gralloc hardware module API.
58 * The id of this module
93 /* buffer will be used by the HWComposer HAL module */
137 /* Mask of all flags which could be passed to a gralloc module for buffer
153 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
155 * followed by module specific information.
175 int (*registerBuffer)(struct gralloc_module_t const* module,
190 int (*unregisterBuffer)(struct gralloc_module_t const* module,
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
kernel.hpp 73 create(const module::argument &marg);
91 const module::argument &marg) = 0;
114 const std::vector<clover::module::argument> &margs);
142 const clover::module &module(const command_queue &q) const;
150 const module::argument &marg);
162 const module::argument &marg);
175 const module::argument &marg);
186 const module::argument &marg);
207 const module::argument &marg)
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>