Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/kernel_tests/distributions/
Duniform_test.py66 a_v = -3.0
71 pdf = np.zeros_like(x) + 1.0 / (b_v - a_v)
73 pdf[x < a_v] = 0.0
113 a_v = 1.0
120 cdf = (x - a_v) / (b_v - a_v)
122 cdf[x < a_v] = 0
133 a_v = np.array([1.0, 1.0, 1.0])
135 uniform = uniform_lib.Uniform(low=a_v, high=b_v)
137 expected_entropy = np.log(b_v - a_v)
142 a_v = np.array([1.0, 1.0, 1.0], dtype=np.float32)
[all …]
/external/libavc/common/
Dih264_chroma_intra_pred_filters.c440 WORD32 a_v, b_v, c_v, h_v, v_v; in ih264_intra_pred_chroma_8x8_mode_plane() local
444 a_v = b_v = c_v = h_v = v_v = 0; in ih264_intra_pred_chroma_8x8_mode_plane()
459 a_v = 16 * (pu1_left[7 * (-2) + 1] + pu1_top[15]);/*section 8.3.3.4 equation (8-141)*/ in ih264_intra_pred_chroma_8x8_mode_plane()
472 … val = (a_v + b_v * (cols - 3) + c_v * (rows - 3) );/*section 8.3.4.4 equation (8-140)*/ in ih264_intra_pred_chroma_8x8_mode_plane()
/external/libavc/common/x86/
Dih264_chroma_intra_pred_filters_ssse3.c247 WORD32 a_u, a_v, b_u, b_v, c_u, c_v; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3() local
295 a_v = (pu1_left[7 * (-2) + 1] + pu1_top[15]) << 4; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3()
325 const_v = a_v - (c_v << 1) - c_v + 16; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3()
/external/tensorflow/tensorflow/core/kernels/
Dmatmul_op.cc85 auto a_v = ToEigenVector<T>(a); in ExplicitVectorMatrixOptimization() local
87 out_v.noalias() = b_m * a_v; in ExplicitVectorMatrixOptimization()