Searched refs:module (Results 1 - 25 of 56) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_getbits.cpp74 ; Define module specific macros here
92 ; Variable declaration - defined here and used outside this module
97 ; Declare functions defined elsewhere and referenced in this module
102 ; Declare variables used in this module but defined elsewhere
129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
130 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE));
131 Elem2 = *(ptBitStream->pBuffer + module(offset + 2, BUFSIZE));
132 Elem3 = *(ptBitStream->pBuffer + module(offset + 3, BUFSIZE));
141 bitIndex = module(ptBitStream->usedBits, INBUF_BIT_WIDTH);
170 Elem = *(ptBitStream->pBuffer + module(offse
[all...]
H A Dpvmp3_dec_defs.h54 ; Define module specific macros here
56 #define module(x, POW2) ((x)&(POW2-1)) macro
98 ; Declare variables used in this module but defined elsewhere
/frameworks/base/services/jni/
H A Dcom_android_server_LightsService.cpp51 static light_device_t* get_device(hw_module_t* module, char const* name) argument
55 err = module->methods->open(module, name, &device);
66 hw_module_t* module; local
71 err = hw_get_module(LIGHTS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
74 = get_device(module, LIGHT_ID_BACKLIGHT);
76 = get_device(module, LIGHT_ID_KEYBOARD);
78 = get_device(module, LIGHT_ID_BUTTONS);
80 = get_device(module, LIGHT_ID_BATTERY);
82 = get_device(module, LIGHT_ID_NOTIFICATION
[all...]
H A Dcom_android_server_ConsumerIrService.cpp33 hw_module_t const* module; local
37 err = hw_get_module(CONSUMERIR_HARDWARE_MODULE_ID, &module);
43 err = module->methods->open(module, CONSUMERIR_TRANSMITTER,
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp36 // reduce the startup time. On success, return the LLVM module object created
42 llvm::Module *module = llvm::getLazyBitcodeModule(pInput, pContext, &error); local
44 if (module == NULL) {
49 return module;
74 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
76 if (module == NULL) {
81 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false);
83 delete module;
100 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
102 if (module
161 llvm::Module *module = local
[all...]
H A DCompiler.cpp56 return "Failed to materialize the module.";
249 llvm::Module &module = pScript.getSource().getModule(); local
256 // Materialize the bitcode module.
257 if (module.getMaterializer() != NULL) {
259 // A module with non-null materializer means that it is a lazy-load module.
262 if (module.MaterializeAllPermanently(&error)) {
263 ALOGE("Failed to materialize the module `%s'! (%s)",
264 module.getModuleIdentifier().c_str(), error.c_str());
274 *IRStream << module; local
[all...]
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp126 llvm::Module *module = NULL; local
129 module = llvm_3_0::ParseBitcodeFile(MEM.get(), *mContext, &error);
131 module = llvm_2_7::ParseBitcodeFile(MEM.get(), *mContext, &error);
137 if (!module) {
147 llvm_3_2::WriteBitcodeToFile(module, OS);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoExtractor.cpp131 const llvm::Module &module = pSource.getModule(); local
132 const char *module_name = module.getModuleIdentifier().c_str();
135 module.getNamedMetadata(pragma_metadata_name);
137 module.getNamedMetadata(export_var_metadata_name);
139 module.getNamedMetadata(export_func_metadata_name);
141 module.getNamedMetadata(export_foreach_name_metadata_name);
143 module.getNamedMetadata(export_foreach_metadata_name);
145 module.getNamedMetadata(object_slot_metadata_name);
350 module.getModuleIdentifier().c_str());
355 module
[all...]
H A DRSCompiler.cpp94 llvm::Module &module = script.getSource().getModule(); local
98 "%s!", module.getModuleIdentifier().c_str());
/frameworks/native/libs/ui/
H A DGraphicBufferMapper.cpp41 hw_module_t const* module; local
42 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
43 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
45 mAllocMod = (gralloc_module_t const *)module;
H A DGraphicBufferAllocator.cpp41 hw_module_t const* module; local
42 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
43 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
45 gralloc_open(module, &mAllocDev);
H A DFramebufferNativeWindow.cpp78 hw_module_t const* module; local
79 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) == 0) {
83 err = framebuffer_open(module, &fbDev);
86 err = gralloc_open(module, &grDev);
149 ALOGE("Couldn't get gralloc module");
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp321 llvm::OwningPtr<llvm::Module> module; local
323 module.reset(llvm::ParseBitcodeFile(mem.get(), ctx, &errmsg));
324 if (module.get() != 0 && module->MaterializeAllPermanently(&errmsg)) {
325 module.reset();
328 if (module.get() == 0) {
341 module->print(tof->os(), ann.get());
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp55 Module module("test", script);
61 IRBuilder builder(module, config);
65 if (linker.link(module, builder))
101 Module module("libplasma.so", script);
102 IRBuilder builder(module, config);
125 if (linker.link(module, builder)) {
354 Module module(script);
355 IRBuilder builder(module, config);
469 if (linker.link(module, builder)) {
/frameworks/av/services/camera/libcameraservice/api_pro/
H A DProCamera2Client.h87 virtual status_t initialize(camera_module_t *module);
/frameworks/base/data/fonts/
H A DAndroid.mk89 # It also serves as the module name and the dest file name.
90 define build-one-font-module
146 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
148 build-one-font-module :=
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk19 # Build module libfilterfw_static
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A DAndroid.mk20 # Build module libfilterframework
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.h108 virtual status_t initialize(camera_module_t *module);
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.h57 virtual status_t initialize(camera_module_t *module);
H A DCameraDeviceBase.h44 virtual status_t initialize(camera_module_t *module) = 0;
H A DCamera2ClientBase.cpp76 status_t Camera2ClientBase<TClientBase>::initialize(camera_module_t *module) { argument
94 res = mDevice->initialize(module);
/frameworks/compile/libbcc/include/bcinfo/
H A DMetadataExtractor.h80 * Reads metadata from \p module.
82 * \param module - input module.
84 MetadataExtractor(const llvm::Module *module);
96 * \return number of exported global variables (slots) in this script/module.
110 * \return number of exported global functions (slots) in this script/module.
124 * \return number of exported ForEach functions in this script/module.
/frameworks/av/include/media/
H A DIAudioFlinger.h144 virtual audio_io_handle_t openOutput(audio_module_handle_t module,
158 virtual audio_io_handle_t openInput(audio_module_handle_t module,
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c168 downmix_module_t *module; local
208 module = malloc(sizeof(downmix_module_t));
210 module->itfe = &gDownmixInterface;
212 module->context.state = DOWNMIX_STATE_UNINITIALIZED;
214 ret = Downmix_Init(module);
217 free(module);
221 *pHandle = (effect_handle_t) module;
223 ALOGV("DownmixLib_Create() %p , size %d", module, sizeof(downmix_module_t));
537 * pDwmModule pointer to downmix effect module
561 ALOGV("Downmix_Init module
[all...]

Completed in 511 milliseconds

123