Searched refs:elt_size (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dvec.c97 vec_gc_o_reserve_1 (void *vec, int reserve, size_t vec_offset, size_t elt_size, argument
106 vec = ggc_realloc_stat (vec, vec_offset + alloc * elt_size PASS_MEM_STAT);
147 vec_gc_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
150 return vec_gc_o_reserve_1 (vec, reserve, vec_offset, elt_size, false
160 size_t elt_size MEM_STAT_DECL)
162 return vec_gc_o_reserve_1 (vec, reserve, vec_offset, elt_size, true
170 size_t elt_size, bool exact MEM_STAT_DECL)
178 vec = xrealloc (vec, vec_offset + alloc * elt_size);
211 vec_heap_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
214 return vec_heap_o_reserve_1 (vec, reserve, vec_offset, elt_size, fals
169 vec_heap_o_reserve_1(void *vec, int reserve, size_t vec_offset, size_t elt_size, bool exact MEM_STAT_DECL) argument
[all...]
H A Dalloc-pool.h46 size_t elt_size; member in struct:alloc_pool_def
H A Dalloc-pool.c157 pool->elt_size = size;
230 desc->allocated+=pool->elt_size;
256 for (i = 0; i < pool->elts_per_block; i++, block += pool->elt_size)
295 memset (ptr, 0xaf, pool->elt_size - offsetof (allocation_object, u.data));
H A Dtree-ssa-ccp.c1543 tree array_type, elt_type, elt_size; local
1575 elt_size = TYPE_SIZE_UNIT (elt_type);
1578 if (TREE_CODE (elt_size) != INTEGER_CST)
1579 elt_size = size_int (TYPE_ALIGN (elt_type));
1588 if (TREE_CODE (elt_size) != INTEGER_CST
1592 TREE_INT_CST_LOW (elt_size),
1593 TREE_INT_CST_HIGH (elt_size),
1885 tree elt_size = TYPE_SIZE_UNIT (elt_type); local
1890 if (TREE_CODE (elt_size) != INTEGER_CST)
1912 array_idx = int_const_binop (MULT_EXPR, array_idx, elt_size,
[all...]
H A Ddwarf2out.c2720 unsigned elt_size;
4991 unsigned int length, unsigned int elt_size, unsigned char *array)
4998 attr.dw_attr_val.v.val_vec.elt_size = elt_size;
6051 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
6054 v1->v.val_vec.length * v1->v.val_vec.elt_size))
6658 * a->dw_attr_val.v.val_vec.elt_size); /* block */
7159 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
2718 unsigned elt_size; local
4983 add_AT_vec(dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int length, unsigned int elt_size, unsigned char *array) argument
7148 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size; local
9937 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode); local
[all...]
H A Dsimplify-rtx.c896 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode));
897 unsigned n_elts = (GET_MODE_SIZE (mode) / elt_size);
921 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode));
922 unsigned n_elts = (GET_MODE_SIZE (mode) / elt_size);
2565 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode));
2566 unsigned n_elts = (GET_MODE_SIZE (mode) / elt_size);
2643 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode));
2644 unsigned n_elts = (GET_MODE_SIZE (mode) / elt_size);
2650 in_n_elts = (GET_MODE_SIZE (op0_mode) / elt_size);
4185 int elt_size
890 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode)); local
915 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode)); local
2558 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode)); local
2636 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode)); local
4176 int elt_size = GET_MODE_SIZE (GET_MODE_INNER (mode)); local
[all...]
H A Dvarasm.c4134 int elt_size;
4142 elt_size = GET_MODE_SIZE (inner);
4145 output_constant (TREE_VALUE (link), elt_size, align);
4146 thissize = elt_size;
4149 output_constant (TREE_VALUE (link), elt_size, nalign);
4150 thissize += elt_size;
4109 int elt_size; local
4120 output_constant (TREE_VALUE (link), elt_size, align); local
4124 output_constant (TREE_VALUE (link), elt_size, nalign); local
H A Dexpr.c5331 int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1);
5402 idx++, i += bitsize / elt_size)
5430 bitpos = eltpos * elt_size;
5317 int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1); local
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dvalarith.c262 unsigned int elt_size = TYPE_LENGTH (elt_type);
264 unsigned int elt_offs = elt_size * longest_to_int (index - lowerbound);
274 memcpy (VALUE_CONTENTS (v), VALUE_CONTENTS (array) + elt_offs, elt_size);
261 unsigned int elt_size = TYPE_LENGTH (elt_type); local
H A Ds390-tdep.c828 CORE_ADDR elt_size,
847 && offset.k >= array_len * elt_size)
849 else if (offset.k % elt_size != 0
850 || size != elt_size)
854 *i = offset.k / elt_size;
824 pv_is_array_ref(struct prologue_value *addr, CORE_ADDR size, struct prologue_value *array_addr, CORE_ADDR array_len, CORE_ADDR elt_size, int *i) argument

Completed in 342 milliseconds