all we can do is guess, but if you can get at the part you want in the second while loop in the first one, then just use 1 loop even if it does 2 things, speed > split if you need speed.
if you depend on the first loop to complete to get the second, it is what it is.
while: iterator vector::insert( const_iterator position, InputIterator first, InputIterator last );position
Position in the vector where the new elements are inserted.
Avoid using identifiers that start with an underscore followed by an upper case character.
. the identifiers with a double underscore anywhere are reserved;
. the identifiers that begin with an underscore followed by an uppercase letter are reserved;
. the identifiers that begin with an underscore are reserved in the global namespace.
"Reserved" here means that the standard library headers #define or declare such identifiers for their internal needs, the compiler may predefine non-standard identifiers of that kind, and that name mangling algorithm may assume that some of these identifiers are not in use. If the programmer uses such identifiers, the behavior is undefined. https://en.cppreference.com/w/cpp/language/identifiers#In_declarations