Home | History | Annotate | Download | only in src

Lines Matching refs:Value2

488  *   Returns the result of saturated addition of the two inputs Value1, Value2
492 * [in] Value2 Second Operand
500 OMX_S32 armSatAdd_S32(OMX_S32 Value1,OMX_S32 Value2)
504 Result = Value1 + Value2;
506 if( (Value1^Value2) >= 0)
541 * Returns the result of saturated addition of the two inputs Value1, Value2
545 * [in] Value2 Second Operand
553 OMX_S64 armSatAdd_S64(OMX_S64 Value1,OMX_S64 Value2)
557 Result = Value1 + Value2;
559 if( (Value1^Value2) >= 0)
594 * Returns the result of saturated substraction of the two inputs Value1, Value2
598 * [in] Value2 Second Operand
605 OMX_S32 armSatSub_S32(OMX_S32 Value1,OMX_S32 Value2)
609 Result = Value1 - Value2;
611 if( (Value1^Value2) < 0)
646 * Returns the result of Multiplication of Value1 and Value2 and subesquent saturated
651 * [in] Value2 Second Operand
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
662 Result = (OMX_S32)(Value1*Value2);