Home
last modified time | relevance | path

Searched refs:addL (Results 1 – 4 of 4) sorted by relevance

/external/neven/Embedded/common/src/b_TensorEm/
DCompactAlt.c207 int32 addL = ( int32 )1 << ( shrL - 1 ); in bts_CompactAlt_map() local
208 …++ ) outVecA[ iL ] = ( ( int32 )outVecA[ iL ] + ( ( ( int32 )vecL[ iL ] + addL ) >> shrL ) + 1 ) >… in bts_CompactAlt_map()
214 int32 addL = ( int32 )1 << ( shrL - 1 ); in bts_CompactAlt_map() local
215 …for( iL = 0; iL < sizeL; iL++ ) outVecA[ iL ] = ( ( ( ( int32 )outVecA[ iL ] + addL ) >> shrL ) + … in bts_CompactAlt_map()
/external/neven/Embedded/common/src/b_BasicEm/
DMath.c784 uint32 addL = 1L << ( shiftL - 1 ); in bbs_convertU32() local
785 if( srcA + addL < addL ) in bbs_convertU32()
792 return ( srcA + addL ) >> shiftL; in bbs_convertU32()
822 int32 addL = 1L << ( shiftL - 1 ); in bbs_convertS32() local
823 if( srcA + addL < addL ) in bbs_convertS32()
830 return ( srcA + addL ) >> shiftL; in bbs_convertS32()
/external/python/cpython2/Include/
Dlongobject.h124 PyAPI_FUNC(PyObject *) _PyLong_Format(PyObject *aa, int base, int addL, int newstyle);
/external/python/cpython2/Objects/
Dlongobject.c1337 long_to_decimal_string(PyObject *aa, int addL) in long_to_decimal_string() argument
1404 strlen = (addL != 0) + negative + in long_to_decimal_string()
1421 if (addL) in long_to_decimal_string()
1455 _PyLong_Format(PyObject *aa, int base, int addL, int newstyle) in _PyLong_Format() argument
1466 return long_to_decimal_string((PyObject *)a, addL); in _PyLong_Format()
1482 i = 5 + (addL ? 1 : 0); in _PyLong_Format()
1496 if (addL) in _PyLong_Format()