Home
last modified time | relevance | path

Searched refs:list_length (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/common/
Dcaniter.cpp169 int32_t list_length = 0; in setSource() local
223 source.extract(start, i-start, list[list_length++]); // add up to i in setSource()
227 source.extract(start, i-start, list[list_length++]); // add last one in setSource()
231 pieces = (UnicodeString **)uprv_malloc(list_length * sizeof(UnicodeString *)); in setSource()
232 pieces_length = list_length; in setSource()
233 pieces_lengths = (int32_t*)uprv_malloc(list_length * sizeof(int32_t)); in setSource()
234 current = (int32_t*)uprv_malloc(list_length * sizeof(int32_t)); in setSource()
235 current_length = list_length; in setSource()
/external/spirv-llvm/test/SPIRV/
Dlinked-list.ll11 …rspace(1)* nocapture %pNodes, i32 addrspace(1)* nocapture %allocation_index, i32 %list_length) #0 {
/external/tensorflow/tensorflow/core/graph/
Dmkl_layout_pass.cc1360 int* input_idx, int list_length,
1381 int* input_idx, int list_length,
1581 int list_length, std::vector<NodeBuilder::NodeOut>* output_nodes) { in GetNodesProducingTFTensorList() argument
1583 CHECK_GT(list_length, 0); in GetNodesProducingTFTensorList()
1585 output_nodes->reserve(list_length); in GetNodesProducingTFTensorList()
1587 while (list_length != 0) { in GetNodesProducingTFTensorList()
1588 CHECK_GT(list_length, 0); in GetNodesProducingTFTensorList()
1596 list_length--; in GetNodesProducingTFTensorList()
1646 int list_length, std::vector<NodeBuilder::NodeOut>* output_nodes) { in GetNodesProducingMklTensorList() argument
1648 CHECK_GT(list_length, 0); in GetNodesProducingMklTensorList()
[all …]
/external/iptables/libiptc/
Dlibiptc.c497 unsigned int list_length = CHAIN_INDEX_BUCKET_LEN; in iptcc_chain_index_alloc() local
502 array_elems = (h->num_chains / list_length) + in iptcc_chain_index_alloc()
503 (h->num_chains % list_length ? 1 : 0); in iptcc_chain_index_alloc()
545 unsigned int list_length = CHAIN_INDEX_BUCKET_LEN; in iptcc_chain_index_build() local
554 h->num_chains, list_length, h->chain_index_sz); in iptcc_chain_index_build()
564 cindex=chains / list_length; in iptcc_chain_index_build()
572 if ((chains % list_length)== 0) { in iptcc_chain_index_build()
/external/wayland/tests/
Dlist-test.c60 TEST(list_length) in TEST() argument
/external/ImageMagick/MagickCore/
Dresource.c83 list_length, member
211 resource_info.list_length=request; in AcquireMagickResource()
663 resource=(MagickSizeType) resource_info.list_length; in GetMagickResource()
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_legalize.c310 } else if (list_length(&block->instr_list) == 1) { in resolve_dest_block()
/external/mesa3d/src/util/
Dlist.h117 static inline unsigned list_length(struct list_head *list) in list_length() function
/external/adhd/cras/src/server/
Dcras_alsa_jack.c861 unsigned int list_length, in is_jack_control_in_list() argument
866 for (i = 0; i < list_length; i++) in is_jack_control_in_list()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc2816 int list_length = attr_list_sizes[op_def->output_arg(i).number_attr()]; local
2817 PyObject* inner_list = PyList_New(list_length);
2818 for (int j = 0; j < list_length; j++) {
2825 int list_length = attr_list_sizes[op_def->output_arg(i).type_list_attr()]; local
2826 PyObject* inner_list = PyList_New(list_length);
2827 for (int j = 0; j < list_length; j++) {
/external/mesa3d/src/compiler/nir/
Dnir_opt_loop_unroll.c531 unsigned num_lt = list_length(&loop->info->loop_terminator_list); in process_loops()
/external/vixl/src/aarch64/
Dmacro-assembler-aarch64.cc2783 size_t list_length = (count + 1) * sizeof(ElementType); in ConfigureSimulatorCPUFeaturesHelper() local
2784 size_t padding_length = AlignUp(list_length, kInstructionSize) - list_length; in ConfigureSimulatorCPUFeaturesHelper()
2786 size_t total_length = preamble_length + list_length + padding_length; in ConfigureSimulatorCPUFeaturesHelper()
2796 ExactAssemblyScope guard_list(this, list_length); in ConfigureSimulatorCPUFeaturesHelper()
/external/python/cpython2/Objects/
Dlistobject.c429 list_length(PyListObject *a) in list_length() function
2527 (lenfunc)list_length, /* sq_length */
2763 (lenfunc)list_length,
/external/python/cpython3/Objects/
Dlistobject.c392 list_length(PyListObject *a) in list_length() function
2700 (lenfunc)list_length, /* sq_length */
2929 (lenfunc)list_length,
/external/mesa3d/src/compiler/spirv/
Dvtn_cfg.c817 const int num_cases = list_length(&vtn_switch->cases); in vtn_emit_cf_list()