Home | History | Annotate | Download | only in src

Lines Matching refs:Value2

503  *   Returns the result of saturated addition of the two inputs Value1, Value2
507 * [in] Value2 Second Operand
515 OMX_S32 armSatAdd_S32(OMX_S32 Value1,OMX_S32 Value2)
519 Result = Value1 + Value2;
521 if( (Value1^Value2) >= 0)
556 * Returns the result of saturated addition of the two inputs Value1, Value2
560 * [in] Value2 Second Operand
568 OMX_S64 armSatAdd_S64(OMX_S64 Value1,OMX_S64 Value2)
572 Result = Value1 + Value2;
574 if( (Value1^Value2) >= 0)
609 * Returns the result of saturated substraction of the two inputs Value1, Value2
613 * [in] Value2 Second Operand
620 OMX_S32 armSatSub_S32(OMX_S32 Value1,OMX_S32 Value2)
624 Result = Value1 - Value2;
626 if( (Value1^Value2) < 0)
661 * Returns the result of Multiplication of Value1 and Value2 and subesquent saturated
666 * [in] Value2 Second Operand
673 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
677 Result = (OMX_S32)(Value1*Value2);