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

12 3 4

  /external/chromium_org/third_party/skia/third_party/ktx/
ktx.h 77 // This header captures all of the data that describes the format
79 struct Header {
93 Header() { memset(this, 0, sizeof(*this)); }
116 // The header will describe the format of this data.
  /external/clang/lib/CodeGen/
CGLoopInfo.h 56 /// \brief Construct a new LoopInfo for the loop with entry Header.
57 LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs);
62 /// \brief Get the header block of this loop.
63 llvm::BasicBlock *getHeader() const { return Header; }
71 /// \brief Header block of this loop.
72 llvm::BasicBlock *Header;
89 void push(llvm::BasicBlock *Header);
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 35 /* Create the header. */
36 uint64_t Header[PROFILE_HEADER_SIZE];
37 Header[0] = __llvm_profile_get_magic();
38 Header[1] = __llvm_profile_get_version();
39 Header[2] = DataSize;
40 Header[3] = CountersSize;
41 Header[4] = NamesSize;
42 Header[5] = (uintptr_t)CountersBegin;
43 Header[6] = (uintptr_t)NamesBegin;
48 CHECK_fwrite(Header, sizeof(uint64_t), PROFILE_HEADER_SIZE, File)
    [all...]
  /external/libvorbis/doc/
04-codec.tex 17 \subsection{Header decode and decode setup}
19 A Vorbis bitstream begins with three header packets. The header
20 packets are, in order, the identification header, the comments header,
21 and the setup header. All are required for decode compliance. An
22 end-of-packet condition during decoding the first or third header
24 comment header is a non-fatal error condition.
26 \subsubsection{Common header decode}
28 Each header packet begins with the same header fields
    [all...]
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 46 // BasicBlock that is the header node. This is the opposite of
95 // See file header for conditions of use
167 BasicBlock *Header = getNodeHeader(Node);
168 if (Visited.count(Header)) return false;
170 Interval *Int = new Interval(Header);
171 Visited.insert(Header); // The header has now been visited!
LoopInfoImpl.h 27 // APIs for simple analysis of the loop. See header notes.
101 /// loop has a preheader if there is only one edge to the header of the loop
103 /// header of the loop is the preheader node.
109 // Keep track of nodes outside the loop branching to the header...
124 /// getLoopPredecessor - If the given loop's header has exactly one unique
131 // Keep track of nodes outside the loop branching to the header...
134 // Loop over the predecessors of the header node...
135 BlockT *Header = getHeader();
138 InvBlockTraits::child_begin(Header),
139 PE = InvBlockTraits::child_end(Header); PI != PE; ++PI)
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 50 COFF::section Header;
59 COFF::symbol Header;
73 COFF::header Header;
149 struct MappingTraits<COFF::header> {
150 static void mapping(IO &IO, COFF::header &H);
ELFYAML.h 108 FileHeader Header;
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 68 // the loop header or the loop exit block.
148 BasicBlock *Header = L->getHeader();
150 Function *F = Header->getParent();
163 if (Header == *BB) {
170 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
270 BasicBlock *Header = L->getHeader();
274 BasicBlock *PEnd = SplitEdge(PH, Header, LPM->getAsPass());
303 Function *F = Header->getParent();
LoopUnroll.cpp 128 /// TripCount is generally defined as the number of times the loop header
168 BasicBlock *Header = L->getHeader();
178 if (Header->hasAddressTaken()) {
181 " Won't unroll loop: address of header block is taken.\n");
236 Function *F = Header->getParent();
240 DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
252 DEBUG(dbgs() << "UNROLLING loop %" << Header->getName()
274 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
280 Headers.push_back(Header);
299 Header->getParent()->getBasicBlockList().push_back(New)
    [all...]
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 23 void dumpHeader(const object::coff_file_header *Header);
40 const object::coff_file_header *Header;
41 check(Obj.getCOFFHeader(Header));
42 dumpHeader(Header);
43 dumpSections(Header->NumberOfSections);
44 dumpSymbols(Header->NumberOfSymbols);
47 void COFFDumper::dumpHeader(const object::coff_file_header *Header) {
48 YAMLObj.Header.Machine = Header->Machine;
49 YAMLObj.Header.Characteristics = Header->Characteristics
    [all...]
  /external/lldb/include/lldb/Core/
MappedHash.h 58 struct Header
70 Header () :
82 ~Header()
110 s.Printf ("header.magic = 0x%8.8x\n", magic);
111 s.Printf ("header.version = 0x%4.4x\n", version);
112 s.Printf ("header.hash_function = 0x%4.4x\n", hash_function);
113 s.Printf ("header.bucket_count = 0x%8.8x %u\n", bucket_count, bucket_count);
114 s.Printf ("header.hashes_count = 0x%8.8x %u\n", hashes_count, hashes_count);
115 s.Printf ("header.header_data_len = 0x%8.8x %u\n", header_data_len, header_data_len);
182 typedef Header<HeaderDataType> HeaderType
229 HeaderType header; local
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
HashedNameToDIE.h 138 eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that contains the item in question
403 struct Header : public MappedHash::Header<Prologue>
405 Header (dw_offset_t _die_base_offset = 0)
410 ~Header()
426 offset = MappedHash::Header<Prologue>::Read (data, offset);
584 class MemoryTable : public MappedHash::MemoryTable<uint32_t, DWARFMappedHash::Header, DIEInfoArray>
591 MappedHash::MemoryTable<uint32_t, Header, DIEInfoArray> (table_data),
    [all...]
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py 449 self.Header()
454 def Header(self): raise NotImplementedError # define in subclass
479 def Header(self):
  /external/chromium_org/ipc/
ipc_message.h 70 return static_cast<PriorityValue>(header()->flags & PRIORITY_MASK);
75 header()->flags |= SYNC_BIT;
78 return (header()->flags & SYNC_BIT) != 0;
83 header()->flags |= REPLY_BIT;
87 return (header()->flags & REPLY_BIT) != 0;
93 header()->flags |= REPLY_ERROR_BIT;
97 return (header()->flags & REPLY_ERROR_BIT) != 0;
105 header()->flags |= UNBLOCK_BIT;
107 header()->flags &= ~UNBLOCK_BIT;
112 return (header()->flags & UNBLOCK_BIT) != 0
241 Header* header() { function in class:IPC::Message
244 const Header* header() const { function in class:IPC::Message
    [all...]
  /external/chromium_org/mojo/system/
message_in_transit.h 35 // The main buffer consists of the header (of type |Header|, which is an
71 // Messages (the header and data) must always be aligned to a multiple of this
75 // Forward-declare |Header| so that |View| can use it:
77 struct Header;
101 // header data).
104 return RoundUpMessageAlignment(sizeof(Header) + header()->num_bytes);
114 size_t total_size() const { return header()->total_size; }
115 uint32_t num_bytes() const { return header()->num_bytes;
125 const Header* header() const { return static_cast<const Header*>(buffer_); } function in class:mojo::system::MessageInTransit::View
242 const Header* header() const { function in class:mojo::system::MessageInTransit
245 Header* header() { return reinterpret_cast<Header*>(main_buffer_.get()); } function in class:mojo::system::MessageInTransit
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_parse.h 40 struct tgsi_header Header;
144 struct tgsi_header header; local
145 memcpy(&header, tokens, sizeof(header));
146 return header.HeaderSize + header.BodySize;
  /external/chromium_org/third_party/python_gflags/
gflags2man.py 449 self.Header()
454 def Header(self): raise NotImplementedError # define in subclass
479 def Header(self):
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 16 /// header structure.
163 /// Access to the table header
165 internal StatsFileHeader Header {
275 data_offset += id * (Header.max_threads *
278 for (int cols = 0; cols < Header.max_threads; cols++)
425 Debug.Assert(table_.Header.max_counters > 0);
452 } while (index < table_.Header.max_counters - 1);
528 for (int index = 0; index < table_.Header.max_threads; index++) {
  /external/clang/lib/Frontend/
FrontendActions.cpp 148 SmallString<256> Header = HeaderName;
149 if (std::error_code Err = llvm::sys::fs::make_absolute(Header))
151 Includes += Header;
159 static std::error_code addHeaderInclude(const FileEntry *Header,
163 return addHeaderInclude(Header->getName(), Includes, LangOpts, IsExternC);
166 /// \brief Collect the set of header includes needed to construct the given
183 const FileEntry *Header = Module->NormalHeaders[I];
184 Module->addTopHeader(Header);
186 addHeaderInclude(Header, Includes, LangOpts, Module->IsExternC))
194 // Include the umbrella header for submodules
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 52 // An array of 'NumBuckets' HMapBucket objects follows this header.
75 /// HeaderMap::Create - This attempts to load the specified file as a header
80 // If the file is too small to be a header map, ignore it.
88 // We know the file is at least as big as the header, check it now.
89 const HMapHeader *Header = reinterpret_cast<const HMapHeader*>(FileStart);
94 if (Header->Magic == HMAP_HeaderMagicNumber &&
95 Header->Version == HMAP_HeaderVersion)
97 else if (Header->Magic == llvm::ByteSwap_32(HMAP_HeaderMagicNumber) &&
98 Header->Version == llvm::ByteSwap_16(HMAP_HeaderVersion))
101 return nullptr; // Not a header map
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 35 // | HEADER |
46 // where the header contains a magic number, version, type of hash function,
89 // Also written to disk is the implementation specific header data.
104 << "Header Data Length: " << header_data_len << "\n";
232 TableHeader Header;
  /external/llvm/lib/Object/
Archive.cpp 87 const ArchiveMemberHeader *Header =
89 Data = StringRef(Start, sizeof(ArchiveMemberHeader) + Header->getSize());
94 StringRef Name = Header->getName();
226 // of the filename that needs to be read after the archive header
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 37 DefaultRotationThreshold("rotation-max-header-size", cl::init(16), cl::Hidden,
38 cl::desc("The default maximum header size for automatic loop rotation"));
102 // Simplify the loop latch before attempting to rotate the header
123 /// old header into the preheader. If there were uses of the values produced by
148 // and the loop "next" value in the original header.
235 /// duplicating the entire loop header. In the cast of loops with early exits,
267 BasicBlock *Header = Jmp->getSuccessor(0);
268 assert(Header == L->getHeader() && "expected a backward branch");
271 BI->setSuccessor(FallThruPath, Header);
307 // If the loop header is not one of the loop exiting blocks the
    [all...]
LoopUnrollPass.cpp 327 BasicBlock *Header = L->getHeader();
328 DEBUG(dbgs() << "Loop Unroll: F[" << Header->getParent()->getName()
329 << "] Loop %" << Header->getName() << "\n");
434 Function *F = Header->getParent();

Completed in 1305 milliseconds

12 3 4