Searched refs:bufEnd (Results 1 – 9 of 9) sorted by relevance
/external/lz4/programs/ |
D | util.h | 390 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument 426 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList() 430 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList() 431 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList() 433 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList() 436 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList() 437 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList() 454 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument 481 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList() 484 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList() [all …]
|
/external/mesa3d/src/glx/ |
D | packrender.h | 77 if (pc + (size) > gc->bufEnd) { \ 89 if (pc + (size) > gc->bufEnd) { \ 107 if (pc + (size) > gc->bufEnd) { \
|
D | indirect_vertex_array.c | 549 if ((pc + single_vertex_size) >= gc->bufEnd) { in emit_DrawArrays_none() 556 if ((pc + 4) >= gc->bufEnd) { in emit_DrawArrays_none() 667 if ((gc->pc + command_size) >= gc->bufEnd) { in emit_DrawArrays_header_old() 724 assert(pc <= gc->bufEnd); in emit_DrawArrays_old() 775 if ((gc->pc + single_vertex_size) >= gc->bufEnd) { in emit_DrawElements_none() 789 if ((pc + single_vertex_size) >= gc->bufEnd) { in emit_DrawElements_none() 807 if ((pc + 4) >= gc->bufEnd) { in emit_DrawElements_none() 897 assert(pc <= gc->bufEnd); in emit_DrawElements_old() 1013 if ((gc->pc + single_vertex_size) >= gc->bufEnd) { in __indirect_glArrayElement()
|
D | indirect_glx.c | 407 gc->bufEnd = gc->buf + bufSize; in indirect_create_context()
|
D | glxclient.h | 276 GLubyte *bufEnd; member
|
/external/deqp/executor/ |
D | xeContainerFormatParser.cpp | 217 …bool bufEnd = bufChar == 0 || bufChar == ' ' || bufChar == '\r' || bufChar == '\n' || bufChar == … in parseContainerLine() local 221 if (bufEnd || elemEnd) in parseContainerLine() 223 isMatch = bufEnd == elemEnd; in parseContainerLine()
|
/external/python/cpython3/Modules/expat/ |
D | xmlparse.c | 270 char *bufEnd; /* end of the buffer */ member 2520 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames() 2536 tag->bufEnd = temp + bufSize; in storeRawNames() 2848 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent() 2867 (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1); in doContent() 2873 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent() 2879 tag->bufEnd = temp + bufSize; in doContent()
|
/external/expat/lib/ |
D | xmlparse.c | 270 char *bufEnd; /* end of the buffer */ member 2520 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames() 2536 tag->bufEnd = temp + bufSize; in storeRawNames() 2848 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent() 2867 (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1); in doContent() 2873 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent() 2879 tag->bufEnd = temp + bufSize; in doContent()
|
/external/python/cpython2/Modules/expat/ |
D | xmlparse.c | 270 char *bufEnd; /* end of the buffer */ member 2520 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames() 2536 tag->bufEnd = temp + bufSize; in storeRawNames() 2848 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent() 2867 (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1); in doContent() 2873 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent() 2879 tag->bufEnd = temp + bufSize; in doContent()
|