Searched refs:bufEnd (Results 1 – 4 of 4) sorted by relevance
| /src/sys/contrib/zstd/programs/ |
| H A D | util.c | 578 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 …]
|
| /src/contrib/llvm-project/lld/ELF/ |
| H A D | InputSection.cpp | 1099 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 D | InputSection.h | 246 template <class ELFT> void relocate(uint8_t *buf, uint8_t *bufEnd);
|
| /src/contrib/expat/lib/ |
| H A D | xmlparse.c | 315 char *bufEnd; /* end of the buffer */ member 3145 if (bufSize > (size_t)(tag->bufEnd - tag->buf)) { 3161 tag->bufEnd = temp + bufSize; 3480 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; 3499 (ICHAR *)tag->bufEnd - 1); 3506 bufSize = (int)(tag->bufEnd - tag->buf) << 1; 3512 tag->bufEnd = temp + bufSize;
|