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.c578 char** bufEnd, int followLinks) in UTIL_prepareFileList() argument
616 nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd, followLinks); in UTIL_prepareFileList()
621 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
622 ptrdiff_t const newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
625 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
627 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
643 char** bufEnd, int followLinks) in UTIL_prepareFileList() argument
679 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd, followLinks); /* Recursively call "U… in UTIL_prepareFileList()
682 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
683 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp1099 void InputSectionBase::relocate(uint8_t *buf, uint8_t *bufEnd) { in relocate() argument
1101 adjustSplitStackFunctionPrologues<ELFT>(buf, bufEnd); in relocate()
1245 uint8_t *bufEnd = buf + size; in writeTo() local
1246 relocate<ELFT>(buf, bufEnd); in writeTo()
H A DInputSection.h246 template <class ELFT> void relocate(uint8_t *buf, uint8_t *bufEnd);
/freebsd/contrib/expat/lib/
H A Dxmlparse.c314 char *bufEnd; /* end of the buffer */
2677 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames()
2693 tag->bufEnd = temp + bufSize;
3006 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent()
3025 (ICHAR *)tag->bufEnd - 1); in doContent()
3032 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent()
3038 tag->bufEnd = temp + bufSize; in doContent()
313 char *bufEnd; /* end of the buffer */ global() member