| /CTR-SDK-0.14.21/include/nn/fs/ |
| D | fs_FileBase.h | 35 FileBase(const wchar_t* pathName, bit32 mode); 36 FileBase(const char* pathName, bit32 mode); 37 void Initialize(const wchar_t* pathName, bit32 mode); 38 void Initialize(const char* pathName, bit32 mode); 39 nn::Result TryInitialize(const wchar_t* pathName, bit32 mode); 40 nn::Result TryInitialize(const char* pathName, bit32 mode); 41 nn::Result TryInitialize(const wchar_t* pathName, bit32 mode, nn::fs::PathMark pathMark); 68 inline nn::Result FileBase::TryInitialize(const wchar_t* pathName, bit32 mode) in TryInitialize() argument 71 return TryOpenImpl(pathName, mode); in TryInitialize() 74 inline nn::Result FileBase::TryInitialize(const char* pathName, bit32 mode) in TryInitialize() argument [all …]
|
| D | fs_File.h | 31 File( const wchar_t* pathName, bit32 mode, Attributes ) : FileStream(pathName, mode) {} in File() argument 33 … void Open(const wchar_t* pathName, bit32 mode, Attributes ) { Base::Initialize(pathName, mode); } in Open() argument 34 …Result TryOpen(const wchar_t* pathName, bit32 mode, Attributes) { return Base::TryInitialize(pathN… in TryOpen() argument
|
| /CTR-SDK-0.14.21/include/nn/gx/CTR/ |
| D | gx_MacroShader.h | 91 #define PICA_CMD_DATA_DRAW_MODE1(func, mode) \ argument 92 ( (func) | (mode) << 8 ) 94 #define PICA_CMD_SET_DRAW_MODE1(func, mode) \ argument 95 PICA_CMD_DATA_DRAW_MODE1(func, mode), PICA_CMD_HEADER_SINGLE_BE(PICA_REG_DRAW_MODE1, 0x3) 150 #define PICA_CMD_DATA_VS_FLOAT_ADDR(mode, index) \ argument 151 ( (index) & 0xff | ( (mode) ? 0x80000000 : 0) ) 153 #define PICA_CMD_SET_VS_FLOAT_ADDR(mode, index) \ argument 154 PICA_CMD_DATA_VS_FLOAT_ADDR(mode, index), PICA_CMD_HEADER_SINGLE(PICA_REG_VS_FLOAT_ADDR) 250 #define PICA_CMD_DATA_VS_GS_OUT_REG_NUM3(num, mode) \ argument 251 ( (num - 1) | (mode) << 8 ) [all …]
|
| D | gx_MacroMisc.h | 96 #define PICA_CMD_DATA_RENDER_BUFFER_DEPTH_MODE( mode ) (mode) argument 353 #define PICA_CMD_DATA_FRAGOP_CLIP(mode) ((mode) ? 1 : 0) argument 355 #define PICA_CMD_SET_FRAGOP_CLIP(mode) \ argument 356 PICA_CMD_DATA_FRAGOP_CLIP(mode), \ 427 #define PICA_CMD_DATA_FRAME_BUFFER_MODE(mode) (mode) argument 663 #define PICA_CMD_DATA_EARLY_DEPTH_TEST( mode ) ((mode) ? 1 : 0) argument 801 #define PICA_CMD_DATA_CULL_FACE( mode ) (mode) argument 803 #define PICA_CMD_SET_CULL_FACE( mode ) \ argument 804 PICA_CMD_DATA_CULL_FACE( mode ) , PICA_CMD_HEADER_SINGLE( PICA_REG_CULL_FACE ) 810 #define PICA_CMD_DATA_SCISSOR( mode ) ((mode) ? 3 : 0) argument [all …]
|
| D | gx_Misc.h | 55 void nngxSetMemAccessPrioMode( nngxMemAccessPrioMode mode ); 110 inline void SetMemAccessPrioMode( MemAccessPrioMode mode ) in SetMemAccessPrioMode() argument 112 nngxSetMemAccessPrioMode(static_cast<nngxMemAccessPrioMode>(mode)); in SetMemAccessPrioMode()
|
| D | gx_MacroOld.h | 178 #define PICA_CMD_DATA_FOG_OP_WSCALE(mode) ((mode == 0) ? 1 : 0) argument 190 #define PICA_CMD_DATA_FOG_OP_CLIP(mode) ((mode) ? 1 : 0) argument 192 #define PICA_CMD_SET_FOG_OP_CLIP(mode) \ argument 193 PICA_CMD_DATA_FOG_OP_CLIP(mode), \ 226 #define PICA_CMD_DATA_RENDER_BUF_DEPTH_MODE( mode ) (mode) argument
|
| D | gx_CTR.h | 154 NNGX_APICALL void NNGX_APIENTRY nngxTransferRenderImage(GLuint buffer, GLenum mode, GLboolean yflip… 157 NNGX_APICALL void NNGX_APIENTRY nngxSetDisplayMode(GLenum mode); 194 NNGX_APICALL void NNGX_APIENTRY nngxSetCommandGenerationMode(GLenum mode); 195 NNGX_APICALL void NNGX_APIENTRY nngxGetCommandGenerationMode(GLenum* mode);
|
| /CTR-SDK-0.14.21/include/nn/net/osl/ |
| D | osl_EventFlag.h | 60 bit32 Wait(bit32 pattern, WaitMode mode, nn::fnd::TimeSpan timeout); 61 bit32 Wait(bit32 pattern, WaitMode mode); 63 bit32 WaitAndClear(bit32 pattern, WaitMode mode, bit32 clear, nn::fnd::TimeSpan timeout); 64 bit32 WaitAndClear(bit32 pattern, WaitMode mode, bit32 clear); 83 inline bit32 EventFlag::Wait(bit32 pattern, WaitMode mode) in Wait() argument 85 return Wait(pattern, mode, InfiniteTimeSpan()); in Wait() 88 inline bit32 EventFlag::WaitAndClear(bit32 pattern, WaitMode mode, bit32 clear) in WaitAndClear() argument 90 return WaitAndClear(pattern, mode, clear, InfiniteTimeSpan()); in WaitAndClear() 109 …slEventFlagWaitSignal(nnnetOslEventFlag* this_, bit32 pattern, nnnetOslWaitMode mode, s64 timeout); 111 …lagWaitAndClear(nnnetOslEventFlag* this_, bit32 pattern, nnnetOslWaitMode mode, bit32 clear, s64 t…
|
| /CTR-SDK-0.14.21/include/nn/fs/CTR/MPCore/ |
| D | fs_FileBase.h | 39 Result TryOpenImpl(const wchar_t* path, bit32 mode) in TryOpenImpl() argument 41 return TryOpenFile(&m_P, path, mode); in TryOpenImpl() 44 Result TryOpenImpl(const wchar_t* path, bit32 mode, nn::fs::PathMark pathMark) in TryOpenImpl() argument 47 return TryOpenFile(&m_P, path, mode); in TryOpenImpl() 115 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRaw() argument 117 return UserFileSystem::TryOpenFileRaw(&m_P, handle, path, mode); in TryInitializeRaw() 120 …e, const nn::fs::CTR::MPCore::Path& archivePath, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRawDirectly() argument 122 return UserFileSystem::TryOpenFileRawDirectly(&m_P, archiveType, archivePath, path, mode); in TryInitializeRawDirectly()
|
| D | fs_UserFileSystem.h | 52 static Result TryOpenFile(void** pOut, const wchar_t* pathName, bit32 mode); 75 …atic Result TryOpenFileRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path, bit32 mode); 76 …RawDirectly(void** pOut, bit32 archiveType, const Path& archivePath, const Path& path, bit32 mode);
|
| /CTR-SDK-0.14.21/sources/libraries/ndm/ |
| D | ndm_UserControl.cpp | 90 Result EnterExclusiveState(ExclusiveMode mode) in EnterExclusiveState() argument 93 return Interface::EnterExclusiveState(static_cast<s32>(mode)); in EnterExclusiveState() 95 NN_UNUSED_VAR(mode); in EnterExclusiveState() 100 Result QueryExclusiveMode(ExclusiveMode& mode) in QueryExclusiveMode() argument 106 mode = static_cast<ExclusiveMode>(modeNumber); in QueryExclusiveMode() 108 mode = ndm::EM_NONE; in QueryExclusiveMode()
|
| /CTR-SDK-0.14.21/sources/libraries/rtport/rvct/ |
| D | rvct_stdio.cpp | 38 …gned char *buf, unsigned len, int mode) { NN_UNUSED_VAR(fh); NN_UNUSED_VAR(buf); NN_UNUSED_VAR(len… in _sys_write() argument 39 …ned char * buf, unsigned len, int mode) { NN_UNUSED_VAR(fh); NN_UNUSED_VAR(buf); NN_UNUSED_VAR(len… in _sys_read() argument
|
| /CTR-SDK-0.14.21/include/nn/fnd/ |
| D | fnd_FrameHeap.h | 72 void FreeAll(int mode); 80 MemoryRange Adjust(int mode); 169 inline void FrameHeapBase::FreeAll(int mode) in FreeAll() argument 171 NN_TASSERT_( mode == NN_FND_FRAMEHEAP_FREE_HEAD || in FreeAll() 172 mode == NN_FND_FRAMEHEAP_FREE_TAIL || in FreeAll() 173 mode == NN_FND_FRAMEHEAP_FREE_ALL); in FreeAll() 175 if ( mode & NN_FND_FRAMEHEAP_FREE_HEAD ) in FreeAll() 181 if ( mode & NN_FND_FRAMEHEAP_FREE_TAIL ) in FreeAll() 214 inline MemoryRange FrameHeapBase::Adjust(int mode) in Adjust() argument 217 if ( mode == 0 ) in Adjust() [all …]
|
| D | fnd_ExpHeap.h | 132 …Size, s32 alignment = DEFAULT_ALIGNMENT, bit8 groupId = 0, AllocationMode mode = ALLOCATION_MODE_F… 152 MemoryRange Adjust(HeapAdjustMode mode); 315 …Size, s32 alignment = DEFAULT_ALIGNMENT, bit8 groupId = 0, AllocationMode mode = ALLOCATION_MODE_F… 318 return Base::Allocate(byteSize, alignment, groupId, mode, reuse); 445 MemoryRange Adjust(HeapAdjustMode mode) in Adjust() argument 448 return Base::Adjust(mode); in Adjust() 522 … = 0, AllocationMode mode = ExpHeapBase::ALLOCATION_MODE_FIRST_FIT, bool reuse = false) : m_Heap(0… 537 …void Initialize(ExpHeapTemplate<LockPolicy>& heap, bit8 groupId = 0, AllocationMode mode = ExpHeap… 542 this->m_AllocationMode = mode;
|
| /CTR-SDK-0.14.21/include/nn/hid/CTR/ |
| D | hid_DebugPadReader.h | 122 void SetStickClampMode(StickClampMode mode); 142 inline void DebugPadReader::SetStickClampMode(DebugPadReader::StickClampMode mode) in SetStickClampMode() argument 144 m_StickClampMode = mode; in SetStickClampMode()
|
| D | hid_PadReader.h | 195 void SetStickClampMode(StickClampMode mode); 294 inline void PadReader::SetStickClampMode(StickClampMode mode) in SetStickClampMode() argument 296 m_StickClampMode = mode; in SetStickClampMode()
|
| D | hid_GyroscopeReader.h | 324 void SetZeroDriftMode(const ZeroDriftMode& mode); 331 void GetZeroDriftMode(ZeroDriftMode& mode) const;
|
| /CTR-SDK-0.14.21/include/nn/ndm/ |
| D | ndm_UserControl.h | 84 Result EnterExclusiveState(ExclusiveMode mode); 97 Result QueryExclusiveMode(ExclusiveMode& mode);
|
| /CTR-SDK-0.14.21/sources/libraries/fnd/ |
| D | fnd_ExpHeap.cpp | 55 void* ExpHeapBase::Allocate(size_t byteSize, s32 alignment, bit8 groupId, AllocationMode mode, bool… in Allocate() argument 58 detail::SetAllocModeForHeap(&m_ExpHeapImpl, mode); in Allocate() 137 MemoryRange ExpHeapBase::Adjust(HeapAdjustMode mode) in Adjust() argument 139 return detail::AdjustHeap(&m_ExpHeapImpl, mode); in Adjust()
|
| /CTR-SDK-0.14.21/include/nn/snd/CTR/MPCore/ |
| D | snd_Api.h | 324 bool SetSoundOutputMode(OutputMode mode); 338 bool SetClippingMode(ClippingMode mode); 393 bool SetSurroundDirectionFilter(s16* pSrc, s32 nCoeffs, s32 mode); 403 bool SetSurroundIirFilterCoeffs(s32* pSrc, s32 nCoeffs, s32 mode);
|
| /CTR-SDK-0.14.21/sources/libraries/fnd/detail/ |
| D | fnd_DetailHeap.h | 267 u16 mode); 368 HeapAdjustMode mode);
|
| D | fnd_DetailHeap.cpp | 300 u16 mode in SetAllocDirForMBlock() argument 303 NNSi_FndSetBitValue(pMBHead->attribute, 15, 1, mode); in SetAllocDirForMBlock() 339 u16 mode in SetAllocMode() argument 342 NNSi_FndSetBitValue(pEHHead->feature, 0, 1, mode); in SetAllocMode() 1556 u16 mode in SetAllocModeForHeap() argument 1564 SetAllocMode(pEHHead, mode); in SetAllocModeForHeap() 1775 AdjustHeap(Heap heap, HeapAdjustMode mode) in AdjustHeap() argument 1778 NN_TASSERT_( mode == HEAP_ADJUST_TAIL || mode == HEAP_ADJUST_HEAD ); in AdjustHeap() 1780 if ( mode == HEAP_ADJUST_TAIL ) in AdjustHeap() 1809 else if ( mode == HEAP_ADJUST_HEAD ) in AdjustHeap()
|
| /CTR-SDK-0.14.21/include/nn/net/compatible/nos/ |
| D | nos_horizon.h | 861 NN_INLINE u32 NOS_WaitEvent(NOSEventId eventId, u32 pattern, NOSEventMode mode) in NOS_WaitEvent() argument 864 …return nnnetOslEventFlagWaitSignal(&pEvent->eventFlag, pattern, (nnnetOslWaitMode)mode, NN_OS_WAIT… in NOS_WaitEvent() 879 NN_INLINE u32 NOS_WaitEventEx(NOSEventId eventId, u32 pattern, NOSEventMode mode, u32 clearBit) in NOS_WaitEventEx() argument 882 …return nnnetOslEventFlagWaitAndClear(&pEvent->eventFlag, pattern, (nnnetOslWaitMode)mode, clearBit… in NOS_WaitEventEx() 903 NN_INLINE u32 NOS_PollEvent(NOSEventId eventId, u32 pattern, NOSEventMode mode) in NOS_PollEvent() argument 906 return nnnetOslEventFlagWaitSignal(&pEvent->eventFlag, pattern, (nnnetOslWaitMode)mode, 0); in NOS_PollEvent() 921 NN_INLINE u32 NOS_TimeWaitEventEx(NOSEventId eventId, u32 pattern, NOSEventMode mode, u32 clearBit,… in NOS_TimeWaitEventEx() argument 924 …return nnnetOslEventFlagWaitAndClear(&pEvent->eventFlag, pattern, (nnnetOslWaitMode)mode, clearBit… in NOS_TimeWaitEventEx()
|
| /CTR-SDK-0.14.21/include/nn/font/CTR/ |
| D | font_CharWriter.h | 179 void SetGradationMode(GradationMode mode) in SetGradationMode() argument 181 NN_FONT_MINMAX_ASSERT(mode, GRADMODE_NONE, NUM_OF_GRADMODE - 1); in SetGradationMode() 182 m_GradationMode = mode; in SetGradationMode()
|
| D | font_RectDrawerCommand.h | 112 #define NN_FONT_CMD_SET_CULL_FACE( mode ) PICA_CMD_SET_CULL_FACE( mode ) argument
|