/external/tensorflow/tensorflow/contrib/factorization/kernels/ |
D | masked_matmul_ops.cc | 127 int64 b_index = internal::SubtleMustCopy(indices_mat(i, 1)); in Compute() local 128 CHECK(FastBoundsCheck(b_index, b_dim_1)) in Compute() 129 << "In mask_indices[" << i << ", :], the column index " << b_index in Compute() 131 return b_index; in Compute() 179 const int64 b_index = get_b_index(p); in Compute() local 180 prod_values(p) = get_dot_product(a_index, b_index); in Compute()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | reference_gemm.h | 77 const size_t b_index = ((j * b_j_stride) + (l * b_l_stride)); in ReferenceGemm() local 78 const int32 b_value = static_cast<int32>(b[b_index]) - offset_b; in ReferenceGemm()
|
D | gemm_functors.h | 80 const size_t b_index = ((j * b_j_stride) + (l * b_l_stride)); in operator() local 81 const T2 b_value = b[b_index]; in operator()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_variable.c | 240 unsigned int a_index, b_index; in readers_intersect() local 243 for (b_index = 0; b_index < b->ReaderCount; b_index++) { in readers_intersect() 244 struct rc_reader reader_b = b->Readers[b_index]; in readers_intersect()
|
D | radeon_pair_regalloc.c | 580 unsigned int b_index; in do_advanced_regalloc() local 582 for (a = var_ptr, b = var_ptr->Next, b_index = node_index + 1; in do_advanced_regalloc() 583 b; b = b->Next, b_index++) { in do_advanced_regalloc() 590 node_index, b_index); in do_advanced_regalloc()
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | fdct32x32_neon.c | 523 #define ADD_S16_S32(a, left_index, right_index, b, b_index) \ argument 525 b##_lo[b_index] = \ 527 b##_hi[b_index] = vaddl_s16(vget_high_s16(a[left_index]), \ 531 #define SUB_S16_S32(a, left_index, right_index, b, b_index) \ argument 533 b##_lo[b_index] = \ 535 b##_hi[b_index] = vsubl_s16(vget_high_s16(a[left_index]), \ 539 #define ADDW_S16_S32(a, a_index, b, b_index, c, c_index) \ argument 541 c##_lo[c_index] = vaddw_s16(a##_lo[a_index], vget_low_s16(b[b_index])); \ 542 c##_hi[c_index] = vaddw_s16(a##_hi[a_index], vget_high_s16(b[b_index])); \ 545 #define SUBW_S16_S32(a, a_index, b, b_index, temp, temp_index, c, c_index) \ argument [all …]
|
/external/python/cpython3/Modules/_ctypes/ |
D | ctypes.h | 51 Py_ssize_t b_index; /* index of this object into base's member 81 Py_ssize_t b_index; /* index of this object into base's member
|
D | _ctypes.c | 2511 cp += sprintf(cp, ":%x", Py_SAFE_DOWNCAST(target->b_index, Py_ssize_t, int)); in unique_key() 2820 cmem->b_index = index; in PyCData_FromBaseObj() 2827 cmem->b_index = index; in PyCData_FromBaseObj() 3044 obj->b_index = 0; in GenericPyCData_new()
|
/external/python/cpython2/Modules/_ctypes/ |
D | ctypes.h | 91 Py_ssize_t b_index; /* index of this object into base's member 121 Py_ssize_t b_index; /* index of this object into base's member
|
D | _ctypes.c | 2602 cp += sprintf(cp, ":%x", (int)target->b_index); in unique_key() 2604 cp += sprintf(cp, ":%x", Py_SAFE_DOWNCAST(target->b_index, Py_ssize_t, int)); in unique_key() 2934 cmem->b_index = index; in PyCData_FromBaseObj() 2941 cmem->b_index = index; in PyCData_FromBaseObj() 3152 obj->b_index = 0; in GenericPyCData_new()
|
/external/gemmlowp/test/ |
D | test.cc | 88 const int b_index = j * b_j_stride + l * b_l_stride; in ReferenceEightBitIntGemm() local 89 const std::uint8_t b_as_byte = b[b_index]; in ReferenceEightBitIntGemm()
|