Searched refs:_chars (Results 1 – 6 of 6) sorted by relevance
/third_party/lzma/CPP/Common/ |
D | MyString.cpp | 213 const char *s1 = _chars; in IsPrefixedBy_Ascii_NoCase() 228 const wchar_t *s1 = _chars; in IsPrefixedBy_Ascii_NoCase() 410 memcpy(newBuf, _chars, (size_t)_len + 1); in ReAlloc() 411 MY_STRING_DELETE(_chars); in ReAlloc() 412 _chars = newBuf; in ReAlloc() 422 MY_STRING_DELETE(_chars); in ReAlloc2() 423 _chars = newBuf; in ReAlloc2() 429 _chars = NULL; in SetStartLen() 430 _chars = MY_STRING_NEW_char((size_t)len + 1); in SetStartLen() 473 memcpy(_chars, s, num); in AString() [all …]
|
D | MyString.h | 260 char *_chars; variable 266 memmove(_chars + dest, _chars + src, (size_t)(_len - src + 1) * sizeof(char)); in MoveItems() 315 ~AString() { MY_STRING_DELETE(_chars); } in ~AString() 319 void Empty() { _len = 0; _chars[0] = 0; } in Empty() 321 operator const char *() const { return _chars; } 322 char *Ptr_non_const() const { return _chars; } in Ptr_non_const() 323 const char *Ptr() const { return _chars; } in Ptr() 324 const char *Ptr(unsigned pos) const { return _chars + pos; } in Ptr() 325 const char *RightPtr(unsigned num) const { return _chars + _len - num; } in RightPtr() 326 char Back() const { return _chars[(size_t)_len - 1]; } in Back() [all …]
|
D | DynLimBuf.cpp | 10 _chars = 0; 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 = newBuf; in operator +=() [all …]
|
D | DynLimBuf.h | 14 Byte *_chars; variable 27 ~CDynLimBuf() { MyFree(_chars); } in ~CDynLimBuf() 33 operator const Byte *() const { return _chars; }
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/third_party/perf/ |
D | angle-mods.patch | 332 // a single "100_chars" story. If an additional story run is added, e.g. 333 // "200_chars", then the metrics will be averaged over both runs with the
|
/third_party/json/ |
D | ChangeLog.md | 1060 - Fix C26451 warnnings in to\_chars.hpp [\#1967](https://github.com/nlohmann/json/pull/1967) ([dota…
|