Home
last modified time | relevance | path

Searched refs:m_Data (Results 1 – 6 of 6) sorted by relevance

/CTR-SDK-1.3.0/CTR_SDK/include/nn/fslow/
Dfslow_HandleTable.h34 HandleValue m_Data;
43 m_Data.lo = 0; in Handle()
44 m_Data.hi = 0; in Handle()
49 m_Data.lo = fixedValue + INCREMENT_VALUE; in Handle()
50 m_Data.hi = 0; in Handle()
55 m_Data.lo = value.lo; in Handle()
56 m_Data.hi = value.hi; in Handle()
62 m_Data.lo = fixedValue + INCREMENT_VALUE; in Initialize()
67 m_Data.lo = 0; in Finalize()
68 m_Data.hi = 0; in Finalize()
[all …]
Dfslow_Path.h48 const void* m_Data; variable
72 …{ nn::dbg::detail::TPrintf("PATH_TYPE_BINARY(1 byte) %d\n", *(static_cast<const bit8*>(m_Data))); } in PRINT()
73 … nn::dbg::detail::TPrintf("PATH_TYPE_BINARY(2 byte) %d\n", *(static_cast<const bit16*>(m_Data))); } in PRINT()
74 … nn::dbg::detail::TPrintf("PATH_TYPE_BINARY(4 byte) %d\n", *(static_cast<const bit32*>(m_Data))); } in PRINT()
75 …n::dbg::detail::TPrintf("PATH_TYPE_BINARY(8 byte) %lld\n", *(static_cast<const bit64*>(m_Data))); } in PRINT()
81 nn::dbg::detail::TPrintf("%2X ", *(static_cast<const bit8*>(m_Data) + i)); in PRINT()
89 … nn::dbg::detail::TPrintf("PATH_TYPE_STRING \"%s\"\n", static_cast<const char*>(m_Data)); in PRINT()
95 std::wcstombs(buf, static_cast<const wchar_t*>(m_Data), 256); in PRINT()
112 this->m_Data = data; in LowPath()
121 this->m_Data = &m_Data; in LowPath()
[all …]
Dfslow_SafeHandle.h179 bit32 m_Data[2];
184 void Invalidate() { m_Data[0] = m_Data[1] = 0; } in Invalidate()
186 bool IsValid() const { return (m_Data[0] != 0) || (m_Data[1] != 0); } in IsValid()
190 …tor==(const SafeHandleBase& rhs) const { return (m_Data[0] == rhs.m_Data[0]) && (m_Data[1] == rhs.
191 …tor!=(const SafeHandleBase& rhs) const { return (m_Data[0] != rhs.m_Data[0]) || (m_Data[1] != rhs.
210 m_Data[0] = reinterpret_cast<bit32>(pObject); in Initialize()
217 m_Data[0] = fixedValue; in Initialize()
218 m_Data[1] = 1; // 永続ハンドルとの区別 in Initialize()
223 bool IsPermanent() const { return m_Data[1] == 0; } in IsPermanent()
228 return reinterpret_cast<void*>(m_Data[0]); in GetObject()
[all …]
Dfslow_IArchive.h161 Data m_Data; variable
163 void Clear() { std::memset(&m_Data, 0, sizeof(m_Data)); } in Clear()
178 m_Data.c[i] = s[i]; in ArchiveName()
221 operator const Char*() const { return m_Data.c; }
223 bool IsValid() const { return m_Data.c[0] != 0; } in IsValid()
225 …bool operator==(const ArchiveName& rhs) const { return std::memcmp(&this->m_Data, &rhs.m_Data, siz…
228 …bool operator>(const ArchiveName& rhs) const { return std::memcmp(&this->m_Data, &rhs.m_Data, size…
/CTR-SDK-1.3.0/CTR_SDK/include/nn/fnd/
Dfnd_FixedLengthString.h36 TChar* m_Data;
81 using Base::m_Data;
85 return m_Data - m_Buffer; in GetHeadIndex()
91 this->m_Data[0] = 0; in SetInvalid()
92 this->m_Data = 0; in SetInvalid()
134 this->m_Data[i] = *s++;
143 std::memmove(m_Buffer + index, m_Data, sizeof(Char) * (GetLength() + 1));
149 this->m_Data = m_Buffer + index;
157 this->m_Data[length] = 0; in SetLength()
170 return m_Data != 0; in IsValid()
[all …]
/CTR-SDK-1.3.0/CTR_SDK/sources/libraries/fslow/
Dfslow_SafeHandle.cpp35 m_Data[0] += 0x100; in operator ++()
37 if (((m_Data[0] & 0xFFFFFF00) == 0) && (++m_Data[1] == 0)) in operator ++()