Searched refs:pos (Results 1 – 7 of 7) sorted by relevance
| /CTR-SDK-0.13.2/include/nn/math/ |
| D | math_Utility.h | 126 inline T ExtractBits(bit32 v, int pos, int len) in ExtractBits() argument 128 return static_cast<T>( v & (((1u << len) - 1) << pos) ); in ExtractBits() 132 inline T ExtractBits(bit64 v, int pos, int len) in ExtractBits() argument 134 return static_cast<T>( v & (((1ull << len) - 1) << pos) ); in ExtractBits() 138 inline T GetBits(bit32 v, int pos, int len) in GetBits() argument 140 return static_cast<T>( (v >> pos) & ((1u << len) - 1) ); in GetBits() 144 inline T GetBits(bit64 v, int pos, int len) in GetBits() argument 146 return static_cast<T>( (v >> pos) & ((1ull << len) - 1) ); in GetBits()
|
| D | math_Arithmetic.h | 170 f32 pos = FAbs(abs); in FCopySign() local 173 return FSelect(sign, pos, neg); in FCopySign()
|
| /CTR-SDK-0.13.2/include/nn/hio/CTR/ |
| D | hio_HostFile.h | 218 s64 pos; in Seek() local 219 return Seek(&pos, offset, type).IsFailure() ? -1: pos; in Seek()
|
| /CTR-SDK-0.13.2/sources/libraries/rtport/rvct/ |
| D | rvct_stdio.cpp | 42 … int _sys_seek(FILEHANDLE fh, long pos) { NN_UNUSED_VAR(fh); NN_UNUSED_VAR(pos); return -1; } in _sys_seek() argument
|
| /CTR-SDK-0.13.2/include/nn/font/ |
| D | font_Types.h | 123 f32 pos[POS_NUM]; member
|
| /CTR-SDK-0.13.2/include/nn/font/CTR/ |
| D | font_DispStringBuffer.h | 27 math::VEC4 pos; member
|
| /CTR-SDK-0.13.2/include/nn/snd/CTR/MPCore/ |
| D | snd_Api.h | 370 bool SetSurroundSpeakerPosition(SurroundSpeakerPosition pos);
|