Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Djob.c1552 job->curPos = 0; in JobExec()
1841 nRead = read(job->inPipe, &job->outBuf[job->curPos], in CollectOutput()
1842 JOB_BUFSIZE - job->curPos); in CollectOutput()
1860 if (nr == 0 && job->curPos != 0) { in CollectOutput()
1861 job->outBuf[job->curPos] = '\n'; in CollectOutput()
1865 max = job->curPos + nr; in CollectOutput()
1866 for (i = job->curPos; i < max; i++) in CollectOutput()
1871 for (i = job->curPos + nr - 1; in CollectOutput()
1872 i >= job->curPos && i != (size_t)-1; i--) { in CollectOutput()
1880 job->curPos in CollectOutput()
[all...]
H A Djob.h175 size_t curPos; /* Current position in outBuf. */ member
/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp160 memRegion->curPos += size; in expandMemoryRegion()
1052 dot = state->memRegion->curPos; in assignOffsets()
1060 if (state->memRegion && state->memRegion->curPos < dot) in assignOffsets()
1061 expandMemoryRegion(state->memRegion, dot - state->memRegion->curPos, in assignOffsets()
1085 uint64_t lmaStart = alignToPowerOf2(mr->curPos, sec->addralign); in assignOffsets()
1086 if (mr->curPos < lmaStart) in assignOffsets()
1087 expandMemoryRegion(mr, lmaStart - mr->curPos, sec->name); in assignOffsets()
1382 mr->curPos = (mr->origin)().getValue(); in AddressState()
1431 return mr->curPos - mr->getOrigin() > mr->getLength(); in hasRegionOverflowed()
1491 osec->memRegion->curPos -= isec->getSize(); in spillSections()
[all …]
H A DLinkerScript.h159 uint64_t curPos = 0; member