Home
last modified time | relevance | path

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

/third_party/mindspore/tests/ut/python/pynative_mode/
Dtest_stop_gradient.py46 c_s = x + y
47 return c_s, c
53 c_s = stop_gradient(c)
54 return c_s
60 c_s = stop_gradient(c)
61 d = c_s + x * y
85 c_s = stop_gradient(c)
86 e = c + c_s
/third_party/mesa3d/docs/isl/
Dformats.rst109 \frac{c_s}{12.92} &\text{if } c_s \le 0.04045 \\\\
110 \left(\frac{c_s + 0.055}{1.055}\right)^{2.4} &\text{if } c_s > 0.04045
113 where :math:`c_l` is the linear color and :math:`c_s` is the color in sRGB.
/third_party/ffmpeg/libavcodec/
Dopusenc_psy.c121 const float c_s = coeffs[j]*coeffs[j]; in step_collect_psy_metrics() local
122 dist_dev += (avg_c_s - c_s)*(avg_c_s - c_s); in step_collect_psy_metrics()
/third_party/python/Doc/library/
Dctypes.rst295 >>> c_s = c_wchar_p(s)
296 >>> print(c_s)
298 >>> print(c_s.value)
300 >>> c_s.value = "Hi, there"
301 >>> print(c_s) # the memory location has changed
303 >>> print(c_s.value)