HomeSort by relevance Sort by last modified time
    Searched defs:Block (Results 151 - 175 of 530) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Mtftp4/
Mtftp4.h 84 UINT16 Block;
90 UINT16 Block[1];
95 UINT64 Block;
101 UINT64 Block[1];
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Mtftp4.h 77 UINT16 Block;
83 UINT16 Block[1];
88 UINT64 Block;
94 UINT64 Block[1];
129 /// Data packet header with big block number.
133 /// Acknowledgement header with big block num.
Mtftp6.h 49 #define EFI_MTFTP6_OPCODE_DATA8 8 ///< The MTFTPv6 packet is a data packet with a big block number.
50 #define EFI_MTFTP6_OPCODE_ACK8 9 ///< The MTFTPv6 packet is an acknowledgement packet with a big block number.
134 /// Block number of this data packet.
136 UINT16 Block;
152 /// The block number of the data packet that is being acknowledged.
154 UINT16 Block[1];
166 /// The block number of data packet.
168 UINT64 Block;
184 /// The block number of the data packet that is being acknowledged.
186 UINT64 Block[1];
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
145 /// Inform the CoreEngine that a basic block was aborted because
147 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
148 blocksAborted.push_back(std::make_pair(block, node));
171 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
178 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
184 const CFGBlock *Block;
187 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
190 const CFGBlock *getBlock() const { return Block; }
192 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 339 // Block command ahead. We can't nest block commands, so pretend that this
369 // If there's a block command ahead, we will attach an empty paragraph to
385 BlockContentComment *Block = parseParagraphOrBlockCommand();
386 // Since we have checked for a block command, we should have parsed a
388 Paragraph = cast<ParagraphComment>(Block);
562 break; // Block content or EOF ahead, finish this parapgaph.
577 break; // Block command ahead, finish this parapgaph.
694 // Unterminated \\verbatim block
  /external/clang/lib/Analysis/
UninitializedValues.cpp 118 ValueVector &getValueVector(const CFGBlock *block) {
119 return vals[block->getBlockID()];
124 bool updateValueVectorWithScratch(const CFGBlock *block);
134 Value getValue(const CFGBlock *block, const CFGBlock *dstBlock,
138 return getValueVector(block)[idx.getValue()];
158 static void printVector(const CFGBlock *block, ValueVector &bv,
160 llvm::errs() << block->getBlockID() << " :";
181 bool CFGBlockValues::updateValueVectorWithScratch(const CFGBlock *block) {
182 ValueVector &dst = getValueVector(block);
187 printVector(block, scratch, 0)
493 const CFGBlock *block; member in class:__anon14890::TransferFunctions
917 const CFGBlock *block = *BI; local
    [all...]
  /external/libmojo/third_party/jinja2/
nodes.py 279 `else` block. If no else node exists it has to be an empty list.
311 class Block(Stmt):
312 """A node that represents a block."""
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 48 /// This is set to true if we don't care about the block/record name
49 /// information in the BlockInfo block. Only llvm-bcanalyzer uses this.
72 // Explicitly swap block info, so that nothing gets destroyed twice.
85 /// This is called by clients that want block/record name information.
90 // Block Manipulation
93 /// Return true if we've already read and processed the block info block for
98 /// If there is block info for the specified ID, return it, otherwise return
122 /// Takes block info from the other bitstream reader.
386 EndBlock, // We've reached the end of the current block, (or the end of th
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
MemorySSA.h 119 // \brief The base for all memory accesses. All memory accesses in a block are
136 BasicBlock *getBlock() const { return Block; }
165 : User(Type::getVoidTy(C), Vty, nullptr, NumOperands), Block(BB) {}
170 BasicBlock *Block;
325 /// only one phi will ever exist in a given basic block.
326 /// Guaranteeing one phi per block means guaranteeing there is only ever one
368 // Block iterator interface. This provides access to the list of incoming
406 /// \brief Return incoming basic block number @p i.
409 /// \brief Return incoming basic block corresponding
416 /// \brief Return incoming basic block correspondin
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 12 // The main functionality of this code is to compute block live-in
16 // The block live-in calculation is based on the ideas from the following
137 auto Block = [this] (NodeAddr<InstrNode*> IA) -> MachineBasicBlock* {
146 auto Less = [&Block,this] (NodeId A, NodeId B) -> bool {
150 MachineBasicBlock *BA = Block(OA), *BB = Block(OB);
153 // They are in the same block.
210 // of that use to the entry of the block.
527 // Populate the node-to-block map. This speeds up the calculations
579 dbgs() << "block #" << I.first->getNumber() << " ->
    [all...]
  /external/python/cpython2/Lib/compiler/
pyassem.py 13 self.current = self.entry = Block()
14 self.exit = Block("exit")
19 def startBlock(self, block):
26 print repr(block)
27 self.current = block
29 def nextBlock(self, block=None):
31 # from one block to the next. might be better to represent this
35 # I think this strategy works: each block has a child
38 # reverse post order, the "next" block will always be emitted
41 if block is None
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 77 // pred block number for certain non-trivial edges.
81 // block number.
162 // to the block.
191 // Represent a basic block in GCOV. Each block has a unique number in the
192 // function, number of lines belonging to each block, and a set of edges to
297 GCOVBlock &Block = *I->second;
298 if (Block.OutEdges.empty()) continue;
301 write(Block.OutEdges.size() * 2 + 1);
302 write(Block.Number)
    [all...]
  /external/valgrind/none/tests/amd64/
fma4.c 18 typedef struct { YMM r1; YMM r2; YMM r3; YMM r4; YMM m; } Block;
105 void showBlock ( char* msg, Block* block, int isDouble )
108 printf("r1: "); showYMM(&block->r1, isDouble); printf("\n");
109 printf("r2: "); showYMM(&block->r2, isDouble); printf("\n");
110 printf("r3: "); showYMM(&block->r3, isDouble); printf("\n");
111 printf("r4: "); showYMM(&block->r4, isDouble); printf("\n");
112 printf(" m: "); showYMM(&block->m, isDouble); printf("\n");
161 void specialFBlock ( Block* b )
165 for (i = 0; i < sizeof(Block) / sizeof(Float); i++
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
172 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
179 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
185 const CFGBlock *Block;
188 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
191 const CFGBlock *getBlock() const { return Block; }
193 /// \brief Returns the number of times the current basic block has bee
    [all...]

Completed in 667 milliseconds

1 2 3 4 5 67 8 91011>>