Searched refs:pVal (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/mclinker/lib/ADT/
H A DStringEntry.cpp34 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef& pVal) argument
36 char* data = (char*)malloc(pVal.size()+1);
37 strcpy(data, pVal.data());
38 m_Value = llvm::StringRef(data, pVal.size());
41 void StringEntry<llvm::StringRef>::setValue(const char* pVal) argument
43 size_t length = strlen(pVal);
45 strcpy(data, pVal);
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_CharStar.c128 * characters of pStrIn to a M4OSA_UInt32 value pVal, assuming a
133 * updated, and pVal is set to null.
134 * - in case of negative number, pStrOut is not updated, and pVal is
136 * - in case of numerical overflow, pVal is set to M4OSA_UINT32_MAX.
139 * @param pVal: (OUT) read value.
143 * @return M4ERR_PARAMETER: pStrIn or pVal is M4OSA_NULL.
152 M4OSA_UInt32* pVal,
160 "M4OSA_Char** %x,M4OSA_chrNumBase %d)",pStrIn,pVal,pStrOut,base);
163 M4OSA_DEBUG_IF2(M4OSA_NULL == pVal, M4ERR_PARAMETER,
185 *pVal
151 M4OSA_chrGetUInt32(M4OSA_Char* pStrIn, M4OSA_UInt32* pVal, M4OSA_Char** pStrOut, M4OSA_chrNumBase base) argument
244 M4OSA_chrGetUInt16(M4OSA_Char* pStrIn, M4OSA_UInt16 *pVal, M4OSA_Char** pStrOut, M4OSA_chrNumBase base) argument
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringEntry.h54 void setValue(const DataType& pVal) argument
55 { m_Value = pVal; }
104 void setValue(const std::string& pVal) argument
105 { setValue(pVal.c_str()); }
107 void setValue(const char* pVal);
109 void setValue(llvm::StringRef& pVal);
/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp38 const char* Diagnostic::findMatch(char pVal, argument
43 if (0 == depth && *pBegin == pVal)
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnostic.h88 const char* findMatch(char pVal, const char* pBegin, const char* pEnd ) const;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocationFactory.cpp103 uint64_t helper_sign_extend(uint64_t pVal, uint64_t pOri_width) argument
107 return (pVal ^ sign_bit) - sign_bit;

Completed in 97 milliseconds