Home
last modified time | relevance | path

Searched refs:Py2 (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c1791 GLfloat Py2 = uy * uy + vy * vy; /* squared length of dy */ in sample_2d_footprint() local
1802 if (Px2 > Py2) { in sample_2d_footprint()
1808 numSamples = (GLint) ceilf(sqrtf(Py2)); in sample_2d_footprint()
1929 GLfloat Py2 = dudy * dudy + dvdy * dvdy; in sample_lambda_2d_aniso() local
1940 if (Px2 < Py2) { in sample_lambda_2d_aniso()
1941 Pmax2 = Py2; in sample_lambda_2d_aniso()
1946 Pmin2 = Py2; in sample_lambda_2d_aniso()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c2447 const float Py2 = dudy * dudy + dvdy * dvdy; in mip_filter_linear_aniso() local
2454 if (Px2 < Py2) { in mip_filter_linear_aniso()
2455 Pmax2 = Py2; in mip_filter_linear_aniso()
2460 Pmin2 = Py2; in mip_filter_linear_aniso()
/external/python/cpython2/Doc/howto/
Dsorting.rst211 arguments. Instead, all of the Py2.x versions supported a *cmp* parameter to
/external/python/cpython2/Objects/
Ddictnotes.txt24 Size 126 interned strings (as of Py2.3b1).
/external/python/cpython2/Misc/
DHISTORY3182 starting with Py2.3 are guaranteed to be stable (the relative order of
3321 seed. Modified to match Py2.2 behavior and use fractional seconds so
3506 - sets.py now runs under Py2.2. In addition, the argument restrictions
3514 - random.cunifvariate() and random.stdgamma() were deprecated in Py2.3
3515 and removed in Py2.4.