Searched refs:pValue (Results 1 - 25 of 60) sorted by relevance

123

/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeData.cpp35 bool ELFAttributeData::ReadValue(ELFAttributeValue& pValue, const char* &pBuf, 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,
72 if (pValue.isIntValue())
73 leb128::encode<uint32_t>(pBuf, pValue.getIntValue());
75 if (pValue
64 WriteAttribute(TagType pTag, const ELFAttributeValue& pValue, char* &pBuf) argument
[all...]
H A DELFAttributeValue.cpp54 bool ELFAttributeValue::equals(const ELFAttributeValue& pValue) const
56 if ((pValue.type() != m_Type) || isUninitialized())
59 if (isIntValue() && (m_IntValue != pValue.getIntValue()))
62 if (isStringValue() && (m_StringValue != pValue.getStringValue()))
/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/Support/
H A DLEB128.h24 size_t encode(ByteType *&pBuf, IntType pValue);
37 size_t size(IntType pValue) { argument
39 while (pValue > 0x80) {
40 pValue >>= 7;
53 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
56 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
62 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
65 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
97 size_t encode(char *&pBuf, IntType pValue) { argument
98 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
[all...]
H A DAllocators.h39 static void construct(value_type* pPtr, const value_type& pValue) argument
40 { new (pPtr) value_type(pValue); }
78 static void construct(value_type* pPtr, const value_type& pValue) argument
79 { new (pPtr) value_type(pValue); }
129 // pPtr, and using its copy constructor to initialized its value to pValue.
132 // @param pValue the value to be constructed
133 void construct(pointer pPtr, const_reference pValue) argument
134 { chunk_type::construct(pPtr, pValue); }
138 // pValue.
371 void construct(pointer pObject, const DataType& pValue) argument
434 construct(DataType* pObject, const DataType& pValue) argument
437 construct(pointer pObject, const_reference pValue) argument
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DMsgHandler.h34 void addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const;
75 operator<<(const MsgHandler& pHandler, int pValue) argument
77 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
82 operator<<(const MsgHandler& pHandler, unsigned int pValue) argument
84 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
89 operator<<(const MsgHandler& pHandler, long pValue) argument
91 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
96 operator<<(const MsgHandler& pHandler, unsigned long pValue) argument
98 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
103 operator<<(const MsgHandler& pHandler, unsigned long long pValue) argument
110 operator <<(const MsgHandler& pHandler, bool pValue) argument
[all...]
/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/Target/
H A DELFAttributeValue.h97 bool equals(const ELFAttributeValue& pValue) const;
99 bool operator==(const ELFAttributeValue& pValue) const
100 { return equals(pValue); }
101 bool operator!=(const ELFAttributeValue& pValue) const
102 { return !equals(pValue); }
H A DGOT.h41 Entry(uint64_t pValue, SectionData* pParent) argument
43 f_Value(pValue) {
51 void setValue(uint64_t pValue) argument
52 { f_Value = pValue; }
H A DELFAttributeData.h92 /// pValue prior the call.
93 static bool ReadValue(ELFAttributeValue& pValue, const char* &pBuf,
102 static bool WriteAttribute(TagType pTag, const ELFAttributeValue& pValue,
H A DPLT.h36 void setValue(unsigned char* pValue) argument
37 { m_pValue = pValue; }
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DAlignFragment.h21 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize,
34 void setEmitNops(bool pValue) { m_bEmitNops = pValue; } argument
H A DFillFragment.h23 FillFragment(int64_t pValue, unsigned int pValueSize, uint64_t pSize,
H A DFragment.h50 void setParent(SectionData *pValue) { m_pParent = pValue; } argument
/frameworks/wilhelm/src/android/
H A Dandroid_Effect.h23 int32_t param, int32_t param2, void *pValue);
26 int32_t param, int32_t param2, void *pValue);
34 int32_t param, void *pValue);
37 int32_t param, void *pValue);
45 int32_t param, void *pValue);
48 int32_t param, void *pValue);
67 int32_t param, void *pValue);
70 int32_t param, void *pValue);
125 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize);
128 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_
[all...]
H A Dandroid_Effect.cpp193 int32_t param, int32_t param2, void *pValue)
209 memcpy(pValue, p->data + p->psize, p->vsize);
219 int32_t param, int32_t param2, void *pValue)
231 memcpy(p->data + p->psize, pValue, p->vsize);
242 int32_t param, void *pValue) {
245 pValue, bb_valueSize(param));
250 int32_t param, void *pValue) {
253 pValue, bb_valueSize(param));
345 int32_t param, void *pValue) {
348 pValue, virt_valueSiz
192 android_eq_getParam(android::sp<android::AudioEffect> pFx, int32_t param, int32_t param2, void *pValue) argument
218 android_eq_setParam(android::sp<android::AudioEffect> pFx, int32_t param, int32_t param2, void *pValue) argument
241 android_bb_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
249 android_bb_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
344 android_virt_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
352 android_virt_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
418 android_erev_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
433 android_erev_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
565 android_fx_setParam(android::sp<android::AudioEffect> pFx, int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) argument
586 android_fx_getParam(android::sp<android::AudioEffect> pFx, int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) argument
885 android_aec_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
891 android_aec_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
921 android_agc_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
927 android_agc_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
953 android_ns_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
960 android_ns_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue);
119 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
351 // pValue - pointer to variable to hold retrieved value
355 // *pValue updated with parameter value
363 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue) argument
419 *(uint16_t *)pValue = (uint16_t)kNumBands;
420 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
424 *(int16_t *)pValue = -9600;
425 *((int16_t *)pValue + 1) = 4800;
427 *(int32_t *)pValue, *((int32_
532 Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Script/
H A DOperand.h78 void setValue(uint64_t pValue) { m_Value = pValue; } argument
104 IntOperand(uint64_t pValue);
111 void setValue(uint64_t pValue) { m_Value = pValue; } argument
119 static IntOperand* create(uint64_t pValue);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h61 void setValue(const ValueType& pValue) argument
62 { m_Value = pValue; }
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h380 /// @param [in] pValue Common symbols' value are alignment constraints
396 LDSymbol::ValueType pValue = 0x0,
441 LDSymbol::ValueType pValue = 0x0,
469 LDSymbol::ValueType pValue,
479 LDSymbol::ValueType pValue,
496 LDSymbol::ValueType pValue,
507 LDSymbol::ValueType pValue,
518 LDSymbol::ValueType pValue,
529 LDSymbol::ValueType pValue,
/frameworks/compile/mclinker/lib/LD/
H A DMsgHandler.cpp45 void MsgHandler::addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const
50 m_Engine.state().ArgumentVals[m_NumArgs++] = pValue;
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64RelocationHelpers.h21 helper_check_signed_overflow(Relocator::DWord pValue, unsigned bits) argument
25 int64_t signed_val = static_cast<int64_t>(pValue);
34 helper_get_page_address(Relocator::Address pValue) argument
36 return (pValue & ~ (Relocator::Address) 0xFFF);
40 helper_get_page_offset(Relocator::Address pValue) argument
42 return (pValue & (Relocator::Address) 0xFFF);
45 static inline uint32_t get_mask(uint32_t pValue) argument
47 return ((1u << (pValue)) - 1);
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h56 inline void setValue(unsigned pValue) argument
57 { m_Value = pValue; }

Completed in 2025 milliseconds

123