/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/cmsis/inc/ca/ |
A D | cmsis_armcc_ca.h | 501 VMOV D0, R2,R2 in __FPU_Enable() 502 VMOV D1, R2,R2 in __FPU_Enable() 503 VMOV D2, R2,R2 in __FPU_Enable() 504 VMOV D3, R2,R2 in __FPU_Enable() 505 VMOV D4, R2,R2 in __FPU_Enable() 506 VMOV D5, R2,R2 in __FPU_Enable() 507 VMOV D6, R2,R2 in __FPU_Enable() 508 VMOV D7, R2,R2 in __FPU_Enable() 509 VMOV D8, R2,R2 in __FPU_Enable() 510 VMOV D9, R2,R2 in __FPU_Enable() [all …]
|
/AliOS-Things-master/hardware/arch/armv7m/common/ |
A D | panic_armcc.S | 50 LDR R2, [R1] 51 ADD R3, R2, #1 53 CBZ R2, first_panic 57 CBNZ R2, double_panic 79 CBNZ R2, context_save 83 ADD R2, R0, #16 84 STM R2!,{R4-R11} ;ctx save, R4~R11 105 STM R2!,{R4} ;ctx save, SP 114 STM R2!,{R4} ;ctx save, PRIMASK 135 MOVS R2, #2 [all …]
|
A D | panic_iccarm.S | 50 LDR R2, [R1] 51 ADD R3, R2, #1 53 CBZ R2, first_panic 57 CBNZ R2, double_panic 79 CBNZ R2, context_save 83 ADD R2, R0, #16 84 STM R2!,{R4-R11} ;ctx save, R4~R11 105 STM R2!,{R4} ;ctx save, SP 114 STM R2!,{R4} ;ctx save, PRIMASK 135 MOVS R2, #2 [all …]
|
A D | panic_gcc.sx | 54 LDR R2, [R1] 55 ADD R3, R2, #1 57 CBZ R2, first_panic 61 CBNZ R2, double_panic 88 CBNZ R2, context_save 92 ADD R2, R0, #16 93 STM R2!,{R4-R11} @ctx save, R4~R11 114 STM R2!,{R4} @ctx save, SP 117 STM R2!,{R4} @ctx save, MSP 120 STM R2!,{R4} @ctx save, PSP [all …]
|
A D | panic_c.c | 16 int R2; member
|
/AliOS-Things-master/hardware/arch/armv8m/common/ |
A D | panic_gcc.sx | 54 LDR R2, [R1] 55 ADD R3, R2, #1 57 CBZ R2, first_panic 61 CBNZ R2, double_panic 88 CBNZ R2, context_save 92 ADD R2, R0, #16 93 STM R2!,{R4-R11} @ctx save, R4~R11 114 STM R2!,{R4} @ctx save, SP 117 STM R2!,{R4} @ctx save, MSP 120 STM R2!,{R4} @ctx save, PSP [all …]
|
A D | panic_c.c | 16 int R2; member
|
/AliOS-Things-master/components/trace/SEGGER/ |
A D | SEGGER_RTT_ASM_ARMv7M.S | 166 CMP R3,R2 170 ADDS R0,R2,R7 // v = WrOff + NumBytes 179 SUBS R2,R2,#+1 183 SUBS R2,R2,#+1 195 CMP R0,R2 201 …SUBS R2,R2,R4 // NumBytes -= Rem; (Rem = pRing->SizeOfBuffer - WrOff; … 213 …ADDS R4,R2,#+0 // Save <NumBytes> (needed as counter in loop but must be… 218 SUBS R2,R2,#+1 231 CMP R0,R2
|
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/ |
A D | yuv_rgb_sse_func.h | 27 #define UV2RGB_16(U,V,R1,G1,B1,R2,G2,B2) \ argument 36 R2 = _mm_unpackhi_epi16(r_tmp, r_tmp); \ 40 #define ADD_Y2RGB_16(Y1,Y2,R1,G1,B1,R2,G2,B2) \ argument 47 R2 = _mm_srai_epi16(_mm_add_epi16(R2, Y2), PRECISION); \ 51 #define PACK_RGB565_32(R1, R2, G1, G2, B1, B2, RGB1, RGB2, RGB3, RGB4) \ argument 58 RGB3 = _mm_and_si128(_mm_unpacklo_epi8(_mm_setzero_si128(), R2), red_mask); \ 59 RGB4 = _mm_and_si128(_mm_unpackhi_epi8(_mm_setzero_si128(), R2), red_mask); \ 82 RGB4 = _mm_packus_epi16(_mm_srli_epi16(R1,8), _mm_srli_epi16(R2,8)); \ 95 PACK_RGB24_32_STEP1(R1, R2, G1, G2, B1, B2, RGB1, RGB2, RGB3, RGB4, RGB5, RGB6) \ 116 lo_gr = _mm_unpacklo_epi8( G2, R2 ); \ [all …]
|
A D | yuv_rgb.c | 482 #define UNPACK_RGB24_32_STEP1(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ argument 484 R2 = _mm_unpackhi_epi8(RGB1, RGB4); \ 490 #define UNPACK_RGB24_32_STEP2(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ argument 493 RGB3 = _mm_unpacklo_epi8(R2, B1); \ 494 RGB4 = _mm_unpackhi_epi8(R2, B1); \ 498 #define UNPACK_RGB24_32(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ argument 499 UNPACK_RGB24_32_STEP1(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ 500 UNPACK_RGB24_32_STEP2(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ 501 UNPACK_RGB24_32_STEP1(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ 502 UNPACK_RGB24_32_STEP2(RGB1, RGB2, RGB3, RGB4, RGB5, RGB6, R1, R2, G1, G2, B1, B2) \ [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | yuv_sse41.c | 49 const __m128i R2 = _mm_add_epi16(R1, R0); in ConvertYUV444ToRGB_SSE41() local 63 *R = _mm_srai_epi16(R2, 6); // range: [-14234, 30815] in ConvertYUV444ToRGB_SSE41() 135 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32_SSE41() local 140 YUV444ToRGB_SSE41(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToRgb32_SSE41() 145 rgb1 = _mm_packus_epi16(R2, R3); in VP8YuvToRgb32_SSE41() 157 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32_SSE41() local 162 YUV444ToRGB_SSE41(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToBgr32_SSE41() 171 bgr5= _mm_packus_epi16(R2, R3); in VP8YuvToBgr32_SSE41() 185 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow_SSE41() local 195 rgb1 = _mm_packus_epi16(R2, R3); in YuvToRgbRow_SSE41() [all …]
|
A D | yuv_sse2.c | 49 const __m128i R2 = _mm_add_epi16(R1, R0); in ConvertYUV444ToRGB_SSE2() local 63 *R = _mm_srai_epi16(R2, 6); // range: [-14234, 30815] in ConvertYUV444ToRGB_SSE2() 249 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32_SSE2() local 254 YUV444ToRGB_SSE2(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToRgb32_SSE2() 259 rgb1 = _mm_packus_epi16(R2, R3); in VP8YuvToRgb32_SSE2() 271 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32_SSE2() local 276 YUV444ToRGB_SSE2(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToBgr32_SSE2() 285 bgr5= _mm_packus_epi16(R2, R3); in VP8YuvToBgr32_SSE2() 365 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow_SSE2() local 375 rgb1 = _mm_packus_epi16(R2, R3); in YuvToRgbRow_SSE2() [all …]
|
A D | common_sse41.h | 41 __m128i R0, R1, R2, R3, R4, R5; in VP8PlanarTo24b_SSE41() local 84 const __m128i RG2 = _mm_or_si128(R2, G2); in VP8PlanarTo24b_SSE41()
|
A D | enc_msa.c | 307 const v16u8 R2 = SLDI_UB(R1, R1, 1); in RD4() local 308 const v16u8 R3 = SLDI_UB(R2, R2, 1); in RD4() 311 const uint32_t val2 = __msa_copy_s_w((v4i32)R2, 0); in RD4() 327 const v16u8 R2 = SLDI_UB(R1, R1, 1); in LD4() local 328 const v16u8 R3 = SLDI_UB(R2, R2, 1); in LD4() 331 const uint32_t val2 = __msa_copy_s_w((v4i32)R2, 0); in LD4()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | nist_kw.c | 197 unsigned char *R2 = output + KW_SEMIBLOCK_LENGTH; in mbedtls_nist_kw_wrap() local 287 memcpy( inbuff + KW_SEMIBLOCK_LENGTH, R2, KW_SEMIBLOCK_LENGTH ); in mbedtls_nist_kw_wrap() 297 memcpy( R2, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH ); in mbedtls_nist_kw_wrap() 298 R2 += KW_SEMIBLOCK_LENGTH; in mbedtls_nist_kw_wrap() 299 if( R2 >= output + ( semiblocks * KW_SEMIBLOCK_LENGTH ) ) in mbedtls_nist_kw_wrap() 300 R2 = output + KW_SEMIBLOCK_LENGTH; in mbedtls_nist_kw_wrap()
|
/AliOS-Things-master/hardware/arch/armv7m/armcc/m3/ |
A D | port_s.S | 134 LDR R2, [R1] 135 STR R2, [R0] 137 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/iccarm/m3/ |
A D | port_s.S | 134 LDR R2, [R1] 135 STR R2, [R0] 137 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/gcc/m3/ |
A D | port_s.sx | 141 LDR R2, [R1] 142 STR R2, [R0] 144 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/iccarm/m4/ |
A D | port_s.S | 142 LDR R2, [R1] 143 STR R2, [R0] 145 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/iccarm/m7/ |
A D | port_s.S | 142 LDR R2, [R1] 143 STR R2, [R0] 145 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/armcc/m4/ |
A D | port_s.S | 142 LDR R2, [R1] 143 STR R2, [R0] 145 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/armcc/m7/ |
A D | port_s.S | 142 LDR R2, [R1] 143 STR R2, [R0] 145 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/gcc/m4/ |
A D | port_s.sx | 149 LDR R2, [R1] 150 STR R2, [R0] 152 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv7m/gcc/m7/ |
A D | port_s.sx | 149 LDR R2, [R1] 150 STR R2, [R0] 152 LDR R0, [R2]
|
/AliOS-Things-master/hardware/arch/armv8m/gcc/m33/ |
A D | port_s.sx | 149 LDR R2, [R1] 150 STR R2, [R0] 152 LDR R0, [R2]
|