Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/programs/
H A Dutil.c824 char** bufEnd, int followLinks) in UTIL_prepareFileList() argument
862 nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd, followLinks); in UTIL_prepareFileList()
867 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
868 ptrdiff_t const newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
871 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
873 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
889 char** bufEnd, int followLinks) in UTIL_prepareFileList() argument
925 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd, followLinks); /* Recursively call "U… in UTIL_prepareFileList()
928 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
929 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp1168 void InputSectionBase::relocate(Ctx &ctx, uint8_t *buf, uint8_t *bufEnd) { in relocate() argument
1170 adjustSplitStackFunctionPrologues<ELFT>(ctx, buf, bufEnd); in relocate()
1314 uint8_t *bufEnd = buf + size; in writeTo() local
1315 relocate<ELFT>(ctx, buf, bufEnd); in writeTo()
H A DInputSection.h268 template <class ELFT> void relocate(Ctx &, uint8_t *buf, uint8_t *bufEnd);
/freebsd/contrib/expat/lib/
H A Dxmlparse.c313 char *bufEnd; /* end of the buffer */ member
3069 if (bufSize > (size_t)(tag->bufEnd - tag->buf.raw)) {
3085 tag->bufEnd = temp + bufSize;
3404 tag->bufEnd = tag->buf.raw + INIT_TAG_BUF_SIZE;
3422 (ICHAR *)tag->bufEnd - 1);
3429 if (SIZE_MAX / 2 < (size_t)(tag->bufEnd - tag->buf.raw))
3431 const size_t bufSize = (size_t)(tag->bufEnd - tag->buf.raw) * 2;
3437 tag->bufEnd = temp + bufSize;