Searched refs:todo (Results 1 - 5 of 5) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/ |
H A D | fixed_string.h | 209 constexpr size_type copy(CharT* const dst, size_type todo, size_type pos = 0) const in copy() argument 211 return string_view(*this).copy(dst, todo, pos); in copy() 314 size_t todo = other.length(); 315 todo = ((todo + len_) > maxSize) ? (maxSize - len_) : todo; 316 other.copy(data_ + len_, todo); 317 len_ += todo;
|
H A D | vector.h | 729 // todo: validate. in erase() 1005 size_t todo = (uintptr_t)lPtr - (uintptr_t)fPtr; in destroy() local 1006 ClearToValue(fPtr, todo, POISON, todo); in destroy() 1154 // move constructs first "todo" objects from data_ to tmp and makes tmp the new data_. 1155 void finalize(pointer tmp, size_t todo) in finalize() argument 1159 if (tmp && todo > 0) { in finalize() 1161 init_move(tmp, data_, todo); in finalize() 1162 destroy(begin(), begin() + static_cast<difference_type>(todo)); // Destroy the moved from items.. in finalize()
|
H A D | string.h | 361 size_type copy(pointer dst, size_type todo) const in copy() 363 if (const auto len = size(); todo > len) { in copy() 364 todo = len; in copy() 367 const auto end = ptr + todo; in copy() 371 return todo; in copy()
|
H A D | string_view.h | 658 const auto todo = pos; variable 659 for (auto it = 0u; it <= todo; it++, pos--, s1--) {
|
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/Util/src/util/ |
H A D | io_util.cpp | 219 auto todo = Math::min(total, bufferSize); in CopyFile() local 220 if (todo != s->Read(buffer, todo)) { in CopyFile() 223 if (todo != d->Write(buffer, todo)) { in CopyFile() 226 total -= todo; in CopyFile()
|
Completed in 8 milliseconds