Home
last modified time | relevance | path

Searched refs:PX (Results 1 - 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Ddiracdsp.c155 #define PUT_SIGNED_RECT_CLAMPED(PX) \
156 static void put_signed_rect_clamped_ ## PX ## bit_c(uint8_t *_dst, int dst_stride, const uint8_t *_src, \
164 dst[x ] = av_clip_uintp2(src[x ] + (1U << (PX - 1)), PX); \
165 dst[x+1] = av_clip_uintp2(src[x+1] + (1U << (PX - 1)), PX); \
166 dst[x+2] = av_clip_uintp2(src[x+2] + (1U << (PX - 1)), PX); \
167 dst[x+3] = av_clip_uintp2(src[x+3] + (1U << (PX - 1)), PX); \
[all...]
/third_party/mbedtls/library/
H A Decp.c2516 MPI_ECP_ADD(&T[0], &P->X, &P->Z); /* Pp := PX + PZ */ in ecp_double_add_mxz()
2517 MPI_ECP_SUB(&T[1], &P->X, &P->Z); /* Pm := PX - PZ */ in ecp_double_add_mxz()
2554 mbedtls_mpi PX; in ecp_mul_mxz() local
2556 mbedtls_ecp_point_init(&RP); mbedtls_mpi_init(&PX); in ecp_mul_mxz()
2564 /* Save PX and read from P before writing to R, in case P == R */ in ecp_mul_mxz()
2565 MPI_ECP_MOV(&PX, &P->X); in ecp_mul_mxz()
2592 MBEDTLS_MPI_CHK(ecp_double_add_mxz(grp, R, &RP, R, &RP, &PX, tmp)); in ecp_mul_mxz()
2612 mbedtls_ecp_point_free(&RP); mbedtls_mpi_free(&PX); in ecp_mul_mxz()

Completed in 6 milliseconds