Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 7 of 7) sorted by relevance

/CTR-SDK-0.14.4/include/nn/math/
Dmath_Utility.h126 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()
Dmath_Arithmetic.h170 f32 pos = FAbs(abs); in FCopySign() local
173 return FSelect(sign, pos, neg); in FCopySign()
/CTR-SDK-0.14.4/include/nn/hio/CTR/
Dhio_HostFile.h218 s64 pos; in Seek() local
219 return Seek(&pos, offset, type).IsFailure() ? -1: pos; in Seek()
/CTR-SDK-0.14.4/sources/libraries/rtport/rvct/
Drvct_stdio.cpp42 … int _sys_seek(FILEHANDLE fh, long pos) { NN_UNUSED_VAR(fh); NN_UNUSED_VAR(pos); return -1; } in _sys_seek() argument
/CTR-SDK-0.14.4/include/nn/font/
Dfont_Types.h123 f32 pos[POS_NUM]; member
/CTR-SDK-0.14.4/include/nn/font/CTR/
Dfont_DispStringBuffer.h27 math::VEC4 pos; member
/CTR-SDK-0.14.4/include/nn/snd/CTR/MPCore/
Dsnd_Api.h374 bool SetSurroundSpeakerPosition(SurroundSpeakerPosition pos);