| /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/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/freetype/dist/src/cff/ |
| cffobjs.h | 73 cff_driver_init( FT_Module module ); /* PS_Driver */ variable 76 cff_driver_done( FT_Module module ); /* PS_Driver */ variable
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_init.h | 45 LLVMModuleRef module; member in struct:gallivm_state
|
| /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/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_init.h | 46 LLVMModuleRef module; member in struct:gallivm_state
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_test_printf.c | 63 LLVMModuleRef module = gallivm->module; local 65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));
|
| lp_test_format.c | 86 LLVMModuleRef module = gallivm->module; local 107 func = LLVMAddFunction(module, name,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| lp_test_printf.c | 63 LLVMModuleRef module = gallivm->module; local 65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));
|
| lp_test_format.c | 86 LLVMModuleRef module = gallivm->module; local 107 func = LLVMAddFunction(module, name,
|
| /xsrc/external/mit/freetype/dist/src/type42/ |
| t42objs.h | 110 T42_Driver_Init( FT_Module module ); variable 113 T42_Driver_Done( FT_Module module ); variable
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| glspirv.c | 73 struct gl_spirv_module *module; local 76 module = malloc(sizeof(*module) + length); 77 if (!module) { 82 p_atomic_set(&module->RefCount, 0); 83 module->Length = length; 84 memcpy(&module->Binary[0], binary, length); 91 _mesa_spirv_module_reference(&spirv_data->SpirVModule, module); 364 * "The OpenGL API expects the SPIR-V module to have already been 366 * in the module. An invalid SPIR-V module is allowed to result i [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| tu_shader.c | 117 const struct tu_shader_module *module = local 118 tu_shader_module_from_handle(stage_info->module); 130 assert(module->code_size % 4 == 0); 132 dev->compiler, (const uint32_t *) module->code, module->code_size / 4, 305 struct tu_shader_module *module; local 311 module = vk_alloc2(&device->alloc, pAllocator, 312 sizeof(*module) + pCreateInfo->codeSize, 8, 314 if (module == NULL) 317 module->code_size = pCreateInfo->codeSize [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| glspirv.c | 73 struct gl_spirv_module *module; local 76 module = malloc(sizeof(*module) + length); 77 if (!module) { 82 p_atomic_set(&module->RefCount, 0); 83 module->Length = length; 84 memcpy(&module->Binary[0], binary, length); 91 _mesa_spirv_module_reference(&spirv_data->SpirVModule, module); 308 * "The OpenGL API expects the SPIR-V module to have already been 310 * in the module. An invalid SPIR-V module is allowed to result i [all...] |
| /xsrc/external/mit/freetype/dist/src/autofit/ |
| afglobal.h | 137 AF_Module module; /* to access global properties */ member in struct:AF_FaceGlobalsRec_ 150 AF_Module module );
|
| /xsrc/external/mit/freetype/dist/src/cid/ |
| cidobjs.c | 69 FT_Module module; local 72 module = FT_Get_Module( slot->face->driver->root.library, 74 if ( module ) 79 funcs = pshinter->get_t1_funcs( module ); 100 FT_Module module; local 103 module = FT_Get_Module( size->root.face->driver->root.library, 105 return ( module && pshinter && pshinter->get_globals_funcs ) 106 ? pshinter->get_globals_funcs( module ) 311 FT_ERROR(( "cid_face_init: cannot access `psaux' module\n" )); 474 cid_driver_init( FT_Module module ) [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| CrGlCur.c | 56 XModuleType module; local 59 module = dlopen(library, RTLD_LAZY); 60 if (module) 61 return module; 71 fetch_symbol (XModuleType module, const char *under_symbol) 75 result = dlsym (module, symbol); 77 result = dlsym (module, under_symbol);
|
| /xsrc/external/mit/libdrm/dist/tests/proptest/ |
| proptest.c | 263 " -M MODULE use the given driver\n" 280 char *module = NULL; local 289 module = optarg; 300 fd = util_open(device, module);
|
| /xsrc/external/mit/libdrm/dist/tests/vbltest/ |
| vbltest.c | 91 fprintf(stderr, " -M MODULE open the given module\n"); 98 const char *device = NULL, *module = NULL; local 111 module = optarg; 122 fd = util_open(device, module);
|
| /xsrc/external/mit/MesaLib/dist/include/android_stub/hardware/ |
| hardware.h | 49 * All module implementations must set the hw_module_t.hal_api_version field 50 * to this value when declaring the module with HAL_MODULE_INFO_SYM. 60 * Helper macros for module implementors. 63 * versions so that implementations can explicitly specify module/device 82 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM 84 * followed by module specific information. 91 * The API version of the implemented module. The module owner is 92 * responsible for updating the version when a module interface has 96 * The module user must interpret the version field to decide whether o 190 struct hw_module_t* module; member in struct:hw_device_t [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/llvm/ |
| ac_llvm_helper.cpp | 79 LLVMModuleRef module = LLVMModuleCreateWithNameInContext("mesa-shader", ctx); local 81 llvm::unwrap(module)->setTargetTriple(TM->getTargetTriple().getTriple()); 82 llvm::unwrap(module)->setDataLayout(TM->createDataLayout()); 83 return module; 246 bool ac_compile_module_to_elf(struct ac_compiler_passes *p, LLVMModuleRef module, 249 p->passmgr.run(*llvm::unwrap(module));
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/common/ |
| ac_llvm_helper.cpp | 72 LLVMModuleRef module = LLVMModuleCreateWithNameInContext("mesa-shader", ctx); local 74 llvm::unwrap(module)->setTargetTriple(TM->getTargetTriple().getTriple()); 75 llvm::unwrap(module)->setDataLayout(TM->createDataLayout()); 76 return module; 155 bool ac_compile_module_to_binary(struct ac_compiler_passes *p, LLVMModuleRef module, 158 p->passmgr.run(*llvm::unwrap(module));
|
| /xsrc/external/mit/freetype/dist/src/type1/ |
| t1objs.c | 60 FT_Module module; local 63 module = FT_Get_Module( size->root.face->driver->root.library, 65 return ( module && pshinter && pshinter->get_globals_funcs ) 66 ? pshinter->get_globals_funcs( module ) 160 FT_Module module; local 163 module = FT_Get_Module( slot->face->driver->root.library, 165 if ( module ) 170 funcs = pshinter->get_t1_funcs( module ); 334 FT_ERROR(( "T1_Face_Init: cannot access `psaux' module\n" )); 593 T1_Driver_Init( FT_Module module ) [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/ |
| xf86Xinput.h | 73 /* This holds the input driver entry and module information. */ 82 void *module; member in struct:_InputDriverRec 111 void *module; member in struct:_InputInfoRec 197 extern _X_EXPORT void xf86AddInputDriver(InputDriverPtr driver, void *module,
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/ |
| xf86Xinput.h | 66 /* This holds the input driver entry and module information. */ 76 pointer module; member in struct:_InputDriverRec 105 pointer module; member in struct:_InputInfoRec 161 extern _X_EXPORT void xf86AddInputDriver(InputDriverPtr driver, pointer module, int flags);
|