| /trueos/contrib/ntp/ntpd/ |
| HD | refclock_datum.c | 168 static int nunits; /* number of active units */ variable 262 malloc((nunits+1)*sizeof(struct datum_pts_unit *)); in datum_pts_start() 263 if (nunits > 0) memcpy(temp_datum_pts_unit, datum_pts_unit, in datum_pts_start() 264 nunits*sizeof(struct datum_pts_unit *)); in datum_pts_start() 267 datum_pts_unit[nunits] = (struct datum_pts_unit *) in datum_pts_start() 269 datum_pts = datum_pts_unit[nunits]; in datum_pts_start() 344 nunits++; in datum_pts_start() 378 for (i=0; i<nunits; i++) { in datum_pts_shutdown() 395 if (nunits > 1) { in datum_pts_shutdown() 398 malloc((nunits-1)*sizeof(struct datum_pts_unit *)); in datum_pts_shutdown() [all …]
|
| /trueos/contrib/gcc/ |
| HD | tree-vect-generic.c | 81 build_word_mode_vector_type (int nunits) in build_word_mode_vector_type() argument 85 else if (vector_last_nunits == nunits) in build_word_mode_vector_type() 93 vector_last_nunits = nunits; in build_word_mode_vector_type() 94 vector_last_type = type_hash_canon (nunits, in build_word_mode_vector_type() 96 nunits)); in build_word_mode_vector_type() 208 int nunits = TYPE_VECTOR_SUBPARTS (type); in expand_vector_piecewise() local 213 v = VEC_alloc(constructor_elt, gc, (nunits + delta - 1) / delta); in expand_vector_piecewise() 214 for (i = 0; i < nunits; in expand_vector_piecewise()
|
| HD | tree-vect-transform.c | 460 int nunits = TYPE_VECTOR_SUBPARTS (vectype); in vect_get_vec_def_for_operand() local 503 fprintf (vect_dump, "Create vector_cst. nunits = %d", nunits); in vect_get_vec_def_for_operand() 505 for (i = nunits - 1; i >= 0; --i) in vect_get_vec_def_for_operand() 523 for (i = nunits - 1; i >= 0; --i) in vect_get_vec_def_for_operand() 647 int nunits = GET_MODE_NUNITS (TYPE_MODE (vectype)); in get_initial_def_for_reduction() local 671 nelements = nunits; in get_initial_def_for_reduction() 676 nelements = nunits - 1; in get_initial_def_for_reduction() 684 nelements = nunits; in get_initial_def_for_reduction() 695 if (nelements == nunits - 1) in get_initial_def_for_reduction() 701 gcc_assert (nelements == nunits); in get_initial_def_for_reduction()
|
| HD | tree-vect-analyze.c | 116 unsigned int nunits; in vect_determine_vectorization_factor() local 187 nunits = TYPE_VECTOR_SUBPARTS (vectype); in vect_determine_vectorization_factor() 189 fprintf (vect_dump, "nunits = %d", nunits); in vect_determine_vectorization_factor() 195 if (nunits != vectorization_factor) in vect_determine_vectorization_factor() 203 vectorization_factor = nunits; in vect_determine_vectorization_factor()
|
| HD | stor-layout.c | 1611 int nunits = TYPE_VECTOR_SUBPARTS (type); in layout_type() local 1612 tree nunits_tree = build_int_cst (NULL_TREE, nunits); in layout_type() 1615 gcc_assert (!(nunits & (nunits - 1))); in layout_type() 1630 if (GET_MODE_NUNITS (mode) == nunits in layout_type() 1638 mode = mode_for_size (nunits * GET_MODE_BITSIZE (innermode), in layout_type()
|
| HD | tree-vectorizer.c | 1553 int nunits; in get_vectype_for_scalar_type() local 1561 nunits = UNITS_PER_SIMD_WORD / nbytes; in get_vectype_for_scalar_type() 1563 vectype = build_vector_type (scalar_type, nunits); in get_vectype_for_scalar_type() 1566 fprintf (vect_dump, "get vectype with %d units of type ", nunits); in get_vectype_for_scalar_type()
|
| HD | tree.c | 6426 make_vector_type (tree innertype, int nunits, enum machine_mode mode) in make_vector_type() argument 6436 make_vector_type (TYPE_MAIN_VARIANT (innertype), nunits, mode), in make_vector_type() 6442 SET_TYPE_VECTOR_SUBPARTS (t, nunits); in make_vector_type() 6450 tree index = build_int_cst (NULL_TREE, nunits - 1); in make_vector_type() 6901 int nunits; in build_vector_type_for_mode() local 6907 nunits = GET_MODE_NUNITS (mode); in build_vector_type_for_mode() 6915 nunits = GET_MODE_BITSIZE (mode) in build_vector_type_for_mode() 6923 return make_vector_type (innertype, nunits, mode); in build_vector_type_for_mode() 6930 build_vector_type (tree innertype, int nunits) in build_vector_type() argument 6932 return make_vector_type (innertype, nunits, VOIDmode); in build_vector_type()
|
| HD | varasm.c | 2299 int bitsize, nelts, nunits, units_per; in assemble_real() local 2313 nunits = GET_MODE_SIZE (mode); in assemble_real() 2314 bitsize = nunits * BITS_PER_UNIT; in assemble_real() 2321 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1); in assemble_real() 2322 nunits -= units_per; in assemble_real() 2329 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1); in assemble_real() 2330 nunits -= units_per; in assemble_real()
|
| HD | c-common.c | 5467 unsigned HOST_WIDE_INT vecsize, nunits; in handle_vector_size_attribute() local 5525 nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1); in handle_vector_size_attribute() 5526 if (nunits & (nunits - 1)) in handle_vector_size_attribute() 5532 new_type = build_vector_type (type, nunits); in handle_vector_size_attribute()
|
| HD | emit-rtl.c | 5065 int nunits = GET_MODE_NUNITS (mode); in gen_rtx_CONST_VECTOR() local 5070 x = RTVEC_ELT (v, nunits - 1); in gen_rtx_CONST_VECTOR() 5071 for (i = nunits - 2; i >= 0; i--) in gen_rtx_CONST_VECTOR()
|
| HD | tree.h | 3680 extern tree build_vector_type (tree innertype, int nunits);
|
| HD | ChangeLog-2004 | 22269 * print-tree.c (print_node): Print nunits for vector types
|
| /trueos/contrib/libpcap/ |
| HD | pcap-dlpi.c | 920 u_int nunits; member 947 for (i = 0; i < buf.nunits; i++) {
|
| /trueos/contrib/gcc/config/i386/ |
| HD | predicates.md | 688 int nunits = GET_MODE_NUNITS (mode); 691 && CONST_VECTOR_NUNITS (op) == nunits) 694 for (i = 0; i < nunits; ++i)
|
| /trueos/sys/dev/ciss/ |
| HD | ciss.c | 1300 ciss_report_luns(struct ciss_softc *sc, int opcode, int nunits) in ciss_report_luns() argument 1320 report_size = sizeof(*cll) + nunits * sizeof(union ciss_device_address); in ciss_report_luns()
|
| /trueos/contrib/gcc/config/rs6000/ |
| HD | rs6000.c | 2187 unsigned nunits = GET_MODE_NUNITS (mode); in vspltis_constant() local 2191 HOST_WIDE_INT val = const_vector_elt_as_int (op, nunits - 1); in vspltis_constant() 2223 for (i = 0; i < nunits - 1; ++i) in vspltis_constant() 2287 int nunits = GET_MODE_NUNITS (mode); in gen_easy_altivec_constant() local 2288 rtx last = CONST_VECTOR_ELT (op, nunits - 1); in gen_easy_altivec_constant() 2289 unsigned step = nunits / 4; in gen_easy_altivec_constant() 8022 build_opaque_vector_type (tree node, int nunits) in build_opaque_vector_type() argument 8026 return build_vector_type (node, nunits); in build_opaque_vector_type()
|