Searched refs:bufEnd (Results 1 – 10 of 10) sorted by relevance
/third_party/lz4/programs/ |
D | util.h | 444 …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() 485 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList() 486 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList() 488 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList() 491 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList() 492 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList() 510 …L_STATIC int UTIL_prepareFileList(const char* dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument 538 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList() 541 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList() [all …]
|
/third_party/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 | 551 if ((pc + single_vertex_size) >= gc->bufEnd) { in emit_DrawArrays_none() 558 if ((pc + 4) >= gc->bufEnd) { in emit_DrawArrays_none() 669 if ((gc->pc + command_size) >= gc->bufEnd) { in emit_DrawArrays_header_old() 726 assert(pc <= gc->bufEnd); in emit_DrawArrays_old() 777 if ((gc->pc + single_vertex_size) >= gc->bufEnd) { in emit_DrawElements_none() 791 if ((pc + single_vertex_size) >= gc->bufEnd) { in emit_DrawElements_none() 809 if ((pc + 4) >= gc->bufEnd) { in emit_DrawElements_none() 899 assert(pc <= gc->bufEnd); in emit_DrawElements_old() 1015 if ((gc->pc + single_vertex_size) >= gc->bufEnd) { in __indirect_glArrayElement()
|
D | indirect_glx.c | 368 gc->bufEnd = gc->buf + bufSize; in indirect_create_context_attribs()
|
D | glxclient.h | 271 GLubyte *bufEnd; member
|
/third_party/vk-gl-cts/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()
|
/third_party/flutter/engine/flutter/third_party/txt/src/minikin/ |
D | WordBreaker.cpp | 78 static bool isBreakValid(const uint16_t* buf, size_t bufEnd, size_t i) { in isBreakValid() argument 102 U16_NEXT(buf, next_offset, bufEnd, next_codepoint); in isBreakValid()
|
/third_party/expat/lib/ |
D | xmlparse.c | 287 char *bufEnd; /* end of the buffer */ member 2587 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames() 2603 tag->bufEnd = temp + bufSize; in storeRawNames() 2916 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent() 2935 (ICHAR *)tag->bufEnd - 1); in doContent() 2942 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent() 2948 tag->bufEnd = temp + bufSize; in doContent()
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
D | xmlparse.c | 287 char *bufEnd; /* end of the buffer */ member 2571 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames() 2587 tag->bufEnd = temp + bufSize; in storeRawNames() 2900 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent() 2919 (ICHAR *)tag->bufEnd - 1); in doContent() 2926 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent() 2932 tag->bufEnd = temp + bufSize; in doContent()
|
/third_party/python/Modules/expat/ |
D | xmlparse.c | 287 char *bufEnd; /* end of the buffer */ member 2571 if (bufSize > tag->bufEnd - tag->buf) { in storeRawNames() 2587 tag->bufEnd = temp + bufSize; in storeRawNames() 2900 tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; in doContent() 2919 (ICHAR *)tag->bufEnd - 1); in doContent() 2926 bufSize = (int)(tag->bufEnd - tag->buf) << 1; in doContent() 2932 tag->bufEnd = temp + bufSize; in doContent()
|