Home
last modified time | relevance | path

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

/external/lz4/programs/
Dutil.h282 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument
318 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList()
322 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
323 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
325 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
328 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
329 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList()
346 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument
373 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList()
376 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
[all …]
/external/mesa3d/src/glx/
Dpackrender.h77 if (pc + (size) > gc->bufEnd) { \
89 if (pc + (size) > gc->bufEnd) { \
107 if (pc + (size) > gc->bufEnd) { \
Dindirect_vertex_array.c549 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()
Dindirect_glx.c405 gc->bufEnd = gc->buf + bufSize; in indirect_create_context()
Dglxclient.h276 GLubyte *bufEnd; member
/external/deqp/executor/
DxeContainerFormatParser.cpp217 …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/cpython2/Modules/expat/
Dxmlparse.c187 char *bufEnd; /* end of the buffer */ member
2087 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames()
2103 tag->bufEnd = temp + bufSize; in storeRawNames()
2415 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent()
2434 (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1); in doContent()
2440 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent()
2446 tag->bufEnd = temp + bufSize; in doContent()
/external/expat/lib/
Dxmlparse.c195 char *bufEnd; /* end of the buffer */ member
2123 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames()
2139 tag->bufEnd = temp + bufSize; in storeRawNames()
2451 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent()
2470 (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1); in doContent()
2476 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent()
2482 tag->bufEnd = temp + bufSize; in doContent()