HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 351 - 375 of 673) sorted by null

<<11121314151617181920>>

  /external/v8/src/wasm/
wasm-module.h 46 // Constants for fixed-size elements within a module.
55 uint32_t name_offset; // offset in the module bytes of the name, if any.
56 uint32_t code_start_offset; // offset in the module bytes of code start.
57 uint32_t code_end_offset; // offset in the module bytes of code end.
70 uint32_t name_offset; // offset in the module bytes of the name, if any.
79 uint32_t source_offset; // start offset in the module bytes.
80 uint32_t source_size; // end offset in the module bytes.
84 // Static representation of a module.
90 const byte* module_start; // starting address for the module bytes.
91 const byte* module_end; // end address for the module bytes
134 WasmModule* module; member in struct:v8::internal::wasm::ModuleEnv
    [all...]
  /external/v8/test/unittests/wasm/
ast-decoder-unittest.cc 15 #include "src/wasm/wasm-module.h"
88 env->module = nullptr;
180 env.module = nullptr;
2245 TestModuleEnv module; local
    [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 188 downmix_module_t *module; local
228 module = malloc(sizeof(downmix_module_t));
230 module->itfe = &gDownmixInterface;
232 module->context.state = DOWNMIX_STATE_UNINITIALIZED;
234 ret = Downmix_Init(module);
237 free(module);
241 *pHandle = (effect_handle_t) module;
243 ALOGV("DownmixLib_Create() %p , size %zu", module, sizeof(downmix_module_t));
554 * pDwmModule pointer to downmix effect module
578 ALOGV("Downmix_Init module %p", pDwmModule)
    [all...]
  /frameworks/av/services/radio/
RadioService.cpp 62 ALOGE("couldn't load radio module %s.%s (%s)",
88 ALOGI("loaded default module %s, handle %d", properties.product, properties.handle);
91 sp<Module> module = new Module(dev, properties); local
92 mModules.add(properties.handle, module);
136 sp<Module> module = mModules.valueAt(index); local
139 config = module->getDefaultConfig();
146 radio = module->addClient(client, config, withAudio)
685 sp<Module> module = mModule.promote(); local
764 sp<Module> module; local
782 sp<Module> module; local
    [all...]
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.cpp 63 ALOGE("couldn't load sound trigger module %s.%s (%s)",
87 ALOGI("loaded default module %s, handle %d", descriptor.properties.description,
91 sp<Module> module = new Module(this, dev, descriptor, client); local
92 mModules.add(descriptor.handle, module);
130 ALOGV("attach module %d", handle);
144 sp<Module> module = mModules.valueAt(index); local
146 module->setClient(client)
219 Module *module = (Module *)cookie; local
304 Module *module = (Module *)cookie; local
399 sp<Module> module; local
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_hdmi_HdmiCecController.cpp 292 hw_module_t* module; local
294 const_cast<const hw_module_t **>(&module));
296 ALOGE("Error acquiring hardware module: %d", err);
301 err = module->methods->open(module, HDMI_CEC_HARDWARE_INTERFACE, &device);
303 ALOGE("Error opening hardware module: %d", err);
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 107 // Load and prepare the hardware composer module. Sets mHwc.
112 hw_module_t const* module; local
114 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
115 ALOGE("%s module not found, aborting", HWC_HARDWARE_MODULE_ID);
120 int error = module->methods->open(module, HWC_HARDWARE_COMPOSER, &device);
HWComposer_hwc1.cpp 211 // Load and prepare the hardware composer module. Sets mHwc.
214 hw_module_t const* module; local
216 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
217 ALOGE("%s module not found", HWC_HARDWARE_MODULE_ID);
221 int err = hwc_open_1(module, &mHwc);
239 // Load and prepare the FB HAL, which uses the gralloc module. Sets mFbDev.
242 hw_module_t const* module; local
244 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
246 ALOGE("%s module not found", GRALLOC_HARDWARE_MODULE_ID);
250 return framebuffer_open(module, &mFbDev)
    [all...]
  /hardware/libhardware/tests/hwc/
cnativewindow.c 375 hw_module_t const* module; local
383 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
384 ERROR("cannot open hw composer module\n");
388 if (hwc_open_1(module, &hwc)) {
462 hw_module_t const* module; local
473 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) != 0) {
474 ERROR("cannot open gralloc module\n");
480 err = framebuffer_open(module, &fb);
496 err = gralloc_open(module, &gr);
  /hardware/qcom/audio/legacy/alsa_sound/
AudioHardwareALSA.cpp 82 hw_module_t *module; local
85 (hw_module_t const**)&module);
90 err = module->methods->open(module, ALSA_HARDWARE_NAME, &device);
200 ALOGE("ALSA Module could not be opened!!!");
203 ALOGE("ALSA Module not found!!!");
773 alsa_handle.module = mALSADevice;
843 alsa_handle.module = mALSADevice;
916 alsa_handle.module = mALSADevice;
    [all...]
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_copybit.cpp 557 hw_module_t const *module; local
567 if (hw_get_module(COPYBIT_HARDWARE_MODULE_ID, &module) == 0) {
568 if(copybit_open(module, &mEngine) < 0) {
572 ALOGE("FATAL ERROR: copybit hw module not found");
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
blit_engine_c2d.cpp 121 hw_module_t const *module; local
122 if (hw_get_module("copybit", &module) == 0) {
123 if (copybit_open(module, &blit_engine_c2d_) < 0) {
127 DLOGI("Opened Copybit Module");
129 DLOGI("Copybit HW Module not found");
  /hardware/ti/omap4-aah/domx/omx_proxy_component/omx_mpeg4_enc/src/
omx_proxy_mpeg4enc.c 997 hw_module_t const* module = NULL; local
1024 IMG_gralloc_module_public_t const* module = hCC; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
config.py 10 import lit.Test # pylint: disable=import-error,no-name-in-module namespace
11 import lit.util # pylint: disable=import-error,no-name-in-module namespace
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_heapq.py 29 module = None variable in class:TestHeap
39 self.module.heappush(heap, item)
43 item = self.module.heappop(heap)
52 self.assertRaises(TypeError, self.module.heappush, [])
54 self.assertRaises(TypeError, self.module.heappush, None, None)
55 self.assertRaises(TypeError, self.module.heappop, None)
69 self.module.heapify(heap)
72 self.assertRaises(TypeError, self.module.heapify, None)
78 self.module.heappush(heap, item)
80 self.module.heappop(heap
216 module = py_heapq variable in class:TestHeapPython
221 module = c_heapq variable in class:TestHeapC
329 module = None variable in class:TestErrorHandling
392 module = py_heapq variable in class:TestErrorHandlingPython
397 module = c_heapq variable in class:TestErrorHandlingC
    [all...]
test_sundry.py 31 import distutils.command.bdist_msi # if msi module is not build namespace
89 # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
test_warnings.py 19 def warnings_state(module):
32 original_filters = module.filters
34 module.filters = original_filters[:]
35 module.simplefilter("once")
36 warning_tests.warnings = module
40 module.filters = original_filters
56 # The 'warnings' module must be explicitly set so that the proper
58 sys.modules['warnings'] = self.module
71 with original_warnings.catch_warnings(module=self.module) as w
190 module = c_warnings variable in class:CFilterTests
193 module = py_warnings variable in class:PyFilterTests
352 module = c_warnings variable in class:CWarnTests
361 module = py_warnings variable in class:PyWarnTests
402 module = c_warnings variable in class:CWCmdLineTests
405 module = py_warnings variable in class:PyWCmdLineTests
412 module = c_warnings variable in class:_WarningsTests
591 module = c_warnings variable in class:CWarningsDisplayTests
594 module = py_warnings variable in class:PyWarningsDisplayTests
701 module = c_warnings variable in class:CCatchWarningTests
704 module = py_warnings variable in class:PyCatchWarningTests
740 module = c_warnings variable in class:CEnvironmentVariableTests
743 module = py_warnings variable in class:PyEnvironmentVariableTests
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_heapq.py 29 module = None variable in class:TestHeap
39 self.module.heappush(heap, item)
43 item = self.module.heappop(heap)
52 self.assertRaises(TypeError, self.module.heappush, [])
54 self.assertRaises(TypeError, self.module.heappush, None, None)
55 self.assertRaises(TypeError, self.module.heappop, None)
69 self.module.heapify(heap)
72 self.assertRaises(TypeError, self.module.heapify, None)
78 self.module.heappush(heap, item)
80 self.module.heappop(heap
216 module = py_heapq variable in class:TestHeapPython
221 module = c_heapq variable in class:TestHeapC
329 module = None variable in class:TestErrorHandling
392 module = py_heapq variable in class:TestErrorHandlingPython
397 module = c_heapq variable in class:TestErrorHandlingC
    [all...]
test_sundry.py 31 import distutils.command.bdist_msi # if msi module is not build namespace
89 # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
test_warnings.py 19 def warnings_state(module):
32 original_filters = module.filters
34 module.filters = original_filters[:]
35 module.simplefilter("once")
36 warning_tests.warnings = module
40 module.filters = original_filters
56 # The 'warnings' module must be explicitly set so that the proper
58 sys.modules['warnings'] = self.module
71 with original_warnings.catch_warnings(module=self.module) as w
190 module = c_warnings variable in class:CFilterTests
193 module = py_warnings variable in class:PyFilterTests
352 module = c_warnings variable in class:CWarnTests
361 module = py_warnings variable in class:PyWarnTests
402 module = c_warnings variable in class:CWCmdLineTests
405 module = py_warnings variable in class:PyWCmdLineTests
412 module = c_warnings variable in class:_WarningsTests
591 module = c_warnings variable in class:CWarningsDisplayTests
594 module = py_warnings variable in class:PyWarningsDisplayTests
701 module = c_warnings variable in class:CCatchWarningTests
704 module = py_warnings variable in class:PyCatchWarningTests
740 module = c_warnings variable in class:CEnvironmentVariableTests
743 module = py_warnings variable in class:PyEnvironmentVariableTests
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_heapq.py 29 module = None variable in class:TestHeap
39 self.module.heappush(heap, item)
43 item = self.module.heappop(heap)
52 self.assertRaises(TypeError, self.module.heappush, [])
54 self.assertRaises(TypeError, self.module.heappush, None, None)
55 self.assertRaises(TypeError, self.module.heappop, None)
69 self.module.heapify(heap)
72 self.assertRaises(TypeError, self.module.heapify, None)
78 self.module.heappush(heap, item)
80 self.module.heappop(heap
216 module = py_heapq variable in class:TestHeapPython
221 module = c_heapq variable in class:TestHeapC
329 module = None variable in class:TestErrorHandling
392 module = py_heapq variable in class:TestErrorHandlingPython
397 module = c_heapq variable in class:TestErrorHandlingC
    [all...]
test_sundry.py 31 import distutils.command.bdist_msi # if msi module is not build namespace
89 # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
test_warnings.py 19 def warnings_state(module):
32 original_filters = module.filters
34 module.filters = original_filters[:]
35 module.simplefilter("once")
36 warning_tests.warnings = module
40 module.filters = original_filters
56 # The 'warnings' module must be explicitly set so that the proper
58 sys.modules['warnings'] = self.module
71 with original_warnings.catch_warnings(module=self.module) as w
190 module = c_warnings variable in class:CFilterTests
193 module = py_warnings variable in class:PyFilterTests
352 module = c_warnings variable in class:CWarnTests
361 module = py_warnings variable in class:PyWarnTests
402 module = c_warnings variable in class:CWCmdLineTests
405 module = py_warnings variable in class:PyWCmdLineTests
412 module = c_warnings variable in class:_WarningsTests
591 module = c_warnings variable in class:CWarningsDisplayTests
594 module = py_warnings variable in class:PyWarningsDisplayTests
701 module = c_warnings variable in class:CCatchWarningTests
704 module = py_warnings variable in class:PyCatchWarningTests
740 module = c_warnings variable in class:CEnvironmentVariableTests
743 module = py_warnings variable in class:PyEnvironmentVariableTests
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_heapq.py 29 module = None variable in class:TestHeap
39 self.module.heappush(heap, item)
43 item = self.module.heappop(heap)
52 self.assertRaises(TypeError, self.module.heappush, [])
54 self.assertRaises(TypeError, self.module.heappush, None, None)
55 self.assertRaises(TypeError, self.module.heappop, None)
69 self.module.heapify(heap)
72 self.assertRaises(TypeError, self.module.heapify, None)
78 self.module.heappush(heap, item)
80 self.module.heappop(heap
216 module = py_heapq variable in class:TestHeapPython
221 module = c_heapq variable in class:TestHeapC
329 module = None variable in class:TestErrorHandling
392 module = py_heapq variable in class:TestErrorHandlingPython
397 module = c_heapq variable in class:TestErrorHandlingC
    [all...]
test_sundry.py 31 import distutils.command.bdist_msi # if msi module is not build namespace
89 # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it

Completed in 496 milliseconds

<<11121314151617181920>>