Home
last modified time | relevance | path

Searched refs:_Off (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTString.h119 CPVRTString& append(const CPVRTString& _Str, size_t _Off, size_t _Count);
160 CPVRTString& assign(const CPVRTString& _Str, size_t _Off, size_t _Count=npos);
220 int compare(size_t _Pos1, size_t _Num1, const CPVRTString& _Str, size_t _Off, size_t _Count) const;
291 size_t copy(char* _Ptr, size_t _Count, size_t _Off = 0) const;
349 size_t find(const char* _Ptr, size_t _Off, size_t _Count) const;
357 size_t find(const CPVRTString& _Str, size_t _Off = 0) const;
365 size_t find_first_not_of(char _Ch, size_t _Off = 0) const;
373 size_t find_first_not_of(const char* _Ptr, size_t _Off = 0) const;
382 size_t find_first_not_of(const char* _Ptr, size_t _Off, size_t _Count) const;
390 size_t find_first_not_of(const CPVRTString& _Str, size_t _Off = 0) const;
[all …]
DPVRTString.cpp191 CPVRTString& CPVRTString::append(const CPVRTString& _Str, size_t _Off, size_t _Count) in append() argument
193 if (_Str.length() < _Off + _Count) in append()
195 int i32NewCount = (signed)(_Str.length())-(signed)_Off; in append()
205 return append(_Str.m_pString+_Off,_Count); in append()
308 CPVRTString& CPVRTString::assign(const CPVRTString& _Str, size_t _Off, size_t _Count) in assign() argument
312 _Count = _Str.m_Size - _Off; in assign()
314 return assign(&_Str.m_pString[_Off], _Count); in assign()
652 size_t CPVRTString::copy(char* _Ptr, size_t _Count, size_t _Off) const in copy()
654 if(memcpy(_Ptr, &m_pString[_Off], PVRT_MIN(_Count, m_Size - _Off))) in copy()
708 size_t CPVRTString::find(const char* _Ptr, size_t _Off, size_t _Count) const in find() argument
[all …]