HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 51 - 75 of 651) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/deqp-deps/SPIRV-Tools/test/opt/dominator_tree/
post.cpp 145 Module* module = context->module(); local
146 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
149 const Function* f = spvtest::GetFunction(module, 4);
150 CFG cfg(module);
switch_case_fallthrough.cpp 136 Module* module = context->module(); local
137 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
140 const Function* f = spvtest::GetFunction(module, 4);
unreachable_for.cpp 87 Module* module = context->module(); local
88 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
91 const Function* f = spvtest::GetFunction(module, 4);
unreachable_for_post.cpp 87 Module* module = context->module(); local
88 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
91 const Function* f = spvtest::GetFunction(module, 4);
  /external/deqp-deps/SPIRV-Tools/test/opt/loop_optimizations/
fusion_illegal.cpp 135 Module* module = context->module(); local
136 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
138 Function& f = *module->begin();
254 Module* module = context->module();
255 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
257 Function& f = *module->begin()
    [all...]
loop_descriptions.cpp 95 Module* module = context->module(); local
96 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
98 const Function* f = spvtest::GetFunction(module, 2);
192 Module* module = context->module(); local
193 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
195 const Function* f = spvtest::GetFunction(module, 2)
290 Module* module = context->module(); local
366 Module* module = context->module(); local
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/val/
val_adjacency_test.cpp 32 const std::string module = R"( local
54 CompileSuccessfully(module);
61 const std::string module = R"( local
75 CompileSuccessfully(module);
78 HasSubstr("Missing OpFunctionEnd at end of module"));
82 const std::string module = R"( local
96 CompileSuccessfully(module);
99 HasSubstr("Missing OpFunctionEnd at end of module"));
  /external/guice/extensions/struts2/test/com/google/inject/struts2/
Struts2FactoryTest.java 23 import com.google.inject.Module;
41 private final Module module; field in class:Struts2FactoryTest.TestListener
43 public TestListener(Module module) {
44 this.module = module;
60 module); field in class:Struts2FactoryTest
  /external/mesa3d/src/mesa/main/
glspirv.c 65 struct gl_spirv_module *module; local
70 module = malloc(sizeof(*module) + length);
71 if (!module) {
76 p_atomic_set(&module->RefCount, 0);
77 module->Length = length;
78 memcpy(&module->Binary[0], binary, length);
85 _mesa_spirv_module_reference(&spirv_data->SpirVModule, module);
  /external/parameter-framework/upstream/utility/windows/
DynamicLibrary.cpp 44 HMODULE module = LoadLibrary(_path.c_str()); local
46 _handle = reinterpret_cast<void *>(module);
56 HMODULE module = reinterpret_cast<HMODULE>(_handle); local
58 FreeLibrary(module);
63 HMODULE module = reinterpret_cast<HMODULE>(_handle); local
65 void *sym = reinterpret_cast<void *>(GetProcAddress(module, symbol.c_str()));
  /external/protobuf/python/google/protobuf/internal/
api_implementation.cc 72 "_api_implementation is a module that exposes compile-time constants that\n"
101 PyObject *module = PyModule_Create(&_module); local
103 PyObject *module = Py_InitModule3(
108 if (module == NULL) {
112 // Adds the module variable "api_version".
114 module,
120 { Py_DECREF(module); return NULL; }
122 return module;
  /external/python/cpython2/Mac/Modules/ah/
ahsupport.py 10 MODNAME = '_AH' # The name of the module
13 MODPREFIX = 'Ah' # The prefix for module-wide routines
15 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program
30 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff) variable
41 for f in functions: module.add(f)
45 module.generate()
  /external/python/cpython2/Mac/Modules/ibcarbon/
IBCarbonsupport.py 25 module = MacModule('_IBCarbon', 'IBCarbon', includestuff, finalstuff, initstuff) variable
36 #module.addobject(cfstringobject)
38 #module.addobject(cfbundleobject)
40 module.addobject(ibnibobject)
47 for f in functions: module.add(f)
51 module.generate()
  /external/roboto-fonts/
Android.mk 37 # It also serves as the module name and the dest file name.
38 define build-one-font-module
94 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
96 build-one-font-module :=
  /external/swiftshader/src/Common/
GrallocAndroid.cpp 30 const hw_module_t *module = nullptr; local
31 hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
33 m_major_version = (module->module_api_version >> 8) & 0xff;
37 m_module = reinterpret_cast<const gralloc_module_t*>(module);
41 gralloc1_open(module, &m_gralloc1_device);
73 TRACE("no gralloc module to lock");
102 TRACE("no gralloc module to unlock");
SharedLibrary.hpp 78 HMODULE module = NULL; local
79 GetModuleHandleEx(0, path, &module);
80 return (void*)module;
  /external/swiftshader/src/System/
GrallocAndroid.cpp 30 const hw_module_t *module = nullptr; local
31 hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
33 m_major_version = (module->module_api_version >> 8) & 0xff;
37 m_module = reinterpret_cast<const gralloc_module_t*>(module);
41 gralloc1_open(module, &m_gralloc1_device);
73 TRACE("no gralloc module to lock");
102 TRACE("no gralloc module to unlock");
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
loop_fusion_pass.cpp 27 Module* module = context()->module(); local
29 // Process each function in the module
30 for (Function& f : *module) {
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/dominator_tree/
nested_ifs.cpp 116 Module* module = context->module(); local
117 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
120 const Function* f = spvtest::GetFunction(module, 4);
nested_ifs_post.cpp 115 Module* module = context->module(); local
116 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
119 const Function* f = spvtest::GetFunction(module, 4);
nested_loops.cpp 356 Module* module = context->module(); local
357 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
360 const Function* f = spvtest::GetFunction(module, 4);
nested_loops_with_unreachables.cpp 286 Module* module = context->module(); local
287 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
290 const Function* f = spvtest::GetFunction(module, 4);
post.cpp 145 Module* module = context->module(); local
146 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
149 const Function* f = spvtest::GetFunction(module, 4);
150 CFG cfg(module);
switch_case_fallthrough.cpp 136 Module* module = context->module(); local
137 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
140 const Function* f = spvtest::GetFunction(module, 4);
unreachable_for.cpp 87 Module* module = context->module(); local
88 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
91 const Function* f = spvtest::GetFunction(module, 4);

Completed in 453 milliseconds

1 23 4 5 6 7 8 91011>>