/AliOS-Things-master/components/SDL2/src/audio/ |
A D | SDL_audiotypecvt.c | 176 *dst = 127; in SDL_Convert_F32_to_S8_Scalar() 178 *dst = -128; in SDL_Convert_F32_to_S8_Scalar() 202 *dst = 255; in SDL_Convert_F32_to_U8_Scalar() 204 *dst = 0; in SDL_Convert_F32_to_U8_Scalar() 256 *dst = 0; in SDL_Convert_F32_to_U16_Scalar() 628 *dst = 0; in SDL_Convert_F32_to_U8_SSE2() 660 *dst = 0; in SDL_Convert_F32_to_U8_SSE2() 746 *dst = 0; in SDL_Convert_F32_to_U16_SSE2() 784 *dst = 0; in SDL_Convert_F32_to_U16_SSE2() 1164 *dst = 0; in SDL_Convert_F32_to_U8_NEON() [all …]
|
A D | SDL_mixer.c | 111 *dst = mix8[*dst + src_sample]; in SDL_MixAudioFormat() 112 ++dst; in SDL_MixAudioFormat() 128 dst8 = (Sint8 *) dst; in SDL_MixAudioFormat() 157 src2 = ((dst[1]) << 8 | dst[0]); in SDL_MixAudioFormat() 168 dst += 2; in SDL_MixAudioFormat() 188 src2 = ((dst[0]) << 8 | dst[1]); in SDL_MixAudioFormat() 199 dst += 2; in SDL_MixAudioFormat() 215 src2 = ((dst[1]) << 8 | dst[0]); in SDL_MixAudioFormat() 224 dst += 2; in SDL_MixAudioFormat() 239 src2 = ((dst[0]) << 8 | dst[1]); in SDL_MixAudioFormat() [all …]
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_blit_1.c | 47 dst = info->dst; in Blit1to1() 58 dst++; in Blit1to1() 65 dst++; in Blit1to1() 91 Uint8 *src, *dst; in Blit1to2() local 100 dst = info->dst; in Blit1to2() 207 dst = info->dst; in Blit1to3() 256 dst = (Uint32 *) info->dst; in Blit1to4() 295 Uint8 *dst = info->dst; in Blit1to1Key() local 374 Uint8 *dst = info->dst; in Blit1to3Key() local 439 Uint8 *dst = info->dst; in Blit1toNAlpha() local [all …]
|
A D | SDL_blit_copy.c | 47 dst += 64; in SDL_memcpySSE() 51 SDL_memcpy(dst, src, len & 63); in SDL_memcpySSE() 65 __m64* d64 = (__m64*)dst; in SDL_memcpyMMX() 94 Uint8 *src, *dst; in SDL_BlitCopy() local 101 dst = info->dst; in SDL_BlitCopy() 106 if (src < dst) { in SDL_BlitCopy() 112 if ( dst < src ) { in SDL_BlitCopy() 137 dst += dstskip; in SDL_BlitCopy() 148 dst += dstskip; in SDL_BlitCopy() 156 SDL_memcpy(dst, src, w); in SDL_BlitCopy() [all …]
|
A D | SDL_blit_N.c | 1005 dst = info->dst; in Blit_RGB888_index8() 1115 dst = info->dst; in Blit_RGB101010_index8() 2098 dst = info->dst; in BlitNto1() 2336 Uint8 *dst = info->dst; in BlitNtoN() local 2455 Uint8 *dst = info->dst; in BlitNtoNCopyAlpha() local 2513 Uint8 *dst = info->dst; in BlitNto1Key() local 2613 Uint8 *dst = info->dst; in BlitNtoNKey() local 2885 Uint8 *dst = info->dst; in BlitNtoNKeyCopyAlpha() local 2989 Uint8 *dst = info->dst; in Blit2101010toN() local 3021 Uint8 *dst = info->dst; in BlitNto2101010() local [all …]
|
A D | SDL_blit_0.c | 43 dst = info->dst; in BlitBto1() 59 dst++; in BlitBto1() 99 dst = (Uint16 *) info->dst; in BlitBto2() 115 dst++; in BlitBto2() 135 dst = info->dst; in BlitBto3() 175 dst = (Uint32 *) info->dst; in BlitBto4() 191 dst++; in BlitBto4() 204 Uint8 *dst = info->dst; in BlitBto1Key() local 292 Uint8 *dst = info->dst; in BlitBto3Key() local 361 Uint8 *dst = info->dst; in BlitBtoNAlpha() local [all …]
|
A D | SDL_RLEaccel.c | 193 d = (dst[0] << 16) | (dst[1] << 8) | dst[2]; \ 196 d = (dst[2] << 16) | (dst[1] << 8) | dst[0]; \ 922 dst++; in uncopy_opaque_16() 981 dst++; in uncopy_transl_16() 1016 dst++; in uncopy_32() 1141 (((Uint16 *)dst)[0] = n, ((Uint16 *)dst)[1] = m, dst += 4) in RLEAlphaSurface() 1166 dst += copy_opaque(dst, src + runstart, len, sf, df); in RLEAlphaSurface() 1179 dst += (uintptr_t) dst & 2; in RLEAlphaSurface() 1319 dst = rlebuf; in RLEColorkeySurface() 1322 lastline = dst; in RLEColorkeySurface() [all …]
|
/AliOS-Things-master/components/SDL2/src/render/software/ |
A D | SDL_drawpoint.c | 32 if (!dst) { in SDL_DrawPoint() 37 if (dst->format->BitsPerPixel < 8) { in SDL_DrawPoint() 42 if (x < dst->clip_rect.x || y < dst->clip_rect.y || in SDL_DrawPoint() 43 x >= (dst->clip_rect.x + dst->clip_rect.w) || in SDL_DrawPoint() 44 y >= (dst->clip_rect.y + dst->clip_rect.h)) { in SDL_DrawPoint() 73 if (!dst) { in SDL_DrawPoints() 78 if (dst->format->BitsPerPixel < 8) { in SDL_DrawPoints() 82 minx = dst->clip_rect.x; in SDL_DrawPoints() 83 maxx = dst->clip_rect.x + dst->clip_rect.w - 1; in SDL_DrawPoints() 84 miny = dst->clip_rect.y; in SDL_DrawPoints() [all …]
|
A D | SDL_blendpoint.c | 220 if (!dst) { in SDL_BlendPoint() 230 if (x < dst->clip_rect.x || y < dst->clip_rect.y || in SDL_BlendPoint() 231 x >= (dst->clip_rect.x + dst->clip_rect.w) || in SDL_BlendPoint() 232 y >= (dst->clip_rect.y + dst->clip_rect.h)) { in SDL_BlendPoint() 270 if (!dst->format->Amask) { in SDL_BlendPoint() 289 if (!dst) { in SDL_BlendPoints() 336 if (!dst->format->Amask) { in SDL_BlendPoints() 343 minx = dst->clip_rect.x; in SDL_BlendPoints() 344 maxx = dst->clip_rect.x + dst->clip_rect.w - 1; in SDL_BlendPoints() 345 miny = dst->clip_rect.y; in SDL_BlendPoints() [all …]
|
A D | SDL_blendfillrect.c | 222 if (!dst) { in SDL_BlendFillRect() 239 rect = &dst->clip_rect; in SDL_BlendFillRect() 250 switch (dst->format->Rmask) { in SDL_BlendFillRect() 256 switch (dst->format->Rmask) { in SDL_BlendFillRect() 262 switch (dst->format->Rmask) { in SDL_BlendFillRect() 276 if (!dst->format->Amask) { in SDL_BlendFillRect() 293 if (!dst) { in SDL_BlendFillRects() 311 switch (dst->format->Rmask) { in SDL_BlendFillRects() 317 switch (dst->format->Rmask) { in SDL_BlendFillRects() 323 switch (dst->format->Rmask) { in SDL_BlendFillRects() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | dec.c | 79 dst += BPS; in TransformOne_C() 186 static void TM4_C(uint8_t* dst) { TrueMotion(dst, 4); } in TM4_C() argument 187 static void TM8uv_C(uint8_t* dst) { TrueMotion(dst, 8); } in TM8uv_C() argument 188 static void TM16_C(uint8_t* dst) { TrueMotion(dst, 16); } in TM16_C() argument 196 memcpy(dst + j * BPS, dst - BPS, 16); in VE16_C() 203 memset(dst, dst[-1], 16); in HE16_C() 219 DC += dst[-1 + j * BPS] + dst[j - BPS]; in DC16_C() 425 memcpy(dst + j * BPS, dst - BPS, 8); in VE8uv_C() 432 memset(dst, dst[-1], 8); in HE8uv_C() 449 dc0 += dst[i - BPS] + dst[-1 + i * BPS]; in DC8uv_C() [all …]
|
A D | dec_mips_dsp_r2.c | 45 : [in]"r"(in), [dst]"r"(dst) in TransformDC() 81 : [dst]"r"(dst), [a]"r"(a), [d1]"r"(d1), [d4]"r"(d4), [c1]"r"(c1) in TransformAC3() 148 : [dst]"r"(dst), [in]"r"(in), [kC1]"r"(kC1), [kC2]"r"(kC2) in TransformOne() 654 : [top]"r"(top), [dst]"r"(dst) in VE4() 676 : [dst]"r"(dst) in DC4() 720 : [dst]"r"(dst) in RD4() 770 : [dst]"r"(dst) in LD4() 810 : [dst]"r"(dst) in DC8uv() 833 : [dst]"r"(dst) in DC8uvNoLeft() 864 : [dst]"r"(dst) in DC8uvNoTop() [all …]
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | SDL_gfxPrimitives.c | 95 …if ((x >= clip_xmin(dst)) && (x <= clip_xmax(dst)) && (y >= clip_ymin(dst)) && (y <= clip_ymax(dst… in fastPixelColorNolock() 101 p = (Uint8 *) dst->pixels + y * dst->pitch + x * bpp; in fastPixelColorNolock() 153 p = (Uint8 *) dst->pixels + y * dst->pitch + x * bpp; in fastPixelColorNolockNoclip() 299 if (x >= clip_xmin(dst) && x <= clip_xmax(dst) && in _putPixelAlpha() 300 y >= clip_ymin(dst) && y <= clip_ymax(dst)) in _putPixelAlpha() 622 row = (Uint8 *) dst->pixels + y * dst->pitch; in _filledRectAlpha() 707 row = (Uint8 *) dst->pixels + y * dst->pitch; in _filledRectAlpha() 1075 right = dst->clip_rect.x + dst->clip_rect.w - 1; in hlineColorStore() 1239 right = dst->clip_rect.x + dst->clip_rect.w - 1; in hlineColor() 1424 right = dst->clip_rect.x + dst->clip_rect.w - 1; in vlineColor() [all …]
|
A D | SDL_gfxPrimitives.h | 87 SDL_GFXPRIMITIVES_SCOPE int rectangleRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, 99 SDL_GFXPRIMITIVES_SCOPE int boxRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, 111 SDL_GFXPRIMITIVES_SCOPE int lineRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, 117 SDL_GFXPRIMITIVES_SCOPE int aalineRGBA(SDL_Surface * dst, Sint16 x1, Sint16 y1, 140 SDL_GFXPRIMITIVES_SCOPE int aacircleRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 146 SDL_GFXPRIMITIVES_SCOPE int filledCircleRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 152 SDL_GFXPRIMITIVES_SCOPE int ellipseRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 158 SDL_GFXPRIMITIVES_SCOPE int aaellipseRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 164 SDL_GFXPRIMITIVES_SCOPE int filledEllipseRGBA(SDL_Surface * dst, Sint16 x, Sint16 y, 214 SDL_GFXPRIMITIVES_SCOPE int filledPolygonRGBA(SDL_Surface * dst, const Sint16 * vx, [all …]
|
A D | install-sh | 95 dst= 249 dst=$src 250 dstdir=$dst 267 dst=$dst_arg 271 if test -d "$dst"; then 276 dstdir=$dst 282 (dirname "$dst") 2>/dev/null || 285 X"$dst" : 'X\(//\)$' \| \ 287 echo X"$dst" | 502 test ! -f "$dst" || [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | picture_rescale_enc.c | 32 *dst = *src; in PictureGrabSpecs() 68 dst->y, dst->y_stride, dst->width, dst->height); in WebPPictureCopy() 69 WebPCopyPlane(src->u, src->uv_stride, dst->u, dst->uv_stride, in WebPPictureCopy() 70 HALVE(dst->width), HALVE(dst->height)); in WebPPictureCopy() 71 WebPCopyPlane(src->v, src->uv_stride, dst->v, dst->uv_stride, in WebPPictureCopy() 72 HALVE(dst->width), HALVE(dst->height)); in WebPPictureCopy() 75 dst->a, dst->a_stride, dst->width, dst->height); in WebPPictureCopy() 79 (uint8_t*)dst->argb, 4 * dst->argb_stride, in WebPPictureCopy() 80 4 * dst->width, dst->height); in WebPPictureCopy() 272 (void)dst; in WebPPictureCopy() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | memmove.c | 66 char *dst = dst_void; in _memmove() local 69 if (src < dst && dst < src + length) in _memmove() 73 dst += length; in _memmove() 76 *--dst = *--src; in _memmove() 83 *dst++ = *src++; in _memmove() 89 char *dst = dst_void; in _memmove() 94 if (src < dst && dst < src + length) in _memmove() 98 dst += length; in _memmove() 101 *--dst = *--src; in _memmove() 111 aligned_dst = (long*)dst; in _memmove() [all …]
|
/AliOS-Things-master/components/ble_host/bt_host/port/include/misc/ |
A D | byteorder.h | 227 dst[0] = val >> 8; in sys_put_be16() 228 dst[1] = val; in sys_put_be16() 242 dst[0] = val >> 16; in sys_put_be24() 302 dst[0] = val; in sys_put_le16() 303 dst[1] = val >> 8; in sys_put_le16() 317 sys_put_le16(val, dst); in sys_put_le24() 318 dst[2] = val >> 16; in sys_put_le24() 332 sys_put_le16(val, dst); in sys_put_le32() 347 sys_put_le32(val, dst); in sys_put_le48() 362 sys_put_le32(val, dst); in sys_put_le64() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/config/ |
A D | install-sh | 83 dst= 231 dst=$src 232 dstdir=$dst 250 dst=$dstarg 252 case $dst in 253 -*) dst=./$dst ;; 258 if test -d "$dst"; then 263 dstdir=$dst 272 X"$dst" : 'X\(//\)$' \| \ 274 echo X"$dst" | [all …]
|
/AliOS-Things-master/components/SDL2/build-scripts/ |
A D | install-sh | 95 dst= 249 dst=$src 250 dstdir=$dst 267 dst=$dst_arg 271 if test -d "$dst"; then 276 dstdir=$dst 282 (dirname "$dst") 2>/dev/null || 285 X"$dst" : 'X\(//\)$' \| \ 287 echo X"$dst" | 502 test ! -f "$dst" || [all …]
|
/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | install-sh | 95 dst= 249 dst=$src 250 dstdir=$dst 267 dst=$dst_arg 271 if test -d "$dst"; then 276 dstdir=$dst 282 (dirname "$dst") 2>/dev/null || 285 X"$dst" : 'X\(//\)$' \| \ 287 echo X"$dst" | 502 test ! -f "$dst" || [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/example/ |
A D | example.cc | 32 ruy::Matrix<float> dst; in ExampleMulFloat() local 34 dst.set_data(dst_data); in ExampleMulFloat() 57 ruy::Matrix<float> dst; in ExampleMulFloatWithBiasAddAndClamp() local 59 dst.set_data(dst_data); in ExampleMulFloatWithBiasAddAndClamp() 86 ruy::Matrix<std::uint8_t> dst; in ExampleMulUint8AsymmetricQuantized() local 88 dst.set_data(dst_data); in ExampleMulUint8AsymmetricQuantized() 89 dst.set_zero_point(129); in ExampleMulUint8AsymmetricQuantized() 115 ruy::Matrix<std::int8_t> dst; in ExampleMulInt8PerChannelQuantized() local 117 dst.set_data(dst_data); in ExampleMulInt8PerChannelQuantized() 140 ruy::Matrix<std::int32_t> dst; in ExampleMulInt8GetRawAccumulators() local [all …]
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | install-sh | 80 dst= 254 dst=$src 255 dstdir=$dst 272 dst=$dst_arg 275 if test -d "$dst"; then 280 dstdir=$dst 282 case $dst in 283 */) dst=$dst$dstbase;; 284 *) dst=$dst/$dstbase;; 288 dstdir=`dirname "$dst"` [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | install-sh | 80 dst= 254 dst=$src 255 dstdir=$dst 272 dst=$dst_arg 275 if test -d "$dst"; then 280 dstdir=$dst 282 case $dst in 283 */) dst=$dst$dstbase;; 284 *) dst=$dst/$dstbase;; 288 dstdir=`dirname "$dst"` [all …]
|
/AliOS-Things-master/components/SDL2/src/render/ |
A D | SDL_yuv_sw.c | 152 Uint8 *src, *dst; in SDL_SW_UpdateYUVTexture() local 163 dst += swdata->w; in SDL_SW_UpdateYUVTexture() 194 Uint8 *src, *dst; in SDL_SW_UpdateYUVTexture() local 199 dst = in SDL_SW_UpdateYUVTexture() 218 Uint8 *src, *dst; in SDL_SW_UpdateYUVTexture() local 229 dst += swdata->w; in SDL_SW_UpdateYUVTexture() 255 Uint8 *dst; in SDL_SW_UpdateYUVTexturePlanar() local 264 SDL_memcpy(dst, src, length); in SDL_SW_UpdateYUVTexturePlanar() 266 dst += swdata->w; in SDL_SW_UpdateYUVTexturePlanar() 282 dst += (swdata->w + 1)/2; in SDL_SW_UpdateYUVTexturePlanar() [all …]
|