Searched defs:pValue (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h27 size_t encode(ByteType *&pBuf, IntType pValue);
40 size_t size(IntType pValue) { argument
42 while (pValue > 0x80) {
43 pValue >>= 7;
56 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
59 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
65 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
68 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
100 size_t encode(char *&pBuf, IntType pValue) { argument
101 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
[all...]
H A DUniqueGCFactory.h73 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { argument
80 construct(data, pValue);
H A DAllocators.h116 // pPtr, and using its copy constructor to initialized its value to pValue.
119 // @param pValue the value to be constructed
120 void construct(pointer pPtr, const_reference pValue) argument
121 { new (pPtr) value_type(pValue); }
125 // pValue.
361 void construct(pointer pObject, const DataType& pValue) argument
362 { ::new((void *)pObject) value_type(pValue); }
424 void construct(DataType* pObject, const DataType& pValue) argument
427 void construct(pointer pObject, const_reference pValue) argument
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h64 void setValue(const ValueType& pValue) argument
65 { m_Value = pValue; }
H A DTreeBase.h120 Node(const value_type& pValue) argument
121 : NodeBase(), data(&pValue)
/frameworks/compile/mclinker/lib/LD/
H A DELFReader.cpp164 uint64_t ELFReaderIF::getSymValue(uint64_t pValue, argument
172 return pValue;
181 return pValue;
/frameworks/compile/mclinker/lib/Support/
H A DLEB128.cpp17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) { argument
20 ByteType byte = pValue & 0x7f;
21 pValue >>= 7;
22 if (pValue)
26 } while (pValue);
36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) { argument
37 if ((pValue & ~0x7f) == 0) {
38 *pBuf++ = static_cast<ByteType>(pValue);
40 } else if ((pValue & ~0x3fff) == 0){
41 *pBuf++ = static_cast<ByteType>((pValue
67 encode(ByteType *&pBuf, int64_t pValue) argument
89 encode(ByteType *&pBuf, int32_t pValue) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h41 void setContent(uint64_t pValue) argument
42 { f_Content = pValue; }
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h55 inline void setValue(unsigned pValue) argument
56 { m_Value = pValue; }
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h110 void setValue(ValueType pValue) argument
111 { m_Value = pValue; }
H A DStringUnorderedMap.h42 void operator()(KeyType &pKey, ValueType &pValue, argument
45 ::new ((void*)&pValue) ValueType(pInitVal);
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCInstFragment.h65 void setInst(llvm::MCInst pValue) { m_pFragment->setInst(pValue); } argument
/frameworks/wilhelm/src/itf/
H A DIMetadataExtraction.c122 SLuint32 index, SLuint32 valueSize, SLMetadataInfo *pValue)
126 if (NULL == pValue) {
133 index, valueSize, pValue);
121 IMetadataExtraction_GetValue(SLMetadataExtractionItf self, SLuint32 index, SLuint32 valueSize, SLMetadataInfo *pValue) argument
/frameworks/av/libvideoeditor/vss/src/
H A DM4PCMR_CoreReader.c607 * M4OSA_DataOption* pValue)
614 * @param pValue: (OUT) Variable where the option value is returned
623 M4OSA_DataOption* pValue)
644 *pValue = &c->m_blockSize;
622 M4PCMR_getOption(M4OSA_Context context, M4PCMR_OptionID optionID, M4OSA_DataOption* pValue) argument
H A DM4DECODER_Null.c156 * @param pValue: (IN/OUT) Pointer to structure or value where
168 M4OSA_DataOption pValue) {
180 * @param pValue: (IN) Pointer to structure or value
191 M4OSA_DataOption pValue) {
205 pStreamContext->pDecYuvData = (M4VIFI_ImagePlane *)pValue;
209 pStreamContext->pDecYuvWithEffect = (M4VIFI_ImagePlane *)pValue;
213 pStreamContext->bYuvWithEffectSet = (M4OSA_Bool)pValue;
217 pTempDecYuvData = (M4VIFI_ImagePlane *)pValue;
263 pFilterOption = (M4DECODER_OutputFilter*)pValue;
166 M4DECODER_NULL_getOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
189 M4DECODER_NULL_setOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
H A DM4READER_Amr.c399 * @param pValue: (OUT) pointer to structure or value (allocated by user)
408 M4OSA_DataOption pValue)
416 M4OSA_DEBUG_IF1((M4OSA_NULL == pValue), M4ERR_PARAMETER, "invalid value pointer");
422 *(M4OSA_Time*)pValue = pC->m_maxDuration;
428 M4OSA_UInt32* pBitrate = (M4OSA_UInt32*)pValue;
443 err = M4AMRR_getVersion((M4_VersionInfo*)pValue);
465 * @param pValue: (IN) Pointer to structure or value (allocated by user)
475 M4OSA_DataOption pValue)
482 M4OSA_DEBUG_IF1((M4OSA_NULL == pValue), M4ERR_PARAMETER, "invalid value pointer");
488 pC->m_pOsaFileReaderFcts = (M4OSA_FileReadPointer*)pValue;
407 M4READER_AMR_getOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
474 M4READER_AMR_setOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
[all...]
H A DM4READER_Pcm.c188 * @param pValue: (IN) pointer to structure or value (allocated by user)
197 M4OSA_ERR M4READER_PCM_setOption(M4OSA_Context context, M4OSA_OptionID optionId, void* pValue) argument
205 M4OSA_DEBUG_IF1((M4OSA_NULL == pValue), M4ERR_PARAMETER,
212 pC->m_pOsaFileReaderFcts = (M4OSA_FileReadPointer*)pValue;
232 * @param pValue: (OUT) option value retrieved.
239 M4OSA_ERR M4READER_PCM_getOption(M4OSA_Context context, M4OSA_OptionID optionId, void* pValue) argument
245 M4OSA_DEBUG_IF1((pValue == 0), M4ERR_PARAMETER,
251 *((M4OSA_UInt32*)pValue) = pContext->m_pAudioStream->m_duration;
255 err = M4PCMR_getVersion((M4_VersionInfo*)pValue);
264 M4OSA_UInt32* pBitrate = (M4OSA_UInt32*)pValue;
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DELFDynamic.cpp80 void ELFDynamic::applyOne(uint64_t pTag, uint64_t pValue) argument
83 m_EntryList[m_Idx]->setValue(pTag, pValue);
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorMp3Reader.cpp254 * @param pValue: (OUT) pointer to structure or value (allocated
263 M4OSA_OptionID optionId, M4OSA_DataOption pValue) {
272 M4OSA_DEBUG_IF1((M4OSA_NULL == pValue), M4ERR_PARAMETER,
279 *(M4OSA_Time*)pValue = pReaderContext->mMaxDuration;
285 M4OSA_UInt32* pBitrate = (M4OSA_UInt32*)pValue;
322 * @param pValue: (IN) Pointer to structure or value (allocated
332 M4OSA_OptionID optionId, M4OSA_DataOption pValue) {
338 (int)optionId,(int)pValue);
342 M4OSA_DEBUG_IF1((M4OSA_NULL == pValue), M4ERR_PARAMETER,
262 VideoEditorMp3Reader_getOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
331 VideoEditorMp3Reader_setOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorJava.cpp402 int* pValue)
421 (*pValue) = pEnv->GetStaticIntField(clazz, fieldId);
425 "videoEditJava_getStaticIntField, %s = %d", pName, (*pValue));
397 videoEditJava_getStaticIntField( bool* pResult, JNIEnv* pEnv, jclass clazz, const char* pName, int* pValue) argument
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_rel.c63 static int32_t drm_getStartEndTime(uint8_t * pValue, int32_t valueLen, argument
69 strncpy((char *)pTmp, (char *)pValue, valueLen);
235 uint8_t *pBuf, *pValue; local
326 WBXML_DOM_getNodeValue(buffer, bufferLen, sProperty, (uint8_t **)&pValue,
332 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
338 strncpy((char *)pTmp, (char *)pValue, valueLen);
420 WBXML_DOM_getNodeValue(buffer, bufferLen, sProperty, (uint8_t **)&pValue,
426 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
434 if (0 == isdigit(*(pValue + i)))
438 strncpy((char *)pTmp, (char *)pValue, valueLe
509 uint8_t *pBuf, *pValue; local
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLinker.cpp61 LDSymbol::ValueType pValue,
104 input_sym->setValue(pValue);
127 output_sym->setValue(pValue);
167 LDSymbol::ValueType pValue,
206 input_sym->setValue(pValue);
237 LDSymbol::ValueType pValue,
293 output_sym->setValue(pValue);
306 LDSymbol::ValueType pValue,
332 output_sym->setValue(pValue);
357 LDSymbol::ValueType pValue,
56 addSymbolFromObject(const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
162 addSymbolFromDynObj(const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
231 defineSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
300 defineSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
351 defineAndResolveSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
396 defineAndResolveSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_t *pValueSize, void *pValue);
119 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
369 // pValue - pointer to variable to hold retrieved value
373 // *pValue updated with parameter value
381 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_t *pValueSize, void *pValue) argument
437 *(uint16_t *)pValue = (uint16_t)kNumBands;
438 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
442 *(int16_t *)pValue = -9600;
443 *((int16_t *)pValue + 1) = 4800;
445 *(int32_t *)pValue, *((int32_
550 Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue) argument
[all...]
/frameworks/base/media/libdrm/mobile1/src/xml/
H A Dxml_tinyparser.c109 uint8_t **pValue, int32_t *valueLen)
162 *pValue = buffer;
169 *valueLen = buffer - *pValue;
176 uint8_t *XML_DOM_getValue(uint8_t *buffer, uint8_t **pValue, int32_t *valueLen) argument
239 *pValue = buffer;
251 *valueLen = pEnd - *pValue + 1;
715 uint8_t *pAttr, *pName, *pValue; local
730 XML_DOM_getAttr(pAttr, &pName, &nameLen, &pValue,
738 strncpy((char *)attr->value, (char *)pValue, valueLen);
739 buffer = pValue
108 XML_DOM_getAttr(uint8_t *buffer, uint8_t **pName, int32_t *nameLen, uint8_t **pValue, int32_t *valueLen) argument
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp135 bool AudioSfDecoder::getPcmFormatKeyValue(uint32_t index, uint32_t size, uint32_t* pValue) { argument
146 *pValue = mPcmFormatValues[index];

Completed in 319 milliseconds

12