HomeSort by relevance Sort by last modified time
    Searched refs:b_v (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/python/kernel_tests/distributions/
uniform_test.py 65 b_v = 11.0
69 pdf = np.zeros_like(x) + 1.0 / (b_v - a_v)
70 pdf[x > b_v] = 0.0
112 b_v = 11.0
118 cdf = (x - a_v) / (b_v - a_v)
119 cdf[x >= b_v] = 1
132 b_v = np.array([[1.5, 2.0, 3.0]])
133 uniform = uniform_lib.Uniform(low=a_v, high=b_v)
135 expected_entropy = np.log(b_v - a_v)
141 b_v = np.array([1.0, 2.0, 3.0], dtype=np.float32
    [all...]
  /external/libavc/common/x86/
ih264_chroma_intra_pred_filters_ssse3.c 247 WORD32 a_u, a_v, b_u, b_v, c_u, c_v; local
308 b_v = ((h_v << 4) + h_v + 32) >> 6;
328 b_v2 = b_v << 1;
330 b_v3 = b_v + b_v2;
333 res1_l_8x16b = _mm_setr_epi16(-b_u3, -b_v3, -b_u2, -b_v2, -b_u, -b_v, 0, 0);
335 res1_h_8x16b = _mm_setr_epi16(b_u, b_v, b_u2, b_v2, b_u3, b_v3, b_u << 2, b_v << 2);
  /external/libavc/common/
ih264_chroma_intra_pred_filters.c 440 WORD32 a_v, b_v, c_v, h_v, v_v; local
444 a_v = b_v = c_v = h_v = v_v = 0;
461 b_v = (34 * h_v + 32) >> 6;/*section 8.3.3.4 equation (8-142)*/
472 val = (a_v + b_v * (cols - 3) + c_v * (rows - 3) );/*section 8.3.4.4 equation (8-140)*/
  /external/tensorflow/tensorflow/core/kernels/
matmul_op.cc 93 auto b_v = ToEigenVector<T>(b); local
95 out_v.noalias() = a_m.transpose() * b_v;
97 out_v.noalias() = a_m * b_v;
  /toolchain/binutils/binutils-2.27/bfd/
elf32-xtensa.c     [all...]

Completed in 108 milliseconds