Searched defs:pValue (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp99 const ELFAttributeValue& pValue) {
109 assert((pValue.type() == ELFAttributeValue::String) &&
112 const std::string& data = pValue.getStringValue();
474 static void encode_secondary_compatibility_attribute(ELFAttributeValue& pValue, argument
477 pValue.setStringValue("");
481 pValue.setStringValue(std::string(new_value, sizeof(new_value)));
98 decode_secondary_compatibility_attribute( const ELFAttributeValue& pValue) argument
H A DARMRelocator.cpp70 static inline void helper_clear_thumb_bit(Relocator::DWord& pValue) { argument
71 pValue &= (~0x1);
186 Relocator::DWord pValue) {
189 (((pValue >> 4) & 0xf000U) | ((pValue >> 15) & 0x0800U) |
190 ((pValue >> 4) & 0x0700U) | (pValue & 0x00ffU)),
195 Relocator::DWord pValue,
198 pValue &= 0xfbf08f00U;
199 pValue |
185 helper_extract_thumb_movw_movt_addend( Relocator::DWord pValue) argument
194 helper_insert_val_thumb_movw_movt_inst( Relocator::DWord pValue, Relocator::DWord pImm) argument
264 helper_check_signed_overflow(Relocator::DWord pValue, unsigned bits) argument
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp487 void Mips32GOT::setEntryValue(Fragment* entry, uint64_t pValue) { argument
488 llvm::cast<Mips32GOTEntry>(entry)->setValue(pValue);
503 Fragment* Mips32GOT::createEntry(uint64_t pValue, SectionData* pParent) { argument
504 return new Mips32GOTEntry(pValue, pParent);
522 void Mips64GOT::setEntryValue(Fragment* entry, uint64_t pValue) { argument
523 llvm::cast<Mips64GOTEntry>(entry)->setValue(pValue);
538 Fragment* Mips64GOT::createEntry(uint64_t pValue, SectionData* pParent) { argument
539 return new Mips64GOTEntry(pValue, pParent);
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp139 bool AudioSfDecoder::getPcmFormatKeyValue(uint32_t index, uint32_t size, uint32_t* pValue) { argument
150 *pValue = mPcmFormatValues[index];
H A Dandroid_Effect.cpp200 int32_t param, int32_t param2, void *pValue)
216 memcpy(pValue, p->data + p->psize, p->vsize);
226 int32_t param, int32_t param2, void *pValue)
238 memcpy(p->data + p->psize, pValue, p->vsize);
249 int32_t param, void *pValue) {
252 pValue, bb_valueSize(param));
257 int32_t param, void *pValue) {
260 pValue, bb_valueSize(param));
352 int32_t param, void *pValue) {
355 pValue, virt_valueSiz
199 android_eq_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, int32_t param2, void *pValue) argument
225 android_eq_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, int32_t param2, void *pValue) argument
248 android_bb_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
256 android_bb_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
351 android_virt_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
359 android_virt_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
425 android_erev_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
440 android_erev_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
607 android_fx_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) argument
628 android_fx_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) argument
927 android_aec_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
933 android_aec_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
963 android_agc_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
969 android_agc_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
995 android_ns_setParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
1002 android_ns_getParam(const android::sp<android::AudioEffect>& pFx, int32_t param, void *pValue) argument
[all...]
H A DAudioPlayer_to_android.cpp2177 // pValue != NULL
2179 SLuint32 index, SLuint32 size, SLMetadataInfo *pValue) {
2190 pValue->encoding = SL_CHARACTERENCODING_BINARY;
2191 memcpy((char *) pValue->langCountry, "en", 3); // applicable here?
2196 (SLuint32*)pValue->data)))) {
2199 pValue->size = valueSize;
2178 android_audioPlayer_metadata_getValue(CAudioPlayer *ap, SLuint32 index, SLuint32 size, SLMetadataInfo *pValue) argument
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp832 static status_t parseValueWithUnit(const char* str, uint32_t* pValue) { argument
839 *pValue = value;
842 *pValue = value * 1000000; // check for overflow?
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c711 * pValue pointer to parameter value
723 int Downmix_setParameter(downmix_object_t *pDownmixer, int32_t param, uint32_t size, void *pValue) { argument
727 pDownmixer, param, *(int16_t *)pValue, *(int32_t *)pValue);
737 value16 = *(int16_t *)pValue;
765 * pValue pointer to variable to hold retrieved value
769 * *pValue updated with parameter value
779 int Downmix_getParameter(downmix_object_t *pDownmixer, int32_t param, uint32_t *pSize, void *pValue) { argument
789 pValue16 = (int16_t *)pValue;
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp403 LDSymbol::ValueType pValue,
435 frag = FragmentRef::Create(*pSection, pValue);
438 name, pType, pDesc, pBind, pSize, pValue, frag, pVis);
444 pInput, name, pType, pDesc, pBind, pSize, pValue, pVis);
459 LDSymbol::ValueType pValue,
485 pValue,
498 input_sym->setValue(pValue);
523 output_sym->setValue(pValue);
534 LDSymbol::ValueType pValue,
560 pValue,
397 AddSymbol(Input& pInput, const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBind, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, LDSection* pSection, ResolveInfo::Visibility pVis) argument
454 addSymbolFromObject(const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
528 addSymbolFromDynObj(Input& pInput, const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility) argument
636 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
706 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
753 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
803 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp184 int Reverb_setParameter (ReverbContext *pContext, void *pParam, void *pValue);
188 void *pValue);
1526 // pValue - pointer to variable to hold retrieved value
1530 // *pValue updated with parameter value
1541 void *pValue){
1553 *(uint16_t *)pValue = pContext->nextPreset;
1642 pProperties = (t_reverb_settings *) pValue;
1680 *(int16_t *)pValue = ReverbGetRoomLevel(pContext);
1683 // *(int16_t *)pValue);
1686 *(int16_t *)pValue
1538 Reverb_getParameter(ReverbContext *pContext, void *pParam, uint32_t *pValueSize, void *pValue) argument
1754 Reverb_setParameter(ReverbContext *pContext, void *pParam, void *pValue) argument
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.c744 * pValue - pointer to variable to hold retrieved value
748 * *pValue updated with parameter value
757 void *pValue) {
771 pValue16 = (int16_t *)pValue;
810 pValue32 = (int32_t *) pValue;
811 pValue16 = (int16_t *) pValue;
812 pProperties = (t_reverb_settings *) pValue;
1015 pReverb, param, *(int *)pValue);
1029 * pValue - pointer to parameter value
1040 void *pValue) {
756 Reverb_getParameter(reverb_object_t *pReverb, int32_t param, uint32_t *pSize, void *pValue) argument
1039 Reverb_setParameter(reverb_object_t *pReverb, int32_t param, uint32_t size, void *pValue) argument
[all...]
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp141 int BassBoost_setParameter (EffectContext *pContext, void *pParam, void *pValue);
145 void *pValue);
146 int Virtualizer_setParameter (EffectContext *pContext, void *pParam, void *pValue);
150 void *pValue);
154 void *pValue);
158 void *pValue);
159 int Volume_setParameter (EffectContext *pContext, void *pParam, void *pValue);
163 void *pValue);
2001 // pValue - pointer to variable to hold retrieved value
2005 // *pValue update
2013 BassBoost_getParameter(EffectContext *pContext, void *pParam, uint32_t *pValueSize, void *pValue) argument
2084 BassBoost_setParameter(EffectContext *pContext, void *pParam, void *pValue) argument
2129 Virtualizer_getParameter(EffectContext *pContext, void *pParam, uint32_t *pValueSize, void *pValue) argument
2233 Virtualizer_setParameter(EffectContext *pContext, void *pParam, void *pValue) argument
2287 Equalizer_getParameter(EffectContext *pContext, void *pParam, uint32_t *pValueSize, void *pValue) argument
2488 Equalizer_setParameter(EffectContext *pContext, void *pParam, uint32_t valueSize, void *pValue) argument
2595 Volume_getParameter(EffectContext *pContext, void *pParam, uint32_t *pValueSize, void *pValue) argument
2687 Volume_setParameter(EffectContext *pContext, void *pParam, void *pValue) argument
[all...]
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp296 void *pValue)
300 t_agc_settings *pProperties = (t_agc_settings *)pValue;
332 *(int16_t *) pValue = (int16_t)(agc->target_level_dbfs() * -100);
333 ALOGV("AgcGetParameter() target level %d milliBels", *(int16_t *) pValue);
336 *(int16_t *) pValue = (int16_t)(agc->compression_gain_db() * 100);
337 ALOGV("AgcGetParameter() comp gain %d milliBels", *(int16_t *) pValue);
340 *(bool *) pValue = (bool)agc->is_limiter_enabled();
342 (*(int16_t *) pValue != 0) ? "true" : "false");
357 int AgcSetParameter (preproc_effect_t *effect, void *pParam, void *pValue) argument
361 t_agc_settings *pProperties = (t_agc_settings *)pValue;
293 AgcGetParameter(preproc_effect_t *effect, void *pParam, uint32_t *pValueSize, void *pValue) argument
456 AecGetParameter(preproc_effect_t *effect, void *pParam, uint32_t *pValueSize, void *pValue) argument
481 AecSetParameter(preproc_effect_t *effect, void *pParam, void *pValue) argument
604 NsSetParameter(preproc_effect_t *effect, void *pParam, void *pValue) argument
[all...]

Completed in 353 milliseconds

12