Lines Matching refs:to_insert
898 size_t to_insert = 0; variable
902 to_insert += 1;
904 to_insert += stuff[i].length;
906 if (to_insert)
908 array.length += to_insert;
912 (() @trusted { copyBackwards(array[pos .. oldLen], array[pos+to_insert..$]); })();
989 size_t to_insert = 0; variable
992 to_insert += codeLength!T(stuff[i]);
993 array.length += to_insert;
1007 moveToRight(array[pos .. $], to_insert);
1021 assert(ptr == array.ptr + pos + to_insert, "(ptr == array.ptr + pos + to_insert) is false");