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

123

/frameworks/compile/mclinker/lib/LD/
H A DAlignFragment.cpp19 int64_t pValue,
24 m_Value(pValue), m_ValueSize(pValueSize), m_MaxBytesToEmit(pMaxBytesToEmit),
18 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize, unsigned int pMaxBytesToEmit, SectionData *pSD) argument
H A DFillFragment.cpp19 FillFragment::FillFragment(int64_t pValue, argument
23 : Fragment(Fragment::Fillment, pSD), m_Value(pValue), m_ValueSize(pValueSize),
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/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/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);
/frameworks/compile/mclinker/include/mcld/LD/
H A DMsgHandler.h38 void addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const;
79 operator<<(const MsgHandler& pHandler, int pValue) argument
81 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
86 operator<<(const MsgHandler& pHandler, unsigned int pValue) argument
88 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
93 operator<<(const MsgHandler& pHandler, long pValue) argument
95 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
100 operator<<(const MsgHandler& pHandler, unsigned long pValue) argument
102 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
107 operator<<(const MsgHandler& pHandler, bool pValue) argument
[all...]
H A DAlignFragment.h25 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize,
38 void setEmitNops(bool pValue) { m_bEmitNops = pValue; } argument
H A DFragment.h50 void setParent(SectionData *pValue) { m_pParent = pValue; } argument
58 void setLayoutOrder(unsigned int pValue) { m_LayoutOrder = pValue; } argument
H A DFillFragment.h27 FillFragment(int64_t pValue, unsigned int pValueSize, uint64_t pSize,
H A DSectionData.h49 void setAlignment(unsigned int pValue) { m_Alignment = pValue; } argument
H A DLDSymbol.h110 void setValue(ValueType pValue) argument
111 { m_Value = pValue; }
/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.cpp189 int32_t param, int32_t param2, void *pValue)
205 memcpy(pValue, p->data + p->psize, p->vsize);
215 int32_t param, int32_t param2, void *pValue)
227 memcpy(p->data + p->psize, pValue, p->vsize);
238 int32_t param, void *pValue) {
241 pValue, bb_valueSize(param));
246 int32_t param, void *pValue) {
249 pValue, bb_valueSize(param));
341 int32_t param, void *pValue) {
344 pValue, virt_valueSiz
188 android_eq_getParam(android::sp<android::AudioEffect> pFx, int32_t param, int32_t param2, void *pValue) argument
214 android_eq_setParam(android::sp<android::AudioEffect> pFx, int32_t param, int32_t param2, void *pValue) argument
237 android_bb_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
245 android_bb_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
340 android_virt_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
348 android_virt_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
414 android_erev_setParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
429 android_erev_getParam(android::sp<android::AudioEffect> pFx, int32_t param, void *pValue) argument
561 android_fx_setParam(android::sp<android::AudioEffect> pFx, int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) argument
582 android_fx_getParam(android::sp<android::AudioEffect> pFx, int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) argument
[all...]
/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/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/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h64 void setValue(const ValueType& pValue) argument
65 { m_Value = pValue; }
H A DTreeBase.h123 Node(const value_type& pValue) argument
124 : NodeBase(), data(&pValue)
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLinker.h82 LDSymbol::ValueType pValue,
112 LDSymbol::ValueType pValue,
205 LDSymbol::ValueType pValue,
215 LDSymbol::ValueType pValue,
225 LDSymbol::ValueType pValue,
235 LDSymbol::ValueType pValue,
246 LDSymbol::ValueType pValue,
255 LDSymbol::ValueType pValue,
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h42 void setContent(uint64_t pValue) argument
43 { f_Content = pValue; }
H A DELFDynamic.h48 virtual void setValue(uint64_t pTag, uint64_t pValue) = 0;
84 inline void setValue(uint64_t pTag, uint64_t pValue);
156 void applyOne(uint64_t pTag, uint64_t pValue);
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h55 inline void setValue(unsigned pValue) argument
56 { m_Value = pValue; }
/frameworks/av/libvideoeditor/vss/src/
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
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4AD_Common.h201 * @param pValue: (OUT) Pointer to the version structure
248 * @param pValue: (IN) pointer to structure or value (allocated by user)
257 M4OSA_OptionID optionId, M4OSA_DataOption pValue);
265 * @param pValue: (OUT) pointer to structure or value (allocated by user)
274 M4OSA_DataOption pValue);
/frameworks/compile/mclinker/lib/MC/
H A DMCLinker.cpp67 LDSymbol::ValueType pValue,
111 input_sym->setValue(pValue);
134 output_sym->setValue(pValue);
174 LDSymbol::ValueType pValue,
214 input_sym->setValue(pValue);
245 LDSymbol::ValueType pValue,
302 output_sym->setValue(pValue);
315 LDSymbol::ValueType pValue,
341 output_sym->setValue(pValue);
366 LDSymbol::ValueType pValue,
62 addSymbolFromObject(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
169 addSymbolFromDynObj(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
239 defineSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
309 defineSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
360 defineAndResolveSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
406 defineAndResolveSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]

Completed in 1173 milliseconds

123