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
23 m_Value(pValue),
H A DAlignFragment.cpp20 int64_t pValue,
26 m_Value(pValue),
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.h23 size_t encode(ByteType*& pBuf, IntType pValue);
36 size_t size(IntType pValue) { argument
38 while (pValue > 0x80) {
39 pValue >>= 7;
52 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue);
55 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue);
61 size_t encode<int64_t>(ByteType*& pBuf, int64_t pValue);
64 size_t encode<int32_t>(ByteType*& pBuf, int32_t pValue);
96 size_t encode(char*& pBuf, IntType pValue) { argument
97 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
[all...]
H A DUniqueGCFactory.h67 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { argument
74 construct(data, pValue);
H A DAllocators.h36 static void construct(value_type* pPtr, const value_type& pValue) { argument
37 new (pPtr) value_type(pValue);
72 static void construct(value_type* pPtr, const value_type& pValue) { argument
73 new (pPtr) value_type(pValue);
115 // pPtr, and using its copy constructor to initialized its value to pValue.
118 // @param pValue the value to be constructed
119 void construct(pointer pPtr, const_reference pValue) { argument
120 chunk_type::construct(pPtr, pValue);
125 // pValue.
342 void construct(pointer pObject, const DataType& pValue) { argument
396 construct(DataType* pObject, const DataType& pValue) argument
399 construct(pointer pObject, const_reference pValue) argument
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h56 void setValue(const ValueType& pValue) { m_Value = pValue; } argument
H A DTreeBase.h109 explicit Node(const value_type& pValue) : NodeBase(), data(&pValue) {} argument
H A DBinTree.h431 BinaryTree& join(TreeIteratorBase& pPosition, const DataType& pValue) { argument
433 node->data = const_cast<DataType*>(&pValue);
/frameworks/compile/mclinker/include/mcld/LD/
H A DMsgHandler.h35 void addTaggedVal(intptr_t pValue,
71 inline const MsgHandler& operator<<(const MsgHandler& pHandler, int pValue) { argument
72 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
77 unsigned int pValue) {
78 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
82 inline const MsgHandler& operator<<(const MsgHandler& pHandler, long pValue) { argument
83 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
88 unsigned long pValue) {
89 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
94 unsigned long long pValue) {
76 operator <<(const MsgHandler& pHandler, unsigned int pValue) argument
87 operator <<(const MsgHandler& pHandler, unsigned long pValue) argument
93 operator <<(const MsgHandler& pHandler, unsigned long long pValue) argument
99 operator <<(const MsgHandler& pHandler, bool pValue) argument
[all...]
H A DLDSymbol.h119 void setValue(ValueType pValue) { m_Value = pValue; } argument
/frameworks/compile/mclinker/lib/LD/
H A DELFReaderIf.cpp128 uint64_t ELFReaderIF::getSymValue(uint64_t pValue, argument
135 return pValue;
146 return pValue;
151 return pValue;
H A DNamePool.cpp62 LDSymbol::ValueType pValue,
103 if (m_pResolver->resolve(*old_symbol, *new_symbol, override, pValue)) {
56 insertSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility, ResolveInfo* pOldInfo, Resolver::Result& pResult) argument
/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/lib/Target/
H A DELFAttributeData.cpp35 bool ELFAttributeData::ReadValue(ELFAttributeValue& pValue, argument
39 if (pValue.isIntValue()) {
42 pValue.setIntValue(static_cast<unsigned int>(int_value));
52 if (pValue.isStringValue()) {
53 pValue.setStringValue(pBuf);
55 size_t size = pValue.getStringValue().length() + 1 /* '\0' */;
65 const ELFAttributeValue& pValue,
71 if (pValue.isIntValue())
72 leb128::encode<uint32_t>(pBuf, pValue.getIntValue());
74 if (pValue
64 WriteAttribute(TagType pTag, const ELFAttributeValue& pValue, char*& pBuf) argument
[all...]
H A DELFDynamic.cpp84 void ELFDynamic::applyOne(uint64_t pTag, uint64_t pValue) { argument
86 m_EntryList[m_Idx]->setValue(pTag, pValue);
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DAlignFragment.h21 int64_t pValue,
36 void setEmitNops(bool pValue) { m_bEmitNops = pValue; } argument
H A DFragment.h43 void setParent(SectionData* pValue) { m_pParent = pValue; } argument
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h51 inline void setValue(unsigned pValue) { m_Value = pValue; } argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h39 Entry(uint64_t pValue, SectionData* pParent) argument
40 : TargetFragment(Fragment::Target, pParent), f_Value(pValue) {}
46 void setValue(uint64_t pValue) { f_Value = pValue; } argument
H A DPLT.h31 void setValue(unsigned char* pValue) { m_pValue = pValue; } argument
/frameworks/wilhelm/src/itf/
H A DIMetadataExtraction.cpp122 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/compile/mclinker/include/mcld/Script/
H A DOperand.h71 void setValue(uint64_t pValue) { m_Value = pValue; } argument
95 explicit IntOperand(uint64_t pValue);
102 void setValue(uint64_t pValue) { m_Value = pValue; } argument
109 static IntOperand* create(uint64_t pValue);
/frameworks/compile/mclinker/lib/Script/
H A DOperand.cpp77 IntOperand::IntOperand(uint64_t pValue) argument
78 : Operand(Operand::INTEGER), m_Value(pValue) {
85 IntOperand* IntOperand::create(uint64_t pValue) { argument
87 new (result) IntOperand(pValue);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64RelocationHelpers.h20 static inline bool helper_check_signed_overflow(Relocator::DWord pValue, argument
24 int64_t signed_val = static_cast<int64_t>(pValue);
33 Relocator::Address pValue) {
34 return (pValue & ~(Relocator::Address)0xFFF);
38 Relocator::Address pValue) {
39 return (pValue & (Relocator::Address)0xFFF);
42 static inline uint32_t get_mask(uint32_t pValue) { argument
43 return ((1u << (pValue)) - 1);
32 helper_get_page_address( Relocator::Address pValue) argument
37 helper_get_page_offset( Relocator::Address pValue) argument
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp121 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue);
122 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
354 // pValue - pointer to variable to hold retrieved value
358 // *pValue updated with parameter value
366 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue) argument
422 *(uint16_t *)pValue = (uint16_t)kNumBands;
423 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
427 *(int16_t *)pValue = -9600;
428 *((int16_t *)pValue + 1) = 4800;
430 *(int32_t *)pValue, *((int32_
535 Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue) argument
[all...]

Completed in 301 milliseconds

12