Searched refs:_chars (Results 1 - 4 of 4) sorted by relevance
/third_party/lzma/CPP/Common/ |
H A D | MyString.cpp | 213 const char *s1 = _chars;
in IsPrefixedBy_Ascii_NoCase() 228 const wchar_t *s1 = _chars;
in IsPrefixedBy_Ascii_NoCase() 408 // MY_STRING_REALLOC(_chars, char, (size_t)newLimit + 1, (size_t)_len + 1);
in ReAlloc() 410 memcpy(newBuf, _chars, (size_t)_len + 1);
in ReAlloc() 411 MY_STRING_DELETE(_chars)
in ReAlloc() 412 _chars = newBuf;
in ReAlloc() 419 // MY_STRING_REALLOC(_chars, char, (size_t)newLimit + 1, 0);
in ReAlloc2() 422 MY_STRING_DELETE(_chars)
in ReAlloc2() 423 _chars = newBuf;
in ReAlloc2() 430 _chars in SetStartLen() [all...] |
H A D | MyString.h | 270 char *_chars;
member in AString 276 memmove(_chars + dest, _chars + src, (size_t)(_len - src + 1) * sizeof(char));
in MoveItems() 325 ~AString() { MY_STRING_DELETE(_chars) }
in ~AString() 329 void Empty() { _len = 0; _chars[0] = 0; }
in Empty() 331 operator const char *() const { return _chars; }
in operator const char *() 332 char *Ptr_non_const() const { return _chars; }
in Ptr_non_const() 333 const char *Ptr() const { return _chars; }
in Ptr() 334 const char *Ptr(unsigned pos) const { return _chars + pos; }
in Ptr() 335 const char *Ptr(int pos) const { return _chars in Ptr() 551 wchar_t *_chars; global() member in UString 847 wchar_t *_chars; global() member in UString2 [all...] |
H A D | DynLimBuf.cpp | 10 _chars = NULL;
in CDynLimBuf() 18 _chars = (Byte *)MyAlloc(size);
in CDynLimBuf() 19 if (_chars)
in CDynLimBuf() 49 memcpy(newBuf, _chars, _pos);
in operator +=() 50 MyFree(_chars);
in operator +=() 51 _chars = newBuf;
in operator +=() 54 _chars[_pos++] = (Byte)c;
in operator +=() 85 memcpy(newBuf, _chars, _pos);
in operator +=() 86 MyFree(_chars);
in operator +=() 87 _chars in operator +=() [all...] |
H A D | DynLimBuf.h | 14 Byte *_chars;
member in CDynLimBuf 27 ~CDynLimBuf() { MyFree(_chars); }
in ~CDynLimBuf() 33 operator const Byte *() const { return _chars; }
in operator const Byte *() 34 // const char *Ptr() const { return _chars; }
|
Completed in 5 milliseconds