Home
last modified time | relevance | path

Searched refs:n_end (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/post/drivers/
Dflash.c56 int ret, n, n_start, n_end; in flash_post_test() local
66 n_end = CONFIG_SYS_POST_FLASH_END; in flash_post_test()
68 for (n = n_start; n < n_end; ++n) { in flash_post_test()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dtiled_dot_emitter.cc724 llvm::Value* n_end);
727 llvm::Value* n_start, llvm::Value* n_end);
733 llvm::Value* n_start, llvm::Value* n_end,
778 int64 n_end = dims().n() - (dims().n() % current_vectorization_width); in HandleResiduesOnN() local
779 if (n_start != n_end) { in HandleResiduesOnN()
782 HandleResiduesOnK(&vsl, GetInt64(n_start), GetInt64(n_end)); in HandleResiduesOnN()
783 n_start = n_end; in HandleResiduesOnN()
805 llvm::Value* n_end) { in HandleResiduesOnK() argument
810 n_start, n_end); in HandleResiduesOnK()
816 GetInt64(dims().k()), n_start, n_end); in HandleResiduesOnK()
[all …]
/external/eigen/Eigen/src/SparseLU/
DSparseLU_gemm_kernel.h41 Index n_end = (n/RN)*RN; // number of columns of B-C suitable for processing RN columns at once in sparselu_gemm() local
65 for(Index j=0; j<n_end; j+=RN) in sparselu_gemm()
170 if((n-n_end)>0) in sparselu_gemm()
191 Scalar* C0 = C+ib+(n_end)*ldc; in sparselu_gemm()
/external/libxml2/
Dtestapi.c16618 int n_end; in test_xmlStringDecodeEntities() local
16627 for (n_end = 0;n_end < gen_nb_xmlChar;n_end++) { in test_xmlStringDecodeEntities()
16634 end = gen_xmlChar(n_end, 3); in test_xmlStringDecodeEntities()
16644 des_xmlChar(n_end, end, 3); in test_xmlStringDecodeEntities()
16655 printf(" %d", n_end); in test_xmlStringDecodeEntities()
16687 int n_end; in test_xmlStringLenDecodeEntities() local
16697 for (n_end = 0;n_end < gen_nb_xmlChar;n_end++) { in test_xmlStringLenDecodeEntities()
16705 end = gen_xmlChar(n_end, 4); in test_xmlStringLenDecodeEntities()
16719 des_xmlChar(n_end, end, 4); in test_xmlStringLenDecodeEntities()
16731 printf(" %d", n_end); in test_xmlStringLenDecodeEntities()
[all …]
/external/python/cpython3/Python/
Dformatter_unicode.c469 Py_ssize_t n_end, Py_ssize_t n_remainder, in calc_number_widths() argument
476 spec->n_digits = n_end - n_start - n_remainder - (has_decimal?1:0); in calc_number_widths()