Home
last modified time | relevance | path

Searched refs:c_index (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fxcodec/codec/
Dfx_codec.cpp1764 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/
Dreference_gemm.h81 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()
Dgemm_functors.h84 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/
Dfdct32x32_neon.c539 #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/
Dop_level_cost_estimator_test.cc306 int c_index = 3; in GetPoolingOutputSize() local
310 c_index = 1; in GetPoolingOutputSize()
316 int c = input[c_index]; in GetPoolingOutputSize()
/external/gemmlowp/test/
Dtest.cc103 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/
Dconvert_nodes.cc1791 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()