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

/freebsd-13-stable/contrib/bmake/
H A Djob.h176 size_t curPos; /* Current position in outBuf. */ member in struct:Job
H A Djob.c1533 job->curPos = 0;
1824 nRead = read(job->inPipe, &job->outBuf[job->curPos],
1825 JOB_BUFSIZE - job->curPos);
1843 if (nr == 0 && job->curPos != 0) {
1844 job->outBuf[job->curPos] = '\n';
1856 max = job->curPos + nr;
1857 for (i = job->curPos + nr - 1;
1858 i >= job->curPos && i != (size_t)-1; i--) {
1871 job->curPos += nr;
1872 if (job->curPos
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp105 memRegion->curPos += size;
106 uint64_t newSize = memRegion->curPos - (memRegion->origin)().getValue();
863 dot = ctx->memRegion->curPos;
869 // expression so that it now starts past the current curPos of the enclosing
872 if (ctx->memRegion && ctx->memRegion->curPos < dot)
873 expandMemoryRegion(ctx->memRegion, dot - ctx->memRegion->curPos,
887 ctx->lmaOffset = alignTo(mr->curPos, sec->alignment) - dot;
1124 mr->curPos = (mr->origin)().getValue();
H A DLinkerScript.h143 uint64_t curPos = 0; member in struct:lld::elf::MemoryRegion

Completed in 68 milliseconds