Home
last modified time | relevance | path

Searched refs:writeBackIndex (Results 1 – 1 of 1) sorted by relevance

/dports/devel/tpasm/tpasm1.11/
H A Dalias.c53writeBackIndex, // place where data will be written back to output line if substitution is nee… in HandleAliasMatches() local
66 writeBackIndex=*lineIndex; // keep track of where we are now (do not modify lineIndex) in HandleAliasMatches()
67 SkipWhiteSpace(line,&writeBackIndex); // skip over any initial whitespace in HandleAliasMatches()
68 inIndex=skipIndex=writeBackIndex; // begin reading from here in HandleAliasMatches()
109 …if(writeBackIndex+subOutIndex+(skipIndex-inIndex)+1<MAX_STRING) // make sure there's room in the … in HandleAliasMatches()
114 …memmove(&line[writeBackIndex+subOutIndex],&line[inIndex],skipIndex-inIndex); // move over the stuf… in HandleAliasMatches()
115 memcpy(&line[writeBackIndex],substitutionText,subOutIndex); // blast in the substitution text in HandleAliasMatches()
116 line[writeBackIndex+subOutIndex+(skipIndex-inIndex)]='\0'; // re-terminate the line in HandleAliasMatches()