Home | History | Annotate | Download | only in include

Lines Matching refs:alloc_

567      (int alloc_)							  \
569 return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T); \
573 (VEC(T,base) *vec_, int alloc_) \
576 vec_->alloc = alloc_; \
580 (VEC(T,base) *vec_, int alloc_ VEC_CHECK_DECL) \
582 VEC_ASSERT (alloc_ >= 0, "space", T, base); \
583 return vec_ ? vec_->alloc - vec_->num >= (unsigned)alloc_ : !alloc_; \
715 (int alloc_ MEM_STAT_DECL) \
717 return (VEC(T,A) *) vec_##A##_p_reserve_exact (NULL, alloc_ \
746 (VEC(T,A) **vec_, int alloc_ VEC_CHECK_DECL MEM_STAT_DECL) \
748 int extend = !VEC_OP (T,base,space) (VEC_BASE(*vec_), alloc_ \
752 *vec_ = (VEC(T,A) *) vec_##A##_p_reserve (*vec_, alloc_ PASS_MEM_STAT); \
758 (VEC(T,A) **vec_, int alloc_ VEC_CHECK_DECL MEM_STAT_DECL) \
760 int extend = !VEC_OP (T,base,space) (VEC_BASE(*vec_), alloc_ \
764 *vec_ = (VEC(T,A) *) vec_##A##_p_reserve_exact (*vec_, alloc_ \
856 (int alloc_) \
858 return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T); \
862 (VEC(T,base) *vec_, int alloc_) \
865 vec_->alloc = alloc_; \
869 (VEC(T,base) *vec_, int alloc_ VEC_CHECK_DECL) \
871 VEC_ASSERT (alloc_ >= 0, "space", T, base); \
872 return vec_ ? vec_->alloc - vec_->num >= (unsigned)alloc_ : !alloc_; \
992 (int alloc_ MEM_STAT_DECL) \
994 return (VEC(T,A) *) vec_##A##_o_reserve_exact (NULL, alloc_, \
1027 (VEC(T,A) **vec_, int alloc_ VEC_CHECK_DECL MEM_STAT_DECL) \
1029 int extend = !VEC_OP (T,base,space) (VEC_BASE(*vec_), alloc_ \
1033 *vec_ = (VEC(T,A) *) vec_##A##_o_reserve (*vec_, alloc_, \
1042 (VEC(T,A) **vec_, int alloc_ VEC_CHECK_DECL MEM_STAT_DECL) \
1044 int extend = !VEC_OP (T,base,space) (VEC_BASE(*vec_), alloc_ \
1049 (*vec_, alloc_, \
1097 (int alloc_ MEM_STAT_DECL) \
1100 (NULL, alloc_, offsetof (VEC(T,A),base.vec), \
1131 (VEC(T,A) **vec_, int alloc_ VEC_CHECK_DECL MEM_STAT_DECL) \
1133 int extend = !VEC_OP (T,base,space) (VEC_BASE(*vec_), alloc_ \
1137 *vec_ = (VEC(T,A) *) vec_##A##_o_reserve (*vec_, alloc_, \
1146 (VEC(T,A) **vec_, int alloc_ VEC_CHECK_DECL MEM_STAT_DECL) \
1148 int extend = !VEC_OP (T,base,space) (VEC_BASE(*vec_), alloc_ \
1153 (*vec_, alloc_, offsetof (VEC(T,A),base.vec), \