HomeSort by relevance Sort by last modified time
    Searched defs:Contents (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /external/swiftshader/third_party/subzero/src/
IceAssembler.h 123 memcpy(&Value, reinterpret_cast<void *>(Contents + Position), sizeof(T));
130 memcpy(reinterpret_cast<void *>(Contents + Position), &Value, sizeof(T));
138 intptr_t size() const { return Cursor - Contents; }
139 uintptr_t contents() const { return Contents; } function in class:Ice::AssemblerBuffer
178 intptr_t getPosition() const { return Cursor - Contents; }
202 Cursor = Contents + NewSize;
211 uintptr_t Contents;
225 assert(Limit >= Contents);
226 return (Limit - Contents) + kMinimumGap
    [all...]
IceGlobalInits.h 268 return llvm::StringRef(Contents, ContentsSize);
281 // implementation-specific details. Given that Contents is arena
285 Contents(new (VDL->allocate_initializer<char>(ContentsSize)) char) {
287 Contents[I] = static_cast<int8_t>(Values[I]);
293 Contents(new (VDL->allocate_initializer<char>(ContentsSize)) char) {
295 Contents[i] = Str[i];
298 /// The byte contents of the data initializer.
300 DataVecType Contents;
  /external/tensorflow/tensorflow/core/lib/gtl/
flatmap_test.cc 46 // Return contents of map as a sorted list of pairs.
48 NumMapContents Contents(const NumMap& map) {
208 EXPECT_EQ(Contents(map), NumMapContents());
212 EXPECT_EQ(Contents(map), NumMapContents({{1, 100}, {2, 200}}));
224 EXPECT_EQ(Contents(map), NumMapContents({{2, 200}}));
226 EXPECT_EQ(Contents(map), NumMapContents());
238 EXPECT_EQ(Contents(map), NumMapContents());
253 EXPECT_EQ(Contents(map), Contents(expected));
301 EXPECT_EQ(Contents(map), NumMapContents())
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 367 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
371 Contents(std::move(Other.Contents)),
377 Contents = std::move(Other.Contents);
387 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get());
401 std::unique_ptr<char[]> Contents;
  /external/llvm/include/llvm/MC/
MCFragment.h 170 SmallVector<char, ContentsSize> Contents;
179 SmallVectorImpl<char> &getContents() { return Contents; }
180 const SmallVectorImpl<char> &getContents() const { return Contents; }
379 SmallString<8> Contents;
384 Contents.push_back(0);
394 SmallString<8> &getContents() { return Contents; }
395 const SmallString<8> &getContents() const { return Contents; }
414 SmallString<8> Contents;
421 Contents.push_back(0);
431 SmallString<8> &getContents() { return Contents; }
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 569 // Check that contents are only things legal inside a virtual section.
574 // Check that we aren't trying to write a non-zero contents (or fixups)
576 // directives to fill the contents of virtual sections.
693 MutableArrayRef<char> Contents;
696 Contents = FragWithFixups->getContents();
699 Contents = FragWithFixups->getContents();
702 Contents = FragWithFixups->getContents();
709 getBackend().applyFixup(Fixup, Contents.data(),
710 Contents.size(), FixedValue, IsPCRel);
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 415 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(EHT);
416 if (!Contents)
443 *reinterpret_cast<const support::ulittle32_t *>(Contents->data() + TableEntryOffset);
453 PrintOpcodes(Contents->data() + TableEntryOffset, 3, 1);
458 PrintOpcodes(Contents->data() + TableEntryOffset, 2 + 4 * AdditionalWords,
482 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(IT);
483 if (!Contents)
497 reinterpret_cast<const support::ulittle32_t *>(Contents->data());
530 PrintOpcodes(Contents->data() + Entry * IndexTableEntrySize + 4, 3, 1);
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineOperand.h 114 /// SmallContents - This really should be part of the Contents union, but
120 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
127 /// Contents union - This contains the payload for the various operand types.
154 } Contents;
284 return Contents.Reg.Next;
362 return Contents.ImmVal;
367 return Contents.CI;
372 return Contents.CFP;
377 return Contents.MBB;
383 return Contents.OffsetedInfo.Val.Index
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAssembler.cpp 502 // Check that contents are only things legal inside a virtual section.
509 // Check that we aren't trying to write a non-zero contents (or fixups)
511 // directives to fill the contents of virtual sections.
870 OS << " Contents:[";
871 const SmallVectorImpl<char> &Contents = DF->getContents();
872 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
876 OS << "] (" << Contents.size() << " bytes)";
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 145 /// SmallContents - This really should be part of the Contents union, but
151 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
158 /// Contents union - This contains the payload for the various operand types.
189 } Contents;
423 return Contents.ImmVal;
428 return Contents.CI;
433 return Contents.CFP;
438 return Contents.MBB;
444 return Contents.OffsetedInfo.Val.Index;
449 return Contents.OffsetedInfo.Val.GV
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 343 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
355 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get());
369 std::unique_ptr<char[]> Contents;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCFragment.h 172 SmallVector<char, ContentsSize> Contents;
181 SmallVectorImpl<char> &getContents() { return Contents; }
182 const SmallVectorImpl<char> &getContents() const { return Contents; }
383 SmallString<8> Contents;
388 Contents.push_back(0);
398 SmallString<8> &getContents() { return Contents; }
399 const SmallString<8> &getContents() const { return Contents; }
417 SmallString<8> Contents;
424 Contents.push_back(0);
434 SmallString<8> &getContents() { return Contents; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineOperand.h 144 /// SmallContents - This really should be part of the Contents union, but
150 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
157 /// Contents union - This contains the payload for the various operand types.
188 } Contents;
422 return Contents.ImmVal;
427 return Contents.CI;
432 return Contents.CFP;
437 return Contents.MBB;
443 return Contents.OffsetedInfo.Val.Index;
448 return Contents.OffsetedInfo.Val.GV
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 342 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
354 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get());
368 std::unique_ptr<char[]> Contents;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCFragment.h 172 SmallVector<char, ContentsSize> Contents;
181 SmallVectorImpl<char> &getContents() { return Contents; }
182 const SmallVectorImpl<char> &getContents() const { return Contents; }
383 SmallString<8> Contents;
388 Contents.push_back(0);
398 SmallString<8> &getContents() { return Contents; }
399 const SmallString<8> &getContents() const { return Contents; }
417 SmallString<8> Contents;
424 Contents.push_back(0);
434 SmallString<8> &getContents() { return Contents; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
MachineOperand.h 144 /// SmallContents - This really should be part of the Contents union, but
150 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
157 /// Contents union - This contains the payload for the various operand types.
188 } Contents;
422 return Contents.ImmVal;
427 return Contents.CI;
432 return Contents.CFP;
437 return Contents.MBB;
443 return Contents.OffsetedInfo.Val.Index;
448 return Contents.OffsetedInfo.Val.GV
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 342 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
354 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get());
368 std::unique_ptr<char[]> Contents;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCFragment.h 172 SmallVector<char, ContentsSize> Contents;
181 SmallVectorImpl<char> &getContents() { return Contents; }
182 const SmallVectorImpl<char> &getContents() const { return Contents; }
383 SmallString<8> Contents;
388 Contents.push_back(0);
398 SmallString<8> &getContents() { return Contents; }
399 const SmallString<8> &getContents() const { return Contents; }
417 SmallString<8> Contents;
424 Contents.push_back(0);
434 SmallString<8> &getContents() { return Contents; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
MachineOperand.h 146 /// SmallContents - This really should be part of the Contents union, but
152 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
159 /// Contents union - This contains the payload for the various operand types.
190 } Contents;
424 return Contents.ImmVal;
429 return Contents.CI;
434 return Contents.CFP;
439 return Contents.MBB;
445 return Contents.OffsetedInfo.Val.Index;
450 return Contents.OffsetedInfo.Val.GV
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 218 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
230 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get());
244 std::unique_ptr<char[]> Contents;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCFragment.h 172 SmallVector<char, ContentsSize> Contents;
181 SmallVectorImpl<char> &getContents() { return Contents; }
182 const SmallVectorImpl<char> &getContents() const { return Contents; }
383 SmallString<8> Contents;
388 Contents.push_back(0);
398 SmallString<8> &getContents() { return Contents; }
399 const SmallString<8> &getContents() const { return Contents; }
417 SmallString<8> Contents;
424 Contents.push_back(0);
434 SmallString<8> &getContents() { return Contents; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
MachineOperand.h 146 /// SmallContents - This really should be part of the Contents union, but
152 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
159 /// Contents union - This contains the payload for the various operand types.
190 } Contents;
424 return Contents.ImmVal;
429 return Contents.CI;
434 return Contents.CFP;
439 return Contents.MBB;
445 return Contents.OffsetedInfo.Val.Index;
450 return Contents.OffsetedInfo.Val.GV
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 218 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
230 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get());
244 std::unique_ptr<char[]> Contents;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
MCFragment.h 172 SmallVector<char, ContentsSize> Contents;
181 SmallVectorImpl<char> &getContents() { return Contents; }
182 const SmallVectorImpl<char> &getContents() const { return Contents; }
383 SmallString<8> Contents;
388 Contents.push_back(0);
398 SmallString<8> &getContents() { return Contents; }
399 const SmallString<8> &getContents() const { return Contents; }
417 SmallString<8> Contents;
424 Contents.push_back(0);
434 SmallString<8> &getContents() { return Contents; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
MachineOperand.h 146 /// SmallContents - This really should be part of the Contents union, but
152 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
159 /// Contents union - This contains the payload for the various operand types.
190 } Contents;
424 return Contents.ImmVal;
429 return Contents.CI;
434 return Contents.CFP;
439 return Contents.MBB;
445 return Contents.OffsetedInfo.Val.Index;
450 return Contents.OffsetedInfo.Val.GV
    [all...]

Completed in 1536 milliseconds

12 3 4 5