Searched refs:bufLimit (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4c/source/tools/genrb/ |
D | rle.c | 66 encodeRunByte(uint16_t* buffer,uint16_t* bufLimit, uint8_t value, int32_t length, uint8_t state[], … in encodeRunByte() argument 74 buffer = appendEncodedByte(buffer,bufLimit, ESCAPE_BYTE, state,status); in encodeRunByte() 76 buffer = appendEncodedByte(buffer,bufLimit, value, state, status); in encodeRunByte() 82 buffer = appendEncodedByte(buffer, bufLimit,ESCAPE_BYTE, state,status); in encodeRunByte() 84 buffer = appendEncodedByte(buffer,bufLimit, value, state, status); in encodeRunByte() 87 buffer = appendEncodedByte(buffer,bufLimit, ESCAPE_BYTE, state,status); in encodeRunByte() 88 buffer = appendEncodedByte(buffer,bufLimit, (char)length, state, status); in encodeRunByte() 89 …buffer = appendEncodedByte(buffer,bufLimit, value, state, status); /* Don't need to escape this va… in encodeRunByte() 94 #define APPEND( buffer, bufLimit, value, num, status){ \ argument 95 if(buffer<bufLimit){ \ [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ucbuf.cpp | 44 UChar* bufLimit; member 176 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf() 177 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf() 313 buf->bufLimit=pTarget+outputWritten; in ucbuf_fillucbuf() 314 *buf->bufLimit=0; /*NUL terminate*/ in ucbuf_fillucbuf() 329 if(buf->currentPos>=buf->bufLimit){ in ucbuf_getc() 349 if(buf->currentPos+1>=buf->bufLimit){ in ucbuf_getc32() 383 if (buf->currentPos >=buf->bufLimit-2) { in ucbuf_getcx32() 388 if (buf->currentPos < buf->bufLimit) { in ucbuf_getcx32() 402 length = (int32_t)(buf->bufLimit - buf->currentPos); in ucbuf_getcx32() [all …]
|
/external/deqp/modules/gles2/stress/ |
D | es2sLongRunningTests.cpp | 291 const int bufLimit; in init() member 292 …t char* n, const char* d, int t, int b) : nameSuffix(n), descSuffix(d), texLimit(t), bufLimit(b) {} in init() 307 memoryLimitCases[memoryLimitNdx].texLimit, memoryLimitCases[memoryLimitNdx].bufLimit, in init() 330 … memoryLimitCases[memoryLimitNdx].texLimit, memoryLimitCases[memoryLimitNdx].bufLimit, in init()
|
/external/deqp/modules/gles3/stress/ |
D | es3sLongRunningTests.cpp | 291 const int bufLimit; in init() member 292 …t char* n, const char* d, int t, int b) : nameSuffix(n), descSuffix(d), texLimit(t), bufLimit(b) {} in init() 307 memoryLimitCases[memoryLimitNdx].texLimit, memoryLimitCases[memoryLimitNdx].bufLimit, in init() 330 … memoryLimitCases[memoryLimitNdx].texLimit, memoryLimitCases[memoryLimitNdx].bufLimit, in init()
|
/external/lzma/C/ |
D | LzmaDec.c | 56 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=… 140 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal() argument 496 while (dicPos < limit && buf < bufLimit); in LzmaDec_DecodeReal() 543 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2() argument 555 RINOK(LzmaDec_DecodeReal(p, limit2, bufLimit)); in LzmaDec_DecodeReal2() 562 while (p->dicPos < limit && p->buf < bufLimit && p->remainLen < kMatchSpecLenStart); in LzmaDec_DecodeReal2() 582 const Byte *bufLimit = buf + inSize; in LzmaDec_TryDummy() local 864 const Byte *bufLimit; in LzmaDec_DecodeToDic() local 881 bufLimit = src; in LzmaDec_DecodeToDic() 884 bufLimit = src + inSize - LZMA_REQUIRED_INPUT_MAX; in LzmaDec_DecodeToDic() [all …]
|