Searched refs:c_index (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec.cpp | 1764 int c_index = (fix_c + 4096) >> 13; in AdobeCMYK_to_sRGB1() local 1768 int pos = (c_index * 9 * 9 * 9 + m_index * 9 * 9 + y_index * 9 + k_index) * 3; in AdobeCMYK_to_sRGB1() 1773 if (c1_index == c_index) in AdobeCMYK_to_sRGB1() 1784 int c1_pos = pos + (c1_index - c_index) * 9 * 9 * 9 * 3; in AdobeCMYK_to_sRGB1() 1788 int c_rate = (fix_c - (c_index << 13)) * (c_index - c1_index); in AdobeCMYK_to_sRGB1()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | reference_gemm.h | 81 const size_t c_index = ((i * c_i_stride) + (j * c_j_stride)); in ReferenceGemm() local 89 c[c_index] = static_cast<T3>(output); in ReferenceGemm()
|
D | gemm_functors.h | 84 const size_t c_index = ((i * c_i_stride) + (j * c_j_stride)); in operator() local 85 c[c_index] = total; in operator()
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | fdct32x32_neon.c | 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 549 c##_lo[c_index] = vsubq_s32(temp##_lo[temp_index], b##_lo[b_index]); \ 550 c##_hi[c_index] = vsubq_s32(temp##_hi[temp_index], b##_hi[b_index]); \
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | op_level_cost_estimator_test.cc | 306 int c_index = 3; in GetPoolingOutputSize() local 310 c_index = 1; in GetPoolingOutputSize() 316 int c = input[c_index]; in GetPoolingOutputSize()
|
/external/gemmlowp/test/ |
D | test.cc | 103 const int c_index = i * c_i_stride + j * c_j_stride; in ReferenceEightBitIntGemm() local 104 c[c_index] = static_cast<std::uint8_t>(output); in ReferenceEightBitIntGemm()
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ |
D | convert_nodes.cc | 1791 int c_index = (data_format == "NHWC") ? 3 : 1; in ConvertConv2DHelper() local 1800 if (tf_dilations[0] != 1 || tf_dilations[c_index] != 1) { in ConvertConv2DHelper() 1818 if (tf_stride[0] != 1 || tf_stride[c_index] != 1) { in ConvertConv2DHelper()
|