Lines Matching refs:to_insert
1362 size_t to_insert = 0;
1366 to_insert += 1;
1368 to_insert += stuff[i].length;
1370 if (to_insert)
1372 array.length += to_insert;
1376 (() @trusted { copyBackwards(array[pos .. oldLen], array[pos+to_insert..$]); })();
1378 // Initialize array[pos .. pos+to_insert] with stuff[]
1453 size_t to_insert = 0;
1456 to_insert += codeLength!T(stuff[i]);
1457 array.length += to_insert;
1472 moveToRight(array[pos .. $], to_insert);
1486 assert(ptr == array.ptr + pos + to_insert, "(ptr == array.ptr + pos + to_insert) is false");