Searched refs:module (Results 1 - 25 of 51) 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...]
/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
128 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
189 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/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/AndroidBitcode/
H A DABCCompiler.cpp35 llvm::Module &module = pScript.getSource().getModule(); local
46 pm.run(module);
/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.cpp98 llvm::Module &module = script.getSource().getModule(); local
102 "%s!", module.getModuleIdentifier().c_str());
114 rs_passes.run(module);
/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");
61 IRBuilder builder(module, config);
65 if (linker.link(module, builder))
100 Module module("libplasma.so");
101 IRBuilder builder(module, config);
124 if (linker.link(module, builder)) {
348 Module module; local
349 IRBuilder builder(module, config);
463 if (linker.link(module, builder)) {
/frameworks/av/services/camera/libcameraservice/
H A DProCamera2Client.h87 virtual status_t initialize(camera_module_t *module);
H A DCamera2ClientBase.h56 virtual status_t initialize(camera_module_t *module);
H A DCameraDeviceBase.h44 virtual status_t initialize(camera_module_t *module) = 0;
H A DCamera2ClientBase.cpp73 status_t Camera2ClientBase<TClientBase>::initialize(camera_module_t *module) { argument
91 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/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.h134 virtual audio_io_handle_t openOutput(audio_module_handle_t module,
147 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...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk3 # this var will hold all the test apk module names later.
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk19 # Build module libfilterfw_jni

Completed in 1851 milliseconds

123