Home
last modified time | relevance | path

Searched refs:Char (Results 1 – 3 of 3) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/fnd/
Dfnd_FixedLengthString.h72 typedef TChar Char; typedef
112 static s32 CalculateLength(const Char* s, s32 maxLength) in CalculateLength()
143 std::memmove(m_Buffer + index, m_Data, sizeof(Char) * (GetLength() + 1));
238 const Char* GetString() const in GetString()
244 operator const Char*() const { return GetString(); }
246 const Char& operator[](s32 i) const
253 Char GetChar(s32 i) const { return (*this)[i]; } in GetChar()
256 FixedLengthString& AppendHead(const FixedLengthString<Char, Length, Size>& str) in AppendHead() argument
263 const Char* s = str.GetString(); in AppendHead()
274 … std::memmove(m_Buffer + MaxLength - this->GetLength(), m_Data, sizeof(Char) * originalLength); in AppendHead()
[all …]
/CTR-SDK-1.0.0/CTR_SDK/include/nn/fslow/
Dfslow_SafePath.h45 typedef typename String::Char Char; typedef
48 SafePath(const Char* s) : Base(s) {} in SafePath()
53 size_t GetDataSize() const { return ((*this)->GetLength() + 1) * sizeof(Char); } in GetDataSize()
56 operator const Char*() const { return (*this)->GetString(); }
57 const Char& operator[](int i) const { return (**this)[i]; }
66 template <size_t MaxSize, Char Separator>
69 const Char* s = *this; in GetArchiveNameLength()
Dfslow_IArchive.h147 typedef TChar Char; typedef
153 static const size_t ByteSize = sizeof(Char) * (MaxLength + 1);
157 Char c[MaxLength + 1];
169 ArchiveName(const Char* s) in ArchiveName()
183 static const Char* GetPathString(const Char* s) in GetPathString()
202 const typename Path::Char* s = path; in GetPathString()
221 operator const Char*() const { return m_Data.c; }