Home | History | Annotate | Download | only in libwebm

Lines Matching defs:new_capacity

274     const int32 new_capacity =
277 if (new_capacity < 1)
281 new (std::nothrow) CuePoint*[new_capacity]; // NOLINT
292 cue_entries_capacity_ = new_capacity;
2900 const int32 new_capacity =
2903 new (std::nothrow) Cluster*[new_capacity]; // NOLINT
2914 cluster_list_capacity_ = new_capacity;
3091 const int32 new_capacity = (!frames_capacity_) ? 2 : frames_capacity_ * 2;
3093 if (new_capacity < 1)
3096 Frame** const frames = new (std::nothrow) Frame*[new_capacity]; // NOLINT
3106 frames_capacity_ = new_capacity;