/frameworks/compile/libbcc/lib/Core/ |
H A D | BCCContextImpl.h | 39 BCCContextImpl(BCCContext &pContext) { } argument
|
H A D | Source.cpp | 40 static inline llvm::Module *helper_load_bitcode(llvm::LLVMContext &pContext, argument 42 llvm::ErrorOr<llvm::Module *> moduleOrError = llvm::getLazyBitcodeModule(std::move(pInput), pContext); 60 Source *Source::CreateFromBuffer(BCCContext &pContext, argument 73 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, 79 Source *result = CreateFromModule(pContext, pName, *module, /* pNoDelete */false); 87 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) { argument 99 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, 105 Source *result = CreateFromModule(pContext, pPath.c_str(), *module, /* pNoDelete */false); 113 Source *Source::CreateFromModule(BCCContext &pContext, const char* name, llvm::Module &pModule, argument 123 Source *result = new (std::nothrow) Source(name, pContext, pModul 131 Source(const char* name, BCCContext &pContext, llvm::Module &pModule, bool pNoDelete) argument 154 CreateEmpty(BCCContext &pContext, const std::string &pName) argument [all...] |
/frameworks/wilhelm/src/itf/ |
H A D | IVisualization.c | 23 slVisualizationCallback callback, void *pContext, SLmilliHertz rate) 33 thiz->mContext = pContext; 22 IVisualization_RegisterVisualizationCallback(SLVisualizationItf self, slVisualizationCallback callback, void *pContext, SLmilliHertz rate) argument
|
H A D | IMIDIMessage.c | 39 slMetaEventCallback callback, void *pContext) 46 thiz->mMetaEventContext = pContext; 55 slMIDIMessageCallback callback, void *pContext) 62 thiz->mMessageContext = pContext; 38 IMIDIMessage_RegisterMetaEventCallback(SLMIDIMessageItf self, slMetaEventCallback callback, void *pContext) argument 54 IMIDIMessage_RegisterMIDIMessageCallback(SLMIDIMessageItf self, slMIDIMessageCallback callback, void *pContext) argument
|
H A D | IOutputMix.c | 48 slMixDeviceChangeCallback callback, void *pContext) 55 thiz->mContext = pContext; 47 IOutputMix_RegisterDeviceChangeCallback(SLOutputMixItf self, slMixDeviceChangeCallback callback, void *pContext) argument
|
H A D | IBufferQueue.c | 147 slBufferQueueCallback callback, void *pContext) 156 thiz->mContext = pContext; 146 IBufferQueue_RegisterCallback(SLBufferQueueItf self, slBufferQueueCallback callback, void *pContext) argument
|
H A D | IPrefetchStatus.c | 61 slPrefetchCallback callback, void *pContext) 68 thiz->mContext = pContext; 60 IPrefetchStatus_RegisterCallback(SLPrefetchStatusItf self, slPrefetchCallback callback, void *pContext) argument
|
H A D | IAndroidBufferQueue.c | 236 slAndroidBufferQueueCallback callback, void *pContext) 247 thiz->mContext = pContext; 235 IAndroidBufferQueue_RegisterCallback(SLAndroidBufferQueueItf self, slAndroidBufferQueueCallback callback, void *pContext) argument
|
H A D | IAudioIODeviceCapabilities.c | 72 void *pContext) 79 thiz->mAvailableAudioInputsChangedContext = pContext; 142 void *pContext) 149 thiz->mAvailableAudioOutputsChangedContext = pContext; 159 void *pContext) 166 thiz->mDefaultDeviceIDMapChangedContext = pContext; 70 IAudioIODeviceCapabilities_RegisterAvailableAudioInputsChangedCallback( SLAudioIODeviceCapabilitiesItf self, slAvailableAudioInputsChangedCallback callback, void *pContext) argument 140 IAudioIODeviceCapabilities_RegisterAvailableAudioOutputsChangedCallback( SLAudioIODeviceCapabilitiesItf self, slAvailableAudioOutputsChangedCallback callback, void *pContext) argument 157 IAudioIODeviceCapabilities_RegisterDefaultDeviceIDMapChangedCallback( SLAudioIODeviceCapabilitiesItf self, slDefaultDeviceIDMapChangedCallback callback, void *pContext) argument
|
H A D | IDynamicInterfaceManagement.c | 441 slDynamicInterfaceManagementCallback callback, void *pContext) 449 thiz->mContext = pContext; 440 IDynamicInterfaceManagement_RegisterCallback(SLDynamicInterfaceManagementItf self, slDynamicInterfaceManagementCallback callback, void *pContext) argument
|
H A D | IPlay.c | 240 static SLresult IPlay_RegisterCallback(SLPlayItf self, slPlayCallback callback, void *pContext) argument 247 thiz->mContext = pContext;
|
H A D | IRecord.c | 117 void *pContext) 124 thiz->mContext = pContext; 116 IRecord_RegisterCallback(SLRecordItf self, slRecordCallback callback, void *pContext) argument
|
H A D | IStreamInformation.c | 215 void * pContext) /* [in] */ 224 thiz->mContext = pContext; 213 IStreamInformation_RegisterStreamChangeCallback( XAStreamInformationItf self, xaStreamEventChangeCallback callback, void * pContext) argument
|
H A D | IObject.c | 388 slObjectCallback callback, void *pContext) 395 thiz->mContext = pContext; 387 IObject_RegisterCallback(SLObjectItf self, slObjectCallback callback, void *pContext) argument
|
/frameworks/compile/libbcc/tools/bcc_compat/ |
H A D | Main.cpp | 116 RSScript *PrepareRSScript(BCCContext &pContext, argument 122 Source *source = Source::CreateFromFile(pContext, input_bitcode);
|
/frameworks/av/media/libeffects/proxy/ |
H A D | EffectProxy.cpp | 61 EffectContext* pContext; local 67 pContext = new EffectContext; 68 pContext->sessionId = sessionId; 69 pContext->ioId = ioId; 70 pContext->uuid = *uuid; 71 pContext->common_itfe = &gEffectInterface; 75 pContext->eHandle[SUB_FX_HOST] = pContext->eHandle[SUB_FX_OFFLOAD] = NULL; 81 pContext->sube = new sub_effect_entry_t*[SUB_FX_COUNT]; 82 pContext 148 EffectContext * pContext = (EffectContext *)handle; local 186 EffectContext *pContext = (EffectContext *) self; local 207 EffectContext *pContext = (EffectContext *) self; local 339 EffectContext * pContext = (EffectContext *) self; local [all...] |
/frameworks/wilhelm/src/desktop/ |
H A D | SndFile.c | 26 void SndFile_Callback(SLBufferQueueItf caller, void *pContext) argument 28 CAudioPlayer *thisAP = (CAudioPlayer *) pContext;
|
/frameworks/wilhelm/tests/examples/ |
H A D | slesTestSawtoothBufferQueue.cpp | 85 void *pContext) 89 //fprintf(stdout, " pContext=%p\n", pContext); 90 CallbackCntxt *pCntxt = (CallbackCntxt*)pContext; 83 BufferQueueCallback( SLBufferQueueItf queueItf, void *pContext) argument
|
H A D | slesTestRecBuffQueue.cpp | 91 void *pContext __unused, 111 void *pContext) 115 CallbackCntxt *pCntxt = (CallbackCntxt*)pContext; 109 RecBufferQueueCallback( SLAndroidSimpleBufferQueueItf queueItf, void *pContext) argument
|
/frameworks/av/media/libeffects/loudness/ |
H A D | EffectLoudnessEnhancer.cpp | 66 void LE_reset(LoudnessEnhancerContext *pContext) argument 68 ALOGV(" > LE_reset(%p)", pContext); 70 if (pContext->mCompressor != NULL) { 71 float targetAmp = pow(10, pContext->mTargetGainmB/2000.0f); // mB to linear amplification 72 ALOGV("LE_reset(): Target gain=%dmB <=> factor=%.2fX", pContext->mTargetGainmB, targetAmp); 73 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate); 75 ALOGE("LE_reset(%p): null compressors, can't apply target gain", pContext); 92 // pContext: effect engine context 100 int LE_setConfig(LoudnessEnhancerContext *pContext, effect_config_ argument 134 LE_getConfig(LoudnessEnhancerContext *pContext, effect_config_t *pConfig) argument 152 LE_init(LoudnessEnhancerContext *pContext) argument 207 LoudnessEnhancerContext *pContext = new LoudnessEnhancerContext; local 231 LoudnessEnhancerContext * pContext = (LoudnessEnhancerContext *)handle; local 269 LoudnessEnhancerContext * pContext = (LoudnessEnhancerContext *)self; local 313 LoudnessEnhancerContext * pContext = (LoudnessEnhancerContext *)self; local 433 LoudnessEnhancerContext * pContext = (LoudnessEnhancerContext *) self; local [all...] |
/frameworks/compile/libbcc/lib/Renderscript/ |
H A D | RSCompilerDriver.cpp | 209 bool RSCompilerDriver::build(BCCContext &pContext, argument 246 Source *source = Source::CreateFromBuffer(pContext, pResName,
|
/frameworks/compile/mclinker/include/mcld/MC/ |
H A D | Input.h | 102 void setContext(LDContext* pContext) { m_pContext = pContext; } argument
|
/frameworks/wilhelm/tests/listening/ |
H A D | slesTest_playMuteSolo.cpp | 102 void PlayEventCallback( SLPlayItf caller __unused, void *pContext, SLuint32 event __unused) argument 104 Context *context = (Context *) pContext;
|
/frameworks/wilhelm/tests/mimeUri/ |
H A D | slesTestLoopUri.cpp | 63 void PrefetchEventCallback( SLPrefetchStatusItf caller, void *pContext, SLuint32 event) argument 66 // pContext is unused here, so we pass NULL 67 assert(pContext == NULL); 106 void *pContext, 109 // pContext is unused here, so we pass NULL 110 assert(NULL == pContext); 104 PlayEventCallback( SLPlayItf caller __unused, void *pContext, SLuint32 event) argument
|
H A D | slesTestManyPlayers.cpp | 74 void PrefetchEventCallback( SLPrefetchStatusItf caller, void *pContext, SLuint32 event) argument 78 int* pPlayerId = (int*)pContext; 104 void *pContext, 108 int* pPlayerId = (int*)pContext; 102 PlayEventCallback( SLPlayItf caller, void *pContext, SLuint32 event) argument
|