| /CTR-SDK-0.13.2/sources/libraries/tpl/CTR/ |
| D | tpl_crc32.cpp | 117 const void *_base, unsigned int num, unsigned int width, unsigned int crc) in search_crc32_index() argument 126 unsigned int k = *(const unsigned int *)(base + (width * c)); in search_crc32_index() 134 unsigned int kk = *(const unsigned int *)(base + (width * (c - 1))); in search_crc32_index() 192 const void *_base, unsigned int num, unsigned int width, unsigned int crc, in search_crc32_data() argument 199 int t = search_crc32_index(_base, num, width, crc); in search_crc32_data() 207 const unsigned int *k = (const unsigned int *)(base + (width * t)); in search_crc32_data()
|
| D | tpl_crc32.h | 52 const void *base, unsigned int num, unsigned int width, unsigned int crc); 75 const void *base, unsigned int num, unsigned int width, unsigned int crc,
|
| D | tpl_ReadTexturePackage.cpp | 119 pTexInfo->width = texInfo->width; in GetTextureInfo()
|
| /CTR-SDK-0.13.2/include/nn/gr/CTR/ |
| D | gr_Viewport.h | 39 Viewport( void ) : x( 0 ), y( 0 ), width( 240 ), height( 320 ) {} in Viewport() 49 …Viewport( s32 x_, s32 y_, u32 width_, u32 height_ ) : x( x_ ), y( y_ ), width( width_ ), height( h… in Viewport() 73 x = x_; y = y_; width = width_; height = height_; in Set() 90 u32 width; variable
|
| D | gr_Scissor.h | 37 …Scissor() : isEnable( true ), x( 0 ), y( 0 ), width( 240 ), height( 320 ), bufferWidth( 256 ), buf… in Scissor() 51 …: isEnable( isEnable_ ), x( x_ ), y( y_ ), width( width_ ), height( height_ ), bufferWidth( buffer… in Scissor() 74 x = x_; y = y_; width = width_; height = height_; in Set() 108 u32 width; variable
|
| /CTR-SDK-0.13.2/include/nn/camera/CTR/ |
| D | camera_Api.h | 47 void SetTransferLines( Port port, s16 lines, s16 width, s16 height ); 48 s16 GetMaxLines( s16 width, s16 height ); 49 void SetTransferBytes( Port port, size_t bytes, s16 width, s16 height ); 51 size_t GetMaxBytes( s16 width, s16 height ); 68 …nn::Result SetDetailSize( CameraSelect select, s16 width, s16 height, s16 cropX0, s16 cropY0, s16 … 76 …nn::Result SetAutoExposureWindow( CameraSelect select, s16 startX, s16 startY, s16 width, s16 heig… 77 …lt SetAutoWhiteBalanceWindow( CameraSelect select, s16 startX, s16 startY, s16 width, s16 height ); 228 inline void SetTransferLines( Port port, s16 lines, s16 width, s16 height ) in SetTransferLines() argument 230 detail::SetTransferLines(port, lines, width, height); in SetTransferLines() 247 inline s16 GetMaxLines( s16 width, s16 height ) in GetMaxLines() argument [all …]
|
| D | camera_Camera.h | 122 …static nn::Result SetTransferLines( nn::camera::CTR::Port port, s16 lines, s16 width, s16 height ); 123 static nn::Result GetMaxLines( s16* pLines, s16 width, s16 height ); 124 …static nn::Result SetTransferBytes( nn::camera::CTR::Port port, size_t bytes, s16 width, s16 heigh… 126 static nn::Result GetMaxBytes( size_t* pBytes, s16 width, s16 height ); 143 …static nn::Result SetDetailSize( nn::camera::CTR::CameraSelect camera, s16 width, s16 height, s16 … 151 …osureWindow( nn::camera::CTR::CameraSelect camera, s16 startX, s16 startY, s16 width, s16 height ); 152 …lanceWindow( nn::camera::CTR::CameraSelect camera, s16 startX, s16 startY, s16 width, s16 height );
|
| /CTR-SDK-0.13.2/include/nn/font/CTR/ |
| D | font_RectDrawerCommand.h | 53 u16 width; //!< 幅 member 89 #define NN_FONT_CMD_SET_VIEWPORT( x, y, width, height ) \ argument 90 nn::util::Float24::Float32ToBits24( (width) / 2.0f ), \ 92 nn::util::Float31::Float32ToBits31( 2.0f / (width) ) << 1, \ 127 NN_FONT_CMD_SCISSOR_VAL( x, (cbSz).width ) \ 129 NN_FONT_CMD_SCISSOR_VAL( (x) + (w) - 1, (cbSz).width ) \ 144 ((cbSz).width - 1) | ((cbSz).height - 1) << 16
|
| D | font_CharWriter.h | 282 f32 width, 338 void SetFixedWidth(f32 width) { m_FixedWidth = width; } in SetFixedWidth() argument
|
| /CTR-SDK-0.13.2/documents/api/css/ |
| D | button.css | 22 border-width : 1pt; 25 width : 100%; 41 border-width : 1px; 55 border-width : 1px;
|
| D | contents.css | 30 border-width : 1px 0 0 0; 47 border-width : 1px; 62 border-width : 1px; 109 border-width : 1px; 132 width : 60px; 144 border-width : 1px 2px 2px 1px;
|
| D | main.css | 125 border-width : 3px; 139 border-width : 0px 0px 2px 8px; 151 border-width : 0pt; 207 border-width : 0px; 219 border-width : 1px;
|
| D | manpage.css | 31 border-width : 3px; 44 border-width : 0px 0px 2px 8px; 57 border-width : 0px 0px 2px 0px; 67 width : 95%; 92 width : 20%;
|
| /CTR-SDK-0.13.2/include/nn/util/ |
| D | util_Rect.h | 126 void SetWidth(f32 width) { right = left + width; } in SetWidth() 171 void SetOriginAndSize(f32 x, f32 y, f32 width, f32 height ) in SetOriginAndSize() 174 right = x + width; in SetOriginAndSize()
|
| /CTR-SDK-0.13.2/sources/libraries/gr/CTR/ |
| D | gr_Viewport.cpp | 29 u32 width24 = Float32ToFloat24( width / 2.f ); in MakeCommand() 30 u32 width31 = Float32ToFloat31( 2.f / width ) << 1; in MakeCommand()
|
| D | gr_Scissor.cpp | 27 s32 temp_width = x + width - 1; in MakeCommand()
|
| D | gr_Texture.cpp | 37 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand() 111 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand() 156 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand() 227 width( 0 ), in UnitBase()
|
| /CTR-SDK-0.13.2/include/nn/tpl/CTR/ |
| D | tpl_PackagerType.h | 70 unsigned short width; //!< 幅 member
|
| /CTR-SDK-0.13.2/include/nn/jpeg/CTR/ |
| D | jpeg_MpEncoder.h | 131 …void SetThumbnailSize(u32 width, u32 height, PixelSampling dstPixelSampling = DEFAULT_THUMBNAIL_PI… 135 m_TemporarySetting.thumbnailWidth = width; 171 void SetInputBufferWidth(u32 width) in SetInputBufferWidth() argument 175 if (width <= MAX_ENCODER_INPUT_BUFFER_WIDTH) in SetInputBufferWidth() 177 m_TemporarySetting.inputBufferWidth = width; in SetInputBufferWidth() 772 u32 width, 844 u32 width, 1600 u32 width, 1687 u32 width,
|
| /CTR-SDK-0.13.2/include/nn/gx/CTR/ |
| D | gx_MacroMisc.h | 83 #define PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ) \ argument 84 ( (width) | \ 348 #define PICA_CMD_DATA_VIEWPORT_WIDTH(width) (width) argument
|
| D | gx_MacroOld.h | 240 #define PICA_CMD_DATA_RENDER_BUF_RESOLUTION( width, height ) ( (width) | (height) << 12 | 0x0100000… argument 513 #define PICA_CMD_DATA_TEX_SIZE( width, height ) \ argument 514 ( (width) << 16 | (height) )
|
| /CTR-SDK-0.13.2/include/nn/font/ |
| D | font_Font.h | 44 u16 width; //!< 幅 member 59 u16 width,
|
| /CTR-SDK-0.13.2/tools/FontConverter/xlor/ |
| D | letter-order.dtd | 23 <!ATTLIST area width CDATA "16"> attribute
|
| /CTR-SDK-0.13.2/include/gles2/ |
| D | gl2.h | 528 …sedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, G… 529 …num target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, G… 530 …arget, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); 594 GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); 598 GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, … 600 …IENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); 602 GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); 611 … glTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, G… 646 GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height);
|
| /CTR-SDK-0.13.2/include/nn/y2r/CTR/ |
| D | y2r_Api.h | 62 void SetInputLineWidth( s16 width ); 377 inline void SetInputLineWidth( s16 width ) in SetInputLineWidth() argument 379 detail::SetInputLineWidth(width); in SetInputLineWidth()
|