Searched refs:Py_Int32 (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | audioop.c | 7 typedef int Py_Int32; typedef 11 typedef long Py_Int32; typedef 315 #define LONGP(cp, i) ((Py_Int32 *)(cp+i)) 810 else if ( size == 4 ) *LONGP(ncp, i) = (Py_Int32)val; in audioop_mul() 854 else if ( size == 4 ) *LONGP(ncp, i/2)= (Py_Int32)val1; in audioop_tomono() 902 else if ( size == 4 ) *LONGP(ncp, i*2) = (Py_Int32)val1; in audioop_tostereo() 906 else if ( size == 4 ) *LONGP(ncp, i*2+4) = (Py_Int32)val2; in audioop_tostereo() 962 else if ( size == 4 ) *LONGP(ncp, i) = (Py_Int32)newval; in audioop_add() 1002 else if ( size == 4 ) *LONGP(ncp, i) = (Py_Int32)(Py_UInt32)val; in audioop_bias() 1037 else if ( size == 4 ) *LONGP(ncp, j) = (Py_Int32)val; in audioop_reverse() [all …]
|
D | imageop.c | 11 typedef int Py_Int32; typedef 15 typedef long Py_Int32; typedef 24 #define LONGP(cp, xmax, x, y) ((Py_Int32 *)(cp+4*(y*xmax+x))) 123 Py_Int32 *nlp; in imageop_crop() 150 nlp = (Py_Int32 *)ncp; in imageop_crop() 178 Py_Int32 *nlp; in imageop_scale() 203 nlp = (Py_Int32 *)ncp; in imageop_scale()
|