Home
last modified time | relevance | path

Searched refs:pVal (Results 1 – 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/ADT/
DStringEntry.cpp35 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef& pVal) in setValue() argument
37 char* data = (char*)malloc(pVal.size()+1); in setValue()
38 strcpy(data, pVal.data()); in setValue()
39 m_Value = llvm::StringRef(data, pVal.size()); in setValue()
42 void StringEntry<llvm::StringRef>::setValue(const char* pVal) in setValue() argument
44 size_t length = strlen(pVal); in setValue()
46 strcpy(data, pVal); in setValue()
/frameworks/av/libvideoeditor/osal/src/
DM4OSA_CharStar.c152 M4OSA_UInt32* pVal, in M4OSA_chrGetUInt32() argument
160 "M4OSA_Char** %x,M4OSA_chrNumBase %d)",pStrIn,pVal,pStrOut,base); in M4OSA_chrGetUInt32()
163 M4OSA_DEBUG_IF2(M4OSA_NULL == pVal, M4ERR_PARAMETER, in M4OSA_chrGetUInt32()
185 *pVal = 0; in M4OSA_chrGetUInt32()
192 *pVal = 0; in M4OSA_chrGetUInt32()
199 *pVal = M4OSA_UINT32_MAX; in M4OSA_chrGetUInt32()
208 *pVal = (M4OSA_UInt32)ul; in M4OSA_chrGetUInt32()
244 M4OSA_ERR M4OSA_chrGetUInt16 (M4OSA_Char* pStrIn, M4OSA_UInt16 *pVal, in M4OSA_chrGetUInt16() argument
251 "M4OSA_Char** %x,M4OSA_chrNumBase %d)",pStrIn,pVal,pStrOut,base); in M4OSA_chrGetUInt16()
254 M4OSA_DEBUG_IF2(M4OSA_NULL == pVal, M4ERR_PARAMETER, in M4OSA_chrGetUInt16()
[all …]
/frameworks/compile/mclinker/include/mcld/ADT/
DStringEntry.h54 void setValue(const DataType& pVal) in setValue() argument
55 { m_Value = pVal; } in setValue()
104 void setValue(const std::string& pVal) in setValue() argument
105 { setValue(pVal.c_str()); } in setValue()
107 void setValue(const char* pVal);
109 void setValue(llvm::StringRef& pVal);
/frameworks/compile/mclinker/lib/LD/
DDiagnostic.cpp38 const char* Diagnostic::findMatch(char pVal, in findMatch() argument
43 if (0 == depth && *pBegin == pVal) in findMatch()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagnostic.h93 const char* findMatch(char pVal, const char* pBegin, const char* pEnd ) const;
/frameworks/compile/mclinker/include/mcld/Target/
DGNULDBackend.h149 void setHasStaticTLS(bool pVal = true)
150 { m_bHasStaticTLS = pVal; }
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp542 uint64_t helper_sign_extend(uint64_t pVal, uint64_t pOri_width) in helper_sign_extend() argument
546 return pVal; in helper_sign_extend()
548 pVal &= mask; in helper_sign_extend()
551 return (pVal ^ sign_bit) - sign_bit; in helper_sign_extend()