HomeSort by relevance Sort by last modified time
    Searched defs:BufferEnd (Results 1 - 16 of 16) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/BinaryFormat/
MachOTest.cpp 37 unsigned char *BufferEnd =
39 while (Current < BufferEnd) {
  /external/llvm/include/llvm/Support/
MemoryBuffer.h 38 const char *BufferEnd; // End of the buffer.
50 const char *getBufferEnd() const { return BufferEnd; }
51 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /external/swiftshader/third_party/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/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MemoryBuffer.h 42 const char *BufferEnd; // End of the buffer.
56 const char *getBufferEnd() const { return BufferEnd; }
57 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
MemoryBuffer.h 44 const char *BufferEnd; // End of the buffer.
61 const char *getBufferEnd() const { return BufferEnd; }
62 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineCodeEmitter.h 43 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
47 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
53 /// BufferBegin/BufferEnd - Pointers to the start and end of the memory
55 uint8_t *BufferBegin, *BufferEnd;
57 /// code. This is guaranteed to be in the range [BufferBegin,BufferEnd]. If
58 /// this pointer is at BufferEnd, it will never move due to code emission, and
83 if (CurBufferPtr != BufferEnd)
91 if (4 <= BufferEnd-CurBufferPtr) {
94 CurBufferPtr = BufferEnd;
113 if (4 <= BufferEnd-CurBufferPtr)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
ParseUpdateProfile.c 810 CHAR8 *BufferEnd;
818 BufferEnd = (CHAR8 *) ( (UINTN) DataBuffer + BufferSize);
828 while (CurrentPtr < BufferEnd) {
830 SourceLength = (UINTN)BufferEnd - (UINTN)CurrentPtr;
  /device/linaro/bootloader/edk2/SignedCapsulePkg/Library/IniParsingLib/
IniParsingLib.c 1027 CHAR8 *BufferEnd;
1035 BufferEnd = (CHAR8 *) ( (UINTN) DataBuffer + BufferSize);
1045 while (CurrentPtr < BufferEnd) {
1047 SourceLength = (UINTN)BufferEnd - (UINTN)CurrentPtr;
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
159 return BufferPtr == BufferEnd;
203 return StringRef(BufferStart, BufferEnd - BufferStart);
642 void cutOffLexing() { BufferPtr = BufferEnd; }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrFormPkg.cpp 107 CHAR8 *BufferEnd;
122 BufferEnd = BufferStart + BufferSize;
126 Node->mBufferEnd = BufferEnd;
  /external/clang/include/clang/AST/
CommentLexer.h 236 const char *const BufferEnd;
242 /// to newline or BufferEnd, for C comments points to star in '*/'.
305 assert(Loc >= BufferStart && Loc <= BufferEnd &&
349 const char *BufferStart, const char *BufferEnd);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrForm.c 802 UINT8 *BufferEnd;
828 BufferEnd = Buffer + Length;
837 while (Buffer < BufferEnd) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
HiiPack.c     [all...]
  /external/clang/lib/AST/
CommentParser.cpp 45 const char *BufferEnd;
63 Pos.BufferEnd = Tok.getText().end();
75 assert(Pos.BufferPtr != Pos.BufferEnd);
81 assert(Pos.BufferPtr != Pos.BufferEnd);
83 if (Pos.BufferPtr == Pos.BufferEnd) {
242 Pos.BufferPtr, Pos.BufferEnd - Pos.BufferPtr,
244 Pos.BufferEnd - Pos.BufferPtr));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSymbol.c     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrFormPkg.cpp 103 CHAR8 *BufferEnd;
119 BufferEnd = BufferStart + BufferSize;
123 Node->mBufferEnd = BufferEnd;
    [all...]

Completed in 490 milliseconds