Home | History | Annotate | Download | only in src

Lines Matching refs:Value1

503  *   Returns the result of saturated addition of the two inputs Value1, Value2
506 * [in] Value1 First Operand
515 OMX_S32 armSatAdd_S32(OMX_S32 Value1,OMX_S32 Value2)
519 Result = Value1 + Value2;
521 if( (Value1^Value2) >= 0)
524 if( (Result^Value1) >= 0)
531 if(Value1 >= 0)
556 * Returns the result of saturated addition of the two inputs Value1, Value2
559 * [in] Value1 First Operand
568 OMX_S64 armSatAdd_S64(OMX_S64 Value1,OMX_S64 Value2)
572 Result = Value1 + Value2;
574 if( (Value1^Value2) >= 0)
577 if( (Result^Value1) >= 0)
584 if(Value1 >= 0)
609 * Returns the result of saturated substraction of the two inputs Value1, Value2
612 * [in] Value1 First Operand
620 OMX_S32 armSatSub_S32(OMX_S32 Value1,OMX_S32 Value2)
624 Result = Value1 - Value2;
626 if( (Value1^Value2) < 0)
629 if( (Result^Value1) >= 0)
636 if(Value1 >= 0)
661 * Returns the result of Multiplication of Value1 and Value2 and subesquent saturated
665 * [in] Value1 First Operand
673 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
677 Result = (OMX_S32)(Value1*Value2);