Lines Matching refs:linesInserted

721 		linesInserted;  in InsertWithRoomInChunk()  local
724 CopyChunkToChunk(chunk,offset,textChunk,textOffset,numBytes,&linesInserted); in InsertWithRoomInChunk()
726 chunk->totalLines+=linesInserted; // bump number of lines in this chunk in InsertWithRoomInChunk()
728 universe->totalLines+=linesInserted; in InsertWithRoomInChunk()
739 linesInserted, in InsertWithRoomInTwoChunks() local
758 …CopyChunkToChunk(chunk,offset,textChunk,textOffset,numBytes,&linesInserted); // copy the data into… in InsertWithRoomInTwoChunks()
760 chunk->totalLines+=linesInserted; // bump number of lines in this chunk in InsertWithRoomInTwoChunks()
762 universe->totalLines+=linesInserted; in InsertWithRoomInTwoChunks()
779 …CopyChunkToChunk(secondChunk,0,textChunk,textOffset,numBytes-(CHUNK_SIZE-offset),&linesInserted); … in InsertWithRoomInTwoChunks()
780 secondChunk->totalLines+=linesInserted; in InsertWithRoomInTwoChunks()
781 universe->totalLines+=linesInserted+tempInserted; // add number of lines added in first chunk in InsertWithRoomInTwoChunks()
793 linesInserted, in InsertWithNoRoom() local
847 linesInserted=0; in InsertWithNoRoom()
862 linesInserted+=tempInserted; // keep track of total number of lines inserted so far in InsertWithNoRoom()
867 universe->totalLines+=linesInserted; // increment the number of lines in the universe in InsertWithNoRoom()
880 linesInserted, in InsertAtLastChunk() local
916 linesInserted=0; in InsertAtLastChunk()
931 linesInserted+=tempInserted; // keep track of total number of lines inserted so far in InsertAtLastChunk()
936 universe->totalLines+=linesInserted; // increment the number of lines in the universe in InsertAtLastChunk()
946 linesInserted, in InsertWithNoChunks() local
961 linesInserted=0; in InsertWithNoChunks()
975 linesInserted+=tempInserted; // keep track of total number of lines inserted so far in InsertWithNoChunks()
979 universe->totalLines=linesInserted; // remember the number of lines in the universe in InsertWithNoChunks()