HomeSort by relevance Sort by last modified time
    Searched full:bufferend (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 45 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
49 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
56 /// BufferBegin/BufferEnd - Pointers to the start and end of the memory
58 uint8_t *BufferBegin, *BufferEnd;
60 /// code. This is guaranteed to be in the range [BufferBegin,BufferEnd]. If
61 /// this pointer is at BufferEnd, it will never move due to code emission, and
86 if (CurBufferPtr != BufferEnd)
94 if (4 <= BufferEnd-CurBufferPtr) {
97 CurBufferPtr = BufferEnd;
116 if (4 <= BufferEnd-CurBufferPtr)
    [all...]
JITCodeEmitter.h 45 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
49 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
81 if (CurBufferPtr != BufferEnd)
89 if (4 <= BufferEnd-CurBufferPtr) {
95 CurBufferPtr = BufferEnd;
103 if (4 <= BufferEnd-CurBufferPtr) {
109 CurBufferPtr = BufferEnd;
117 if (8 <= BufferEnd-CurBufferPtr) {
127 CurBufferPtr = BufferEnd;
135 if (8 <= BufferEnd-CurBufferPtr)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libnss_files-2.7.so 
libnss_files.so 
libnss_files.so.2 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libnss_files-2.7.so 
libnss_files.so 
libnss_files.so.2 
  /external/llvm/include/llvm/ADT/
StringExtras.h 31 /// BufferEnd, returning a pointer to the start of the string. This can be used
39 static inline char *utohex_buffer(IntTy X, char *BufferEnd) {
40 char *BufPtr = BufferEnd;
  /external/llvm/include/llvm/Support/
MemoryBuffer.h 37 const char *BufferEnd; // End of the buffer.
49 const char *getBufferEnd() const { return BufferEnd; }
50 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 282 // save BufferBegin/BufferEnd/CurBufferPtr here.
791 BufferEnd = BufferBegin+ActualSize;
813 if (CurBufferPtr == BufferEnd) {
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 71 BufferEnd = BufEnd;
82 StringRef Buf(BufferStart, BufferEnd - BufferStart);
188 L->BufferEnd = StrData+TokLen;
189 assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!");
    [all...]
PPLexerChange.cpp 269 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
315 const char *EndPos = CurLexer->BufferEnd;
  /external/stlport/src/
num_get_float.cpp 351 char *bufferend; /* pointer to char after last digit */ local
354 bufferend = buffer + ndigit;
357 while (buffer < bufferend) {
488 char *bufferend = buffer + ndigit; /* pointer to char after last digit */ local
492 while ( buffer < bufferend ) {
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 351 char *bufferend; /* pointer to char after last digit */ local
354 bufferend = buffer + ndigit;
357 while (buffer < bufferend) {
488 char *bufferend = buffer + ndigit; /* pointer to char after last digit */ local
492 while ( buffer < bufferend ) {
  /external/bluetooth/glib/glib/gnulib/
vasnprintf.c 90 char *bufferend; local
138 pointer = bufferend = &buffer[sizeof(buffer) - 1];
149 width -= (bufferend - pointer) - 1;
154 precision -= (bufferend - pointer) - 1;
  /external/expat/lib/
xmlparse.c 613 #define bufferEnd (parser->m_bufferEnd)
834 bufferEnd = buffer;
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 551 final int bufferEnd = totalBytesRetired + bufferSize;
552 if (bufferEnd > currentLimit) {
554 bufferSizeAfterLimit = bufferEnd - currentLimit;
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 746 UChar* bufferEnd = buffer + length;
750 if (convertUTF8ToUTF16(&stringCurrent, stringStart + length, &buffer, bufferEnd) != conversionOK)
754 if (buffer == bufferEnd)
  /frameworks/av/media/libmedia/
AudioRecord.cpp 581 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
583 if (framesReq > bufferEnd - u) {
584 framesReq = bufferEnd - u;
AudioTrack.cpp 1030 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
1032 if (framesReq > bufferEnd - u) {
1033 framesReq = bufferEnd - u;
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
165 return BufferPtr == BufferEnd;
557 void cutOffLexing() { BufferPtr = BufferEnd; }
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 607 final int bufferEnd = totalBytesRetired + bufferSize;
608 if (bufferEnd > currentLimit) {
610 bufferSizeAfterLimit = bufferEnd - currentLimit;
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 113 const unsigned* bufferEnd = pixel + bufferSize;
114 while (pixel < bufferEnd)
  /external/llvm/lib/Support/
MemoryBuffer.cpp 52 BufferEnd = BufEnd;

Completed in 600 milliseconds

1 2