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

12

/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
H A Dpvmp3_framedecoder.cpp123 ; Define module specific macros here
140 ; Variable declaration - defined here and used outside this module
145 ; Declare functions defined elsewhere and referenced in this module
150 ; Declare variables used in this module but defined elsewhere
562 pMainData->pBuffer[module(pMainData->offset++, BUFSIZE)] = (uint8)val;
607 pVars->mainDataStream.offset = module(pVars->mainDataStream.offset, BUFSIZE);
614 fillDataBuf(&pVars->mainDataStream, *(pVars->inputStream.pBuffer + module(offset++ , BUFSIZE)));
615 fillDataBuf(&pVars->mainDataStream, *(pVars->inputStream.pBuffer + module(offset++ , BUFSIZE)));
619 fillDataBuf(&pVars->mainDataStream, *(pVars->inputStream.pBuffer + module(offset , BUFSIZE)));
/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...]
/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;
69 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
71 if (module == NULL) {
76 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false);
78 delete module;
95 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
97 if (module
123 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
184 llvm::Module *module = local
[all...]
H A DCompiler.cpp55 "Failed to materialize the module.",
331 llvm::Module &module = pScript.getSource().getModule(); local
338 // Materialize the bitcode module.
339 if (module.getMaterializer() != NULL) {
341 // A module with non-null materializer means that it is a lazy-load module.
344 if (module.MaterializeAllPermanently(&error)) {
345 ALOGE("Failed to materialize the module `%s'! (%s)",
346 module.getModuleIdentifier().c_str(), error.c_str());
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompiler.cpp35 llvm::Module &module = pScript.getSource().getModule(); local
46 pm.run(module);
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp124 llvm::Module *module = NULL; local
127 module = llvm_3_0::ParseBitcodeFile(MEM.get(), *mContext, &error);
129 module = llvm_2_7::ParseBitcodeFile(MEM.get(), *mContext, &error);
135 if (!module) {
144 llvm::WriteBitcodeToFile(module, OS);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompiler.cpp98 llvm::Module &module = script.getSource().getModule(); local
102 "%s!", module.getModuleIdentifier().c_str());
111 rs_passes.run(module);
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);
348 module.getModuleIdentifier().c_str());
353 module
[all...]
/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/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/base/data/fonts/
H A DAndroid.mk107 # It also serves as the module name and the dest file name.
108 define build-one-font-module
166 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
168 build-one-font-module :=
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk19 # Build module libfilterfw_static
/frameworks/av/include/media/
H A DIAudioFlinger.h135 virtual audio_io_handle_t openOutput(audio_module_handle_t module,
148 virtual audio_io_handle_t openInput(audio_module_handle_t module,
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c187 downmix_module_t *module; local
227 module = malloc(sizeof(downmix_module_t));
229 module->itfe = &gDownmixInterface;
231 module->context.state = DOWNMIX_STATE_UNINITIALIZED;
233 ret = Downmix_Init(module);
236 free(module);
240 *pHandle = (effect_handle_t) module;
242 ALOGV("DownmixLib_Create() %p , size %d", module, sizeof(downmix_module_t));
556 * pDwmModule pointer to downmix effect module
580 ALOGV("Downmix_Init module
[all...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk3 # this var will hold all the test apk module names later.
/frameworks/compile/slang/
H A DSlangData.mk21 # LOCAL_MODULE -- set (as usual) to name the module being built
/frameworks/ex/variablespeed/jni/
H A DAndroid.mk19 # TODO: Change module name to use underscores not hyphens.
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk19 # Build module libfilterfw_jni
/frameworks/av/services/camera/libcameraservice/
H A DCameraClient.h62 status_t initialize(camera_module_t *module);
H A DCameraService.h115 virtual status_t initialize(camera_module_t *module) = 0;

Completed in 258 milliseconds

12