Parameters
The
parameters
element specifies the function parameters (arguments).
The order of parameters is as follows:
- All source operands. Constants follow vectors.
- All destination operands. Constants follow vectors.
- Other, operation-specific parameters.
A parameter name has the following conventions:
- All parameters defined as pointers start withp, for example,pPhase,pSrc; parameters defined as double pointers start withpp, for example,ppState. All parameters defined as values start with a lowercase letter, for example,val,src,srcLen.
- Each new part of a parameter name starts with an uppercase character, without underscore; for example,pSrc,lenSrc,pDlyLine.
- Each parameter name specifies its functionality. Source parameters are namedpSrcorsrc, in some cases followed by names or numbers, for example,pSrc2,srcLen. Output parameters are namedpDstordstfollowed by names or numbers, for example,pDst2,dstLen. For in-place operations, the input/output parameter contains the namepSrcDstorsrcDst.