/frameworks/compile/mclinker/include/mcld/LD/ |
MsgHandler.h | 37 void addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const; 78 operator<<(const MsgHandler& pHandler, int pValue) 80 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint); 85 operator<<(const MsgHandler& pHandler, unsigned int pValue) 87 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint); 92 operator<<(const MsgHandler& pHandler, long pValue) 94 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint); 99 operator<<(const MsgHandler& pHandler, unsigned long pValue) 101 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint); 106 operator<<(const MsgHandler& pHandler, unsigned long long pValue) [all...] |
/frameworks/compile/mclinker/lib/Support/ |
LEB128.cpp | 17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) { 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) { 37 if ((pValue & ~0x7f) == 0) { 38 *pBuf++ = static_cast<ByteType>(pValue); 40 } else if ((pValue & ~0x3fff) == 0){ 41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80) [all...] |
/frameworks/compile/mclinker/include/mcld/Support/ |
LEB128.h | 27 size_t encode(ByteType *&pBuf, IntType pValue); 40 size_t size(IntType pValue) { 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) { 101 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue); [all...] |
Allocators.h | 42 static void construct(value_type* pPtr, const value_type& pValue) 43 { new (pPtr) value_type(pValue); } 81 static void construct(value_type* pPtr, const value_type& pValue) 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) 137 { chunk_type::construct(pPtr, pValue); } 141 // pValue. 374 void construct(pointer pObject, const DataType& pValue) [all...] |
/frameworks/compile/mclinker/include/mcld/Fragment/ |
AlignFragment.h | 24 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize, 37 void setEmitNops(bool pValue) { m_bEmitNops = pValue; }
|
Fragment.h | 53 void setParent(SectionData *pValue) { m_pParent = pValue; }
|
FillFragment.h | 26 FillFragment(int64_t pValue, unsigned int pValueSize, uint64_t pSize,
|
/frameworks/compile/mclinker/lib/Fragment/ |
FillFragment.cpp | 18 FillFragment::FillFragment(int64_t pValue, 22 : Fragment(Fragment::Fillment, pSD), m_Value(pValue), m_ValueSize(pValueSize),
|
AlignFragment.cpp | 20 int64_t pValue, 25 m_Value(pValue), m_ValueSize(pValueSize), m_MaxBytesToEmit(pMaxBytesToEmit),
|
/frameworks/compile/mclinker/include/mcld/Target/ |
GOT.h | 44 Entry(uint64_t pValue, SectionData* pParent) 46 f_Value(pValue) { 54 void setValue(uint64_t pValue) 55 { f_Value = pValue; }
|
ELFDynamic.h | 47 virtual void setValue(uint64_t pTag, uint64_t pValue) = 0; 83 inline void setValue(uint64_t pTag, uint64_t pValue); 120 inline void setValue(uint64_t pTag, uint64_t pValue); 184 void applyOne(uint64_t pTag, uint64_t pValue);
|
PLT.h | 39 void setValue(unsigned char* pValue) 40 { m_pValue = pValue; }
|
/frameworks/wilhelm/src/android/ |
android_Effect.h | 23 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_t valueSize) [all...] |
/frameworks/compile/mclinker/include/mcld/ADT/ |
HashEntry.h | 64 void setValue(const ValueType& pValue) 65 { m_Value = pValue; }
|
/hardware/ti/omap4xxx/security/tf_daemon/ |
smc_properties_parser.h | 76 char* pValue; 115 uint32_t SMCPropStringToInt (char* pValue);
|
/frameworks/av/media/libeffects/testlibs/ |
EffectEqualizer.cpp | 118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_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, size_t *pValueSize, void *pValue) 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_t *)pValue + 1)) [all...] |
/hardware/samsung_slsi/exynos5/libcamera/ |
ExynosJpegEncoderForCamera.h | 111 unsigned char *pValue); 116 rational_t *pValue, 123 unsigned char *pValue,
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_dlssynth.c | 45 static void DLS_UpdateEnvelope (S_SYNTH_VOICE *pVoice, S_SYNTH_CHANNEL *pChannel, const S_DLS_ENVELOPE *pEnvParams, EAS_I16 *pValue, EAS_I16 *pIncrement, EAS_U8 *pState); 467 static void DLS_UpdateEnvelope (S_SYNTH_VOICE *pVoice, S_SYNTH_CHANNEL *pChannel, const S_DLS_ENVELOPE *pEnvParams, EAS_I16 *pValue, EAS_I16 *pIncrement, EAS_U8 *pState) 476 *pValue = 0; 499 *pValue = SYNTH_FULL_SCALE_EG1_GAIN; 503 if (*pValue < SYNTH_FULL_SCALE_EG1_GAIN) 505 temp = *pValue + *pIncrement; 506 *pValue = (EAS_I16) (temp < SYNTH_FULL_SCALE_EG1_GAIN ? temp : SYNTH_FULL_SCALE_EG1_GAIN); 540 // *pValue = pEnvParams->sustainLevel; 544 if (*pValue > pEnvParams->sustainLevel) 546 temp = *pValue - *pIncrement [all...] |
eas_effects.h | 40 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 49 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue);
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_effects.h | 40 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 49 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue);
|
eas_rtttl.c | 75 static EAS_RESULT RTTTL_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 80 static EAS_RESULT RTTTL_GetNumber (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I32 *pValue); 82 static EAS_RESULT RTTTL_GetNextChar (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I8 *pValue); 83 static EAS_RESULT RTTTL_PeekNextChar (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I8 *pValue); 744 static EAS_RESULT RTTTL_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue) 753 *pValue = EAS_FILE_RTTTL; 759 *pValue = pData->transposition; 764 *pValue = (EAS_I32) pData->pSynth; 768 *pValue = RTTTL_GAIN_OFFSET; 931 static EAS_RESULT RTTTL_GetNumber (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I32 *pValue) [all...] |
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_effects.h | 40 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 49 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue);
|
/frameworks/compile/mclinker/include/mcld/ |
IRBuilder.h | 394 /// @param [in] pValue Common symbols' value are alignment constraints 410 LDSymbol::ValueType pValue = 0x0, 455 LDSymbol::ValueType pValue = 0x0, 479 LDSymbol::ValueType pValue, 489 LDSymbol::ValueType pValue, 506 LDSymbol::ValueType pValue, 517 LDSymbol::ValueType pValue, 528 LDSymbol::ValueType pValue, 539 LDSymbol::ValueType pValue,
|
/frameworks/compile/mclinker/lib/LD/ |
MsgHandler.cpp | 45 void MsgHandler::addTaggedVal(intptr_t pValue, DiagnosticEngine::ArgumentKind pKind) const 50 m_Engine.state().ArgumentVals[m_NumArgs++] = pValue;
|
/frameworks/compile/mclinker/unittests/ |
GCFactoryListTraitsTest.h | 56 inline void setValue(unsigned pValue) 57 { m_Value = pValue; }
|