Searched refs:temp_slot_p (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dfunction.h164 typedef struct temp_slot *temp_slot_p;
166 DEF_VEC_P(temp_slot_p);
167 DEF_VEC_ALLOC_P(temp_slot_p,gc);
286 VEC(temp_slot_p,gc) *x_used_temp_slots;
163 typedef struct temp_slot *temp_slot_p; typedef in typeref:struct:temp_slot
165 DEF_VEC_P(temp_slot_p); variable
H A Dfunction.c553 if (level >= (int) VEC_length (temp_slot_p, used_temp_slots))
555 size_t old_length = VEC_length (temp_slot_p, used_temp_slots);
556 temp_slot_p *p;
558 VEC_safe_grow (temp_slot_p, gc, used_temp_slots, level + 1);
559 p = VEC_address (temp_slot_p, used_temp_slots);
561 sizeof (temp_slot_p) * (level + 1 - old_length));
564 return &(VEC_address (temp_slot_p, used_temp_slots)[level]);
575 return VEC_length (temp_slot_p, used_temp_slots) - 1;

Completed in 62 milliseconds