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

12

/frameworks/base/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...]
H A Dcom_android_server_location_GpsLocationProvider.cpp238 hw_module_t* module; local
253 err = hw_get_module(GPS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
256 err = module->methods->open(module, GPS_HARDWARE_MODULE_ID, &device);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DSourceInfo.h42 llvm::OwningPtr<llvm::Module> module; member in class:bcc::SourceInfo
43 // Note: module should not be a part of union. Since, we are going to
44 // use module to store the pointer to parsed bitcode.
76 static SourceInfo *createFromModule(llvm::Module *module,
80 return module.take();
84 return module.get();
H A DSourceInfo.cpp108 SourceInfo *SourceInfo::createFromModule(llvm::Module *module, argument
117 result->module.reset(module);
150 module.reset(SC->parseBitcodeFile(MEM.get()));
163 module.reset(SC->parseBitcodeFile(MEM.get()));
171 return (module.get()) ? 0 : 1;
H A DScriptCompiled.h82 int readModule(llvm::Module *module) { argument
83 return mCompiler.readModule(module);
86 int linkModule(llvm::Module *module) { argument
87 return mCompiler.linkModule(module);
H A DCompiler.h147 int readModule(llvm::Module *module) { argument
148 mModule = module;
152 int linkModule(llvm::Module *module);
H A Dbcc.cpp87 LLVMModuleRef module,
90 return unwrap(script)->addSourceModule(0, unwrap(module), flags);
85 bccReadModule(BCCScriptRef script, char const *resName , LLVMModuleRef module, unsigned long flags) argument
H A DScript.h101 llvm::Module *module,
H A DScript.cpp122 llvm::Module *module,
130 if (!module) {
132 LOGE("Invalid argument: module = NULL\n");
136 mSourceList[idx] = SourceInfo::createFromModule(module, flags);
140 LOGE("Out of memory when add source module\n");
349 // Set the main source module
356 LOGE("Unable to read source module\n");
360 // Link the source module with the library module
363 LOGE("Unable to link library module\
121 addSourceModule(size_t idx, llvm::Module *module, unsigned long flags) argument
[all...]
/frameworks/base/libs/ui/
H A DGraphicBufferMapper.cpp39 hw_module_t const* module; local
40 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
41 LOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
43 mAllocMod = (gralloc_module_t const *)module;
H A DGraphicBufferAllocator.cpp39 hw_module_t const* module; local
40 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
41 LOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
43 gralloc_open(module, &mAllocDev);
H A DFramebufferNativeWindow.cpp82 hw_module_t const* module; local
83 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) == 0) {
87 err = framebuffer_open(module, &fbDev);
90 err = gralloc_open(module, &grDev);
136 LOGE("Couldn't get gralloc module");
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp105 llvm::Module *module = local
107 if (!module) {
116 llvm::WriteBitcodeToStream(module, Stream);
H A DMetadataExtractor.cpp227 llvm::Module *module = llvm::ParseBitcodeFile(MEM.get(), *mContext, &error); local
228 if (!module) {
235 module->getNamedMetadata(ExportVarMetadataName);
237 module->getNamedMetadata(ExportFuncMetadataName);
239 module->getNamedMetadata(ExportForEachMetadataName);
241 module->getNamedMetadata(PragmaMetadataName);
243 module->getNamedMetadata(ObjectSlotMetadataName);
/frameworks/compile/libbcc/include/bcc/
H A Dbcc.h81 LLVMModuleRef module,
/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/libeffects/testlibs/
H A DEffectReverb.c120 reverb_module_t *module; local
143 module = malloc(sizeof(reverb_module_t));
145 module->itfe = &gReverbInterface;
147 module->context.mState = REVERB_STATE_UNINITIALIZED;
155 ret = Reverb_Init(module, aux, preset);
158 free(module);
162 *pHandle = (effect_handle_t) module;
164 module->context.mState = REVERB_STATE_INITIALIZED;
166 LOGV("EffectLibCreateEffect %p ,size %d", module, sizeof(reverb_module_t));
453 * pRvbModule - pointer to reverb effect module
[all...]
/frameworks/base/services/camera/libcameraservice/
H A DCameraHardwareInterface.h99 status_t initialize(hw_module_t *module) argument
102 int rc = module->methods->open(module, mName.string(),
/frameworks/base/data/fonts/
H A Dfonts.mk43 # Details see module definitions in Android.mk.
/frameworks/base/opengl/libagl/
H A Degl.cpp243 gralloc_module_t const* module; member in struct:android::egl_window_surface_v2_t
343 nativeWindow(window), buffer(0), previousBuffer(0), module(0),
348 module = reinterpret_cast<gralloc_module_t const*>(pModule);
431 err = module->lock(module, buf->handle,
442 err = module->unlock(module, buf->handle);
H A Dtexture.cpp136 gralloc_module_t const* module = local
140 int err = module->lock(module, native_buffer->handle,
164 gralloc_module_t const* module = local
167 module->unlock(module, native_buffer->handle);

Completed in 629 milliseconds

12