HomeSort by relevance Sort by last modified time
    Searched refs:initial_space_ (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/
repeated_field.cc 49 if (old_elements != initial_space_) {
59 // We may not be using initial_space_ but it's not worth checking. Just
62 memcpy(swap_initial_space, initial_space_, sizeof(initial_space_));
68 memcpy(initial_space_, other->initial_space_, sizeof(initial_space_));
74 memcpy(other->initial_space_, swap_initial_space, sizeof(swap_initial_space));
76 if (elements_ == other->initial_space_) {
77 elements_ = initial_space_;
    [all...]
repeated_field.h 138 Element initial_space_[kInitialSize]; member in class:google::protobuf::RepeatedField
255 void* initial_space_[kInitialSize]; member in class:google::protobuf::internal::RepeatedPtrFieldBase
369 // at. Returns zero if the array is inlined (i.e. initial_space_ is being
422 : elements_(initial_space_),
429 if (elements_ != initial_space_) {
520 // We may not be using initial_space_ but it's not worth checking. Just
523 MoveArray(swap_initial_space, initial_space_, kInitialSize);
528 MoveArray(initial_space_, other->initial_space_, kInitialSize);
533 MoveArray(other->initial_space_, swap_initial_space, kInitialSize)
    [all...]

Completed in 28 milliseconds