AXPY is one of the 38 subroutines described in the original specification for BLAS describing addition of constant times a vector plus a vector.

$$\vec{y} \gets a\vec{x} + \vec{y}$$

Its double varient is called DAXPY.

All other linear algebra algorithms can be implemented as using daxpy routines.