Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/camera/CTR/
Dcamera_Api.h58 nn::Result Activate( CameraSelect select );
59 nn::Result SwitchContext( CameraSelect select, Context next );
60 nn::Result SetExposure( CameraSelect select, s8 exposure );
61 nn::Result SetWhiteBalance( CameraSelect select, WhiteBalance wb );
62 nn::Result SetSharpness( CameraSelect select, s8 sharpness );
63 nn::Result SetAutoExposure( CameraSelect select, bool on );
64 nn::Result IsAutoExposure( bool* pOn, CameraSelect select );
65 nn::Result SetAutoWhiteBalance( CameraSelect select, bool on );
66 nn::Result IsAutoWhiteBalance( bool* pOn, CameraSelect select );
67 nn::Result FlipImage( CameraSelect select, Flip flip, Context context );
[all …]
Dcamera_Camera.h174 static nn::Result SetSleepCamera( nn::camera::CTR::CameraSelect select );
/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_StreamingUncompression.cpp475 inline u8* GetNextNode( const u8* pTree, u32 select ) in GetNextNode() argument
477 return (u8*)( ((u32)pTree & ~0x1) + ( ( (*pTree & 0x3F) + 1 ) * 2 ) + select ); in GetNextNode()
503 u32 select; in ReadUncompHuffman() local
580 select = context->srcTmp >> 31; in ReadUncompHuffman()
581 endFlag = (*context->treep << select) & TREE_END_MASK; in ReadUncompHuffman()
582 context->treep = GetNextNode( context->treep, select ); in ReadUncompHuffman()