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

12

/frameworks/compile/mclinker/lib/Fragment/
H A DFillFragment.cpp18 FillFragment::FillFragment(int64_t pValue, argument
22 : Fragment(Fragment::Fillment, pSD), m_Value(pValue), m_ValueSize(pValueSize),
H A DAlignFragment.cpp20 int64_t pValue,
25 m_Value(pValue), m_ValueSize(pValueSize), m_MaxBytesToEmit(pMaxBytesToEmit),
19 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize, unsigned int pMaxBytesToEmit, SectionData *pSD) argument
/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.h42 static void construct(value_type* pPtr, const value_type& pValue) argument
43 { new (pPtr) value_type(pValue); }
81 static void construct(value_type* pPtr, const value_type& pValue) argument
82 { new (pPtr) value_type(pValue); }
132 // pPtr, and using its copy constructor to initialized its value to pValue.
135 // @param pValue the value to be constructed
136 void construct(pointer pPtr, const_reference pValue) argument
137 { chunk_type::construct(pPtr, pValue); }
141 // pValue.
374 void construct(pointer pObject, const DataType& pValue) argument
437 construct(DataType* pObject, const DataType& pValue) argument
440 construct(pointer pObject, const_reference pValue) argument
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h64 void setValue(const ValueType& pValue) argument
65 { m_Value = pValue; }
H A DTreeBase.h124 Node(const value_type& pValue) argument
125 : NodeBase(), data(&pValue)
/frameworks/compile/mclinker/include/mcld/LD/
H A DMsgHandler.h37 void addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const;
78 operator<<(const MsgHandler& pHandler, int pValue) argument
80 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
85 operator<<(const MsgHandler& pHandler, unsigned int pValue) argument
87 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
92 operator<<(const MsgHandler& pHandler, long pValue) argument
94 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
99 operator<<(const MsgHandler& pHandler, unsigned long pValue) argument
101 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
106 operator<<(const MsgHandler& pHandler, unsigned long long pValue) argument
113 operator <<(const MsgHandler& pHandler, bool pValue) argument
[all...]
H A DLDSymbol.h123 void setValue(ValueType pValue) argument
124 { m_Value = pValue; }
/frameworks/compile/mclinker/lib/LD/
H A DELFReaderIf.cpp139 uint64_t ELFReaderIF::getSymValue(uint64_t pValue, argument
147 return pValue;
156 return pValue;
161 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...]
H A DCommandLine.cpp30 std::string &pValue)
34 pValue = '=';
35 pValue += pArg.str();
40 StringRef pValue,
45 outs() << "= " << pValue;
46 size_t NumSpaces = MaxOptWidth > pValue.size()?MaxOptWidth - pValue.size():0;
27 parse(Option &pOption, StringRef pArgName, StringRef pArg, std::string &pValue) argument
39 printOptionDiff(const Option &pOption, StringRef pValue, OptVal pDefault, size_t pGlobalWidth) const argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DAlignFragment.h24 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize,
37 void setEmitNops(bool pValue) { m_bEmitNops = pValue; } argument
H A DFragment.h53 void setParent(SectionData *pValue) { m_pParent = pValue; } argument
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h56 inline void setValue(unsigned pValue) argument
57 { m_Value = pValue; }
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h44 Entry(uint64_t pValue, SectionData* pParent) argument
46 f_Value(pValue) {
54 void setValue(uint64_t pValue) argument
55 { f_Value = pValue; }
H A DPLT.h39 void setValue(unsigned char* pValue) argument
40 { m_pValue = pValue; }
/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.cpp91 void ELFDynamic::applyOne(uint64_t pTag, uint64_t pValue) argument
94 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.cpp407 int* pValue)
426 (*pValue) = pEnv->GetStaticIntField(clazz, fieldId);
430 "videoEditJava_getStaticIntField, %s = %d", pName, (*pValue));
402 videoEditJava_getStaticIntField( bool* pResult, JNIEnv* pEnv, jclass clazz, const char* pName, int* pValue) argument

Completed in 5576 milliseconds

12