HomeSort by relevance Sort by last modified time
    Searched refs:InputBuffer (Results 1 - 25 of 47) sorted by null

1 2

  /external/llvm/unittests/Support/
StreamingMemoryObjectTest.cpp 58 uint8_t InputBuffer[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07};
60 reinterpret_cast<const char *>(InputBuffer), sizeof(InputBuffer))));
62 EXPECT_TRUE(std::equal(InputBuffer + 1, InputBuffer + 2, O.getPointer(1, 2)));
63 EXPECT_TRUE(std::equal(InputBuffer + 3, InputBuffer + 7, O.getPointer(3, 4)));
64 EXPECT_TRUE(std::equal(InputBuffer + 4, InputBuffer + 8, O.getPointer(4, 5)));
65 EXPECT_TRUE(std::equal(InputBuffer, InputBuffer + 8, O.getPointer(0, 20)))
    [all...]
  /external/llvm/lib/Support/
Compression.cpp 49 zlib::Status zlib::compress(StringRef InputBuffer,
52 unsigned long CompressedSize = ::compressBound(InputBuffer.size());
57 (const Bytef *)InputBuffer.data(), InputBuffer.size(), CLevel));
65 zlib::Status zlib::uncompress(StringRef InputBuffer,
71 (const Bytef *)InputBuffer.data(), InputBuffer.size()));
85 zlib::Status zlib::compress(StringRef InputBuffer,
90 zlib::Status zlib::uncompress(StringRef InputBuffer,
YAMLParser.cpp 525 MemoryBufferRef InputBuffer;
772 InputBuffer = Buffer;
773 Current = InputBuffer.getBufferStart();
774 End = InputBuffer.getBufferEnd();
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
ParseInf.c 30 IN OUT CHAR8 *InputBuffer,
47 InputBuffer Buffer to read into, must be _MAX_PATH size.
53 InputBuffer otherwise
64 assert (InputBuffer);
109 memcpy (InputBuffer, InputFile->CurrentFilePointer, CharsToCopy);
114 InputBuffer[CharsToCopy - 1] = '\0';
124 CharPtr = strstr (InputBuffer, "//");
131 return InputBuffer;
158 CHAR8 InputBuffer[_MAX_PATH];
181 ReadLine (InputFile, InputBuffer, _MAX_PATH);
    [all...]
ParseInf.h 44 IN OUT CHAR8 *InputBuffer,
62 InputBuffer Buffer to read into, must be _MAX_PATH size.
68 InputBuffer otherwise
218 IN OUT CHAR8 *InputBuffer
230 InputBuffer Buffer to read into, must be _MAX_PATH size.
235 InputBuffer otherwise
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
ParseInf.c 26 IN OUT CHAR8 *InputBuffer,
43 InputBuffer Buffer to read into, must be MaxLength size.
49 InputBuffer otherwise
60 assert (InputBuffer);
105 memcpy (InputBuffer, InputFile->CurrentFilePointer, CharsToCopy);
110 if (InputBuffer[CharsToCopy - 1] == '\r') {
112 InputBuffer[CharsToCopy - 1] = '\0';
116 InputBuffer[CharsToCopy] = '\0';
128 CharPtr = strstr (InputBuffer, "//");
135 return InputBuffer;
    [all...]
ParseInf.h 32 IN OUT CHAR8 *InputBuffer,
51 InputBuffer Buffer to read into, must be MaxLength size.
57 InputBuffer otherwise
175 IN OUT CHAR8 *InputBuffer
188 InputBuffer Buffer to read into, must be MAX_LONG_FILE_PATH size.
193 InputBuffer otherwise
  /external/llvm/include/llvm/Support/
Compression.h 43 Status compress(StringRef InputBuffer, SmallVectorImpl<char> &CompressedBuffer,
46 Status uncompress(StringRef InputBuffer,
YAMLParser.h 80 Stream(MemoryBufferRef InputBuffer, SourceMgr &, bool ShowColors = true);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 73 virtual bool loadObject(MemoryBuffer *InputBuffer) = 0;
94 virtual bool isCompatibleFormat(const MemoryBuffer *InputBuffer) const = 0;
138 bool loadObject(MemoryBuffer *InputBuffer);
142 static bool isKnownFormat(const MemoryBuffer *InputBuffer);
144 bool isCompatibleFormat(const MemoryBuffer *InputBuffer) const {
145 return isKnownFormat(InputBuffer);
RuntimeDyld.cpp 65 bool RuntimeDyld::loadObject(MemoryBuffer *InputBuffer) {
67 if (RuntimeDyldMachO::isKnownFormat(InputBuffer))
72 if(!Dyld->isCompatibleFormat(InputBuffer))
76 return Dyld->loadObject(InputBuffer);
RuntimeDyldMachO.cpp 403 bool RuntimeDyldMachO::loadObject(MemoryBuffer *InputBuffer) {
410 MachOObject::LoadFromBuffer(InputBuffer, &ErrorStr));
515 bool RuntimeDyldMachO::isKnownFormat(const MemoryBuffer *InputBuffer) {
516 StringRef Magic = InputBuffer->getBuffer().slice(0, 4);
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
RuntimeDyld.h 61 bool loadObject(MemoryBuffer *InputBuffer);
  /external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
llvm-rtdyld.cpp 95 OwningPtr<MemoryBuffer> InputBuffer;
97 InputBuffer))
101 if (Dyld.loadObject(InputBuffer.take())) {
  /external/tpm2/
TcpServer.c 23 char InputBuffer[MAX_BUFFER]; //The input data buffer for the simulator.
482 ok = ReadVarBytes(s, InputBuffer, &length, MAX_BUFFER);
484 InBuffer.Buffer = (BYTE*) InputBuffer;
492 ok = ReadVarBytes(s, InputBuffer, &length, MAX_BUFFER);
495 InBuffer.Buffer = (BYTE*) InputBuffer;
505 &InputBuffer[6], sizeof(UINT32));
  /frameworks/rs/rsov/compiler/spirit/
builder_test.cpp 59 auto InputBuffer = b.MakeVariable(StructPtrTy, StorageClass::Uniform);
60 InputBuffer->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
61 InputBuffer->decorate(Decoration::Binding)->addExtraOperand(2);
62 m->addVariable(InputBuffer);
147 auto Ptr = b.MakeAccessChain(VF4PtrTy, InputBuffer, {ConstZero, Index});
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 290 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
292 if (std::error_code EC = InputBuffer.getError())
296 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
420 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
422 if (std::error_code EC = InputBuffer.getError())
425 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
687 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
690 if (std::error_code EC = InputBuffer.getError())
694 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BluetoothConfig.h 338 @param InputBuffer A pointer to the buffer of data that is input from callback caller.
339 @param InputBufferSize Indicates the size, in bytes, of the data buffer specified by InputBuffer.
353 IN VOID *InputBuffer,
460 @param InputBuffer A pointer to the buffer of data that is input from callback caller.
461 @param InputBufferSize Indicates the size, in bytes, of the data buffer specified by InputBuffer.
473 IN VOID *InputBuffer,
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 378 OwningPtr<MemoryBuffer> InputBuffer;
379 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFile, InputBuffer))
384 MachOObject::LoadFromBuffer(InputBuffer.take(), &ErrorStr));
  /external/clang/include/clang/Lex/
Lexer.h 103 Lexer(FileID FID, const llvm::MemoryBuffer *InputBuffer, Preprocessor &PP);
114 Lexer(FileID FID, const llvm::MemoryBuffer *InputBuffer,
  /external/pdfium/third_party/lcms2-2.6/src/
cmsxform.c 176 const void* InputBuffer,
183 p -> xform(p, InputBuffer, OutputBuffer, Size, Size);
189 const void* InputBuffer,
196 p -> xform(p, InputBuffer, OutputBuffer, Size, Stride);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntpoapi.h 227 IN PVOID InputBuffer OPTIONAL,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntsecpkg.h 182 typedef NTSTATUS (NTAPI LSA_CALLBACK_FUNCTION)(ULONG_PTR Argument1,ULONG_PTR Argument2,PSecBuffer InputBuffer,PSecBuffer OutputBuffer);
313 typedef NTSTATUS (NTAPI LSA_MAP_BUFFER)(PSecBuffer InputBuffer,PSecBuffer OutputBuffer);
580 typedef NTSTATUS (NTAPI SpAcceptLsaModeContextFn)(LSA_SEC_HANDLE CredentialHandle,LSA_SEC_HANDLE ContextHandle,PSecBufferDesc InputBuffer,ULONG ContextRequirements,ULONG TargetDataRep,PLSA_SEC_HANDLE NewContextHandle,PSecBufferDesc OutputBuffer,PULONG ContextAttributes,PTimeStamp ExpirationTime,PBOOLEAN MappedContext,PSecBuffer ContextData);
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 372 std::unique_ptr<llvm::MemoryBuffer> InputBuffer =
375 // Ownership of InputBuffer will be transferred to the SourceManager.
376 setCurrentInput(FrontendInputFile(InputBuffer.release(), getCurrentFileKind(),
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 119 IN PVOID InputBuffer OPTIONAL,
135 IN PVOID InputBuffer OPTIONAL,

Completed in 553 milliseconds

1 2