| /TwlSDK-5.1.0/include/twl/camera/ARM9/ |
| D | camera.h | 28 #define CAMERA_GET_MAX_LINES(width) MATH_MIN((1024 / (width)), 16) argument 29 #define CAMERA_GET_LINE_BYTES(width) ((width) << 1) argument 30 #define CAMERA_GET_FRAME_BYTES(width, height) (CAMERA_GET_LINE_BYTES(width) * (height)) argument 346 int CAMERA_GetMaxLinesRoundCore(u16 width, u16 height); 347 SDK_INLINE int CAMERA_GetMaxLinesRound(u16 width, u16 height) in CAMERA_GetMaxLinesRound() argument 351 return CAMERA_GetMaxLinesRoundCore(width, height); in CAMERA_GetMaxLinesRound() 365 u32 CAMERA_GetBytesAtOnceCore(u16 width); 366 SDK_INLINE u32 CAMERA_GetBytesAtOnce(u16 width) in CAMERA_GetBytesAtOnce() argument 370 return CAMERA_GetBytesAtOnceCore(width); in CAMERA_GetBytesAtOnce()
|
| /TwlSDK-5.1.0/include/twl/ssp/ARM9/ |
| D | jpegenc.h | 46 u32 SSP_GetJpegEncoderBufferSize(u32 width, u32 height, u32 sampling, u32 option); 73 u32 width, u32 height, 102 u32 width, u32 height, in SSP_StartJpegEncoderEx() argument 108 result = SSP_StartJpegEncoder(src, dst, limit, wrk, width, height, quality, sampling, option); in SSP_StartJpegEncoderEx() 137 u32 width, u32 height, u32 sampling, u32 option); 164 u32 width, u32 height, 193 u32 width, u32 height, in SSP_StartJpegEncoderWithEncodeDataEx() argument 199 …result = SSP_StartJpegEncoderWithEncodeData(dst, limit, wrk, width, height, quality, sampling, opt… in SSP_StartJpegEncoderWithEncodeDataEx()
|
| D | jpegdec.h | 62 BOOL SSP_StartJpegDecoder(u8* data, u32 size, void* dst, s16* width, s16* height, u32 option); 85 static inline BOOL SSP_StartJpegDecoderEx(u8* data, u32 size, void* dst, s16* width, s16* height, u… in SSP_StartJpegDecoderEx() argument 90 result = SSP_StartJpegDecoder(data, size, dst, width, height, option); in SSP_StartJpegDecoderEx()
|
| /TwlSDK-5.1.0/build/libraries/std/common/src/ |
| D | std_sprintf.c | 200 int flag = 0, width = 0, precision = -1, radix = 10; in STD_TVSNPrintf() local 228 ++s, width = va_arg(vlist, int); in STD_TVSNPrintf() 229 if (width < 0) in STD_TVSNPrintf() 230 width = -width, flag |= flag_minus; in STD_TVSNPrintf() 235 width = (width * 10) + *s++ - '0'; in STD_TVSNPrintf() 299 width -= 1; in STD_TVSNPrintf() 303 string_fill_char(&str, ' ', width); in STD_TVSNPrintf() 308 string_fill_char(&str, pad, width); in STD_TVSNPrintf() 329 width -= n_buf; in STD_TVSNPrintf() 333 string_fill_char(&str, ' ', width); in STD_TVSNPrintf() [all …]
|
| D | std_string.c | 943 int flag = 0, width = 0, radix = 10; in STD_TVSScanf() local 956 width = (width * 10) + c - '0'; in STD_TVSScanf() 1081 if (width == 0) in STD_TVSScanf() 1083 width = 0x7FFFFFFF; in STD_TVSScanf() 1085 for (digit = 0; digit < width; ++digit) in STD_TVSScanf() 1163 if (width == 0) in STD_TVSScanf() 1165 width = 0x7FFFFFFF; in STD_TVSScanf() 1170 for (; c && !STDi_IsSpace(c) && (width > 0); --width, c = *++src) in STD_TVSScanf() 1190 if (width == 0) in STD_TVSScanf() 1192 width = 1; in STD_TVSScanf() [all …]
|
| /TwlSDK-5.1.0/include/twl/camera/common/ |
| D | util.h | 95 CAMERASize CAMERA_WidthHeightToSizeCore( u16 width, u16 height ); 96 SDK_INLINE CAMERASize CAMERA_WidthHeightToSize( u16 width, u16 height ) in CAMERA_WidthHeightToSize() argument 100 return CAMERA_WidthHeightToSizeCore(width, height); in CAMERA_WidthHeightToSize() 114 CAMERASize CAMERA_WidthToSizeCore( u16 width ); 115 SDK_INLINE CAMERASize CAMERA_WidthToSize( u16 width ) in CAMERA_WidthToSize() argument 119 return CAMERA_WidthToSizeCore(width); in CAMERA_WidthToSize()
|
| /TwlSDK-5.1.0/man/en_US/css/ |
| D | apilist.css | 16 border-right-width : 8px; 26 width : 100%; 31 border-width : 2pt; 41 border-width : 0pt; 47 width : 30%; 86 border-width : 0 0 1px 0; 98 border-width : 0 0 1px 2px;
|
| D | nitro.css | 10 border-left-width : 8px; 15 border-bottom-width : 2px; 25 border-bottom-width : 5px; 45 width : 95%; 49 border-width : 2pt; 93 border-right-width : 8px; 125 width : 13%; 130 width : 87%; 156 width: auto; 169 width: auto;
|
| D | titles.css | 47 border-width : 0pt 58 border-width : 0pt; 86 border-width : 1px 0 0 0; 132 width : 99%;
|
| D | categories.css | 47 border-width : 0pt 60 border-width : 0pt; 87 border-width : 1px 0 0 0; 133 width : 100%;
|
| /TwlSDK-5.1.0/build/demos/wm/dataShare-Model/src/ |
| D | graphics.c | 76 void drawPseudo2DTexQuad(int sx, int sy, int width, int height, int texw, int texh) in drawPseudo2DTexQuad() argument 89 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)(sy * PSEUDO2D_ONE), 0); in drawPseudo2DTexQuad() 93 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)((sy + height) * PSEUDO2D_ONE), 0); in drawPseudo2DTexQuad() 101 void drawPseudo2DColorQuad(int sx, int sy, int width, int height, GXRgb color) in drawPseudo2DColorQuad() argument 109 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)(sy * PSEUDO2D_ONE), 0); in drawPseudo2DColorQuad() 110 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)((sy + height) * PSEUDO2D_ONE), 0); in drawPseudo2DColorQuad()
|
| /TwlSDK-5.1.0/build/demos/wm/wep-1/src/ |
| D | graphics.c | 75 void drawPseudo2DTexQuad(int sx, int sy, int width, int height, int texw, int texh) in drawPseudo2DTexQuad() argument 88 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)(sy * PSEUDO2D_ONE), 0); in drawPseudo2DTexQuad() 92 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)((sy + height) * PSEUDO2D_ONE), 0); in drawPseudo2DTexQuad() 100 void drawPseudo2DColorQuad(int sx, int sy, int width, int height, GXRgb color) in drawPseudo2DColorQuad() argument 108 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)(sy * PSEUDO2D_ONE), 0); in drawPseudo2DColorQuad() 109 G3_Vtx((fx16)((sx + width) * PSEUDO2D_ONE), (fx16)((sy + height) * PSEUDO2D_ONE), 0); in drawPseudo2DColorQuad()
|
| /TwlSDK-5.1.0/build/libraries/camera/common/src/ |
| D | camera_util.c | 103 CAMERASize CAMERA_WidthHeightToSizeCore( u16 width, u16 height ) in CAMERA_WidthHeightToSizeCore() argument 108 if (width == CAMERA_SizeToWidthCore((CAMERASize)size)) in CAMERA_WidthHeightToSizeCore() 129 CAMERASize CAMERA_WidthToSizeCore( u16 width ) in CAMERA_WidthToSizeCore() argument 134 if (width == CAMERA_SizeToWidthCore((CAMERASize)size)) in CAMERA_WidthToSizeCore()
|
| /TwlSDK-5.1.0/include/twl/dsp/common/ |
| D | graphics.h | 80 u16 width; member 112 … u16 x, u16 y, u16 width, u16 height, DSP_GraphicsCallback callback, BOOL async); 114 … u16 x, u16 y, u16 width, u16 height, DSP_GraphicsCallback callback, BOOL async); 275 u16 x, u16 y, u16 width, u16 height) in DSP_ScalingEx() argument 279 …return DSPi_ScalingCore(src, dst, img_width, img_height, rx, ry, mode, x, y, width, height, NULL, … in DSP_ScalingEx() 285 u16 x, u16 y, u16 width, u16 height) in DSP_ScalingFxEx() argument 289 …return DSPi_ScalingFxCore(src, dst, img_width, img_height, rx, ry, mode, x, y, width, height, NULL… in DSP_ScalingFxEx() 295 u16 x, u16 y, u16 width, u16 height, DSP_GraphicsCallback callback) in DSP_ScalingAsyncEx() argument 299 …return DSPi_ScalingCore(src, dst, img_width, img_height, rx, ry, mode, x, y, width, height, callba… in DSP_ScalingAsyncEx() 305 … u16 x, u16 y, u16 width, u16 height, DSP_GraphicsCallback callback) in DSP_ScalingFxAsyncEx() argument [all …]
|
| /TwlSDK-5.1.0/build/demos/wm/dataShare-Model/include/ |
| D | graphics.h | 25 extern void drawPseudo2DTexQuad(int sx, int sy, int width, int height, int texw, int texh); 26 extern void drawPseudo2DColorQuad(int sx, int sy, int width, int height, GXRgb color);
|
| /TwlSDK-5.1.0/build/demos/wm/wep-1/include/ |
| D | graphics.h | 25 extern void drawPseudo2DTexQuad(int sx, int sy, int width, int height, int texw, int texh); 26 extern void drawPseudo2DColorQuad(int sx, int sy, int width, int height, GXRgb color);
|
| /TwlSDK-5.1.0/include/nitro/wfs/ |
| D | format.h | 86 #define MI_LEToH32_BITFIELD(width, value) MI_LEToH32(value) argument 87 #define MI_HToLE32_BITFIELD(width, value) MI_HToLE32(value) argument 89 #define MI_LEToH32_BITFIELD(width, value) (u32)(MI_LEToH32(value << (32 - width))) argument 90 #define MI_HToLE32_BITFIELD(width, value) (u32)(MI_HToLE32(value) >> (32 - width)) argument
|
| /TwlSDK-5.1.0/build/tools/ppmconv/ |
| D | ppmconv.c | 160 int width; in main() local 175 if (ReadHeader(fp, &width, &height, &depth) && depth == 255) in main() 177 size = width * height * 3; in main() 178 printf("\t/* %s: WIDTH=%d HEIGHT=%d DEPTH=%d */\n", argv[1], width, height, depth); in main()
|
| D | ppmconvbg.c | 102 static void OutputIndex(FILE * fp, char *label, int max_colors, int width, int height, u8 *pixel); 405 static void OutputIndex(FILE * fp, char *label, int max_colors, int width, int height, u8 *pixel) in OutputIndex() argument 414 fprintf(fp, "const int Num_%s_Texel = %d * %d;\n\n", label, width, height); in OutputIndex() 419 for (j = 0; j < width; j += 8) in OutputIndex() 425 n = (i + ii) * width + j + jj; in OutputIndex() 449 for (j = 0; j < width; j += 8) in OutputIndex() 455 n = (i + ii) * width + j + jj; in OutputIndex() 495 int width; in Convert() local 509 result = ReadHeader(fp, &width, &height, &depth); in Convert() 513 num_pixels = width * height; in Convert() [all …]
|
| D | ppmconv8.c | 239 int width; in main() local 255 if (ReadHeader(fp, &width, &height, &depth) && depth == 255) in main() 257 size = width * height * 3; in main() 262 printf("const unsigned char %s_Texel[%d * %d] =\n{\n", argv[2], width, height); in main() 263 printf("\t/* %s: WIDTH=%d HEIGHT=%d DEPTH=%d */\n", argv[1], width, height, in main()
|
| /TwlSDK-5.1.0/build/demos.TWL/dsp/scaling-1/src/ |
| D | main.c | 77 static void WriteScreenBuffer(u16 *data, u32 width, u32 height, u16 *scr); 322 static void WriteScreenBuffer(u16 *data, u32 width, u32 height, u16 *scr) in WriteScreenBuffer() argument 340 if( width > HW_LCD_WIDTH) in WriteScreenBuffer() 346 tmp_linesize = width * sizeof(u16); in WriteScreenBuffer() 351 MI_CpuCopy( data + width * i, scr + HW_LCD_WIDTH * i, tmp_linesize ); in WriteScreenBuffer()
|
| /TwlSDK-5.1.0/build/libraries/os/common/src/ |
| D | os_printf.c | 948 int flag = 0, width = 0, precision = -1, radix = 10; in OS_VSNPrintfEx() local 979 ++s, width = va_arg(vlist, int); in OS_VSNPrintfEx() 980 if (width < 0) in OS_VSNPrintfEx() 981 width = -width, flag |= flag_minus; in OS_VSNPrintfEx() 986 width = (width * 10) + *s++ - '0'; in OS_VSNPrintfEx() 1052 width -= 1; in OS_VSNPrintfEx() 1072 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx() 1077 string_fill_char(&str, pad, width); in OS_VSNPrintfEx() 1140 width -= n_buf; in OS_VSNPrintfEx() 1165 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx() [all …]
|
| /TwlSDK-5.1.0/build/libraries/dsp/ARM9.TWL/src/ |
| D | dsp_graphics.c | 242 … u16 x, u16 y, u16 width, u16 height, DSP_GraphicsCallback callback, BOOL async) in DSPi_ScalingCore() argument 286 sc_param.width = width; in DSPi_ScalingCore() 320 … u16 x, u16 y, u16 width, u16 height, DSP_GraphicsCallback callback, BOOL async) in DSPi_ScalingFxCore() argument 365 sc_param.width = width; in DSPi_ScalingFxCore()
|
| /TwlSDK-5.1.0/build/demos.TWL/dsp/scaling-2/src/ |
| D | main.c | 76 static void WriteScreenBuffer(u16 *data, u32 width, u32 height, u16 *scr); 341 static void WriteScreenBuffer(u16 *data, u32 width, u32 height, u16 *scr) in WriteScreenBuffer() argument 359 if( width > HW_LCD_WIDTH) in WriteScreenBuffer() 365 tmp_linesize = width * sizeof(u16); in WriteScreenBuffer() 370 MI_CpuCopy( data + width * i, scr + HW_LCD_WIDTH * i, tmp_linesize ); in WriteScreenBuffer()
|
| /TwlSDK-5.1.0/build/libraries/camera/ARM9.TWL/src/ |
| D | camera.c | 412 int CAMERA_GetMaxLinesRoundCore(u16 width, u16 height) in CAMERA_GetMaxLinesRoundCore() argument 416 for(lines = CAMERA_GET_MAX_LINES(width) ;lines > 1; lines--) in CAMERA_GetMaxLinesRoundCore() 435 u32 CAMERA_GetBytesAtOnceCore(u16 width) in CAMERA_GetBytesAtOnceCore() argument 437 return (u32)( CAMERA_GET_LINE_BYTES(width) * CAMERA_GetTransferLinesCore() ); in CAMERA_GetBytesAtOnceCore()
|