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

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 40 support::ulittle32_t BlockSize; // Code size of block, in bytes.
100 struct Block {
101 Block(uint32_t ChecksumBufferOffset)
138 std::vector<Block> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 40 support::ulittle32_t BlockSize; // Code size of block, in bytes.
100 struct Block {
101 Block(uint32_t ChecksumBufferOffset)
138 std::vector<Block> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 46 support::ulittle32_t BlockSize; // Code size of block, in bytes.
107 struct Block {
108 Block(uint32_t ChecksumBufferOffset)
144 std::vector<Block> Blocks;
  /prebuilts/go/darwin-x86/src/cmd/cover/
cover.go 143 // Block represents the information about a basic block to be recorded in the analysis.
144 // Note: Our definition of basic block is based on control structures; we don't break
146 type Block struct {
158 blocks []Block
203 // If it's a switch or select, the body is a list of case clauses; don't tag the block itself.
235 // so we add a hidden block:
250 block := &ast.BlockStmt{
251 Lbrace: n.Body.End(), // Start at end of the "if" block so the covered part looks like it starts at the "else".
255 n.Else = block
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cover/
cover.go 143 // Block represents the information about a basic block to be recorded in the analysis.
144 // Note: Our definition of basic block is based on control structures; we don't break
146 type Block struct {
158 blocks []Block
203 // If it's a switch or select, the body is a list of case clauses; don't tag the block itself.
235 // so we add a hidden block:
250 block := &ast.BlockStmt{
251 Lbrace: n.Body.End(), // Start at end of the "if" block so the covered part looks like it starts at the "else".
255 n.Else = block
    [all...]
  /frameworks/rs/rsov/compiler/spirit/
module.h 466 class Block : public Entity {
468 Block() {}
469 Block(Builder *b) : Entity(b) {}
471 virtual ~Block() {}
481 Block *addInstruction(Instruction *inst) {
505 for (auto block : mBlocks) {
506 v->visit(block);
511 FunctionDefinition *addBlock(Block *b) {
524 std::vector<Block *> mBlocks;
528 ContainerDeleter<std::vector<Block *>> mBlocksDeleter
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
spvIR.h 41 // - Block, which is a list of
60 class Block;
91 Instruction(Id resultId, Id typeId, Op opCode) : resultId(resultId), typeId(typeId), opCode(opCode), block(nullptr) { }
92 explicit Instruction(Op opCode) : resultId(NoResult), typeId(NoType), opCode(opCode), block(nullptr) { }
122 void setBlock(Block* b) { block = b; }
123 Block* getBlock() const { return block; }
160 Block* block; member in class:spv::Instruction
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
UsbHcMem.c 21 Allocate a block of memory to be used by the buffer pool.
26 @return The allocated memory block or NULL if failed.
35 USBHC_MEM_BLOCK *Block;
45 Block = AllocateZeroPool (sizeof (USBHC_MEM_BLOCK));
46 if (Block == NULL) {
52 // bytes of memory in the memory block.
56 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
57 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
58 Block->Bits = AllocateZeroPool (Block->BitsLen);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.c 530 if (EntityData->Block != NULL) {
531 FreePool (EntityData->Block);
693 // The caller doesn't provide a buffer, save the block into cache list.
701 NewEntityData->Block = CallbackData->Block;
702 CallbackData->Block = NULL;
756 UINT8 *Block;
957 Context.Block = NULL;
978 Block = NULL;
1023 Block = NULL;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Support.c 20 Allocate a MTFTP block range, then init it to the range of [Start, End].
22 @param[in] Start The start block number.
23 @param[in] End The last block number in the range.
25 @return Range The range of the allocated block buffer.
52 Initialize the block range for either RRQ or WRQ. RRQ and WRQ have
54 WRQ initializes its whole valid block range to [0, 0xffff]. This
57 get the next block number, which is 1, then upload the BLOCK1. For RRQ
60 remove it from the block range and send an ACK. It also works if there
63 @param[in] Head The block range head to initialize.
64 @param[in] Start The Start block number.
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 49 Block block; field in class:SerializedGrammar.Rule
50 public Rule(String name, Block block) {
52 this.block = block;
55 return name+":"+block;
59 class Block {
61 public Block(List[] alts) {
127 Block b = readBlock(in)
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 30 // Is it a block pointer?
35 // Check if the block pointer type takes no arguments and
186 // Check if the second parameter is the proper block type.
187 const ParmVarDecl *Block = D->getParamDecl(1);
188 QualType Ty = Block->getType();
193 // sets it, and calls the block. Basically, an AST dump of:
195 // void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) {
198 // block();
205 DeclRefExpr *DR = M.makeDeclRefExpr(Block);
253 // Check if the second parameter is a block
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.h 120 void setCachedLandingPad(llvm::BasicBlock *block) {
121 CachedLandingPad = block;
128 void setCachedEHDispatchBlock(llvm::BasicBlock *block) {
129 CachedEHDispatchBlock = block;
133 if (llvm::BasicBlock *block = getCachedEHDispatchBlock())
134 return !block->use_empty();
161 llvm::BasicBlock *Block;
193 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) {
194 setHandler(I, CatchTypeInfo{nullptr, 0}, Block);
197 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) {
    [all...]
CGObjCRuntime.cpp 151 llvm::BasicBlock *Block;
200 Handler.Block = CGF.createBasicBlock("catch");
214 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
231 CGF.EmitBlock(Handler.Block);
  /external/eigen/Eigen/src/Core/
Block.h 18 struct traits<Block<XprType, BlockRows, BlockCols, InnerPanel> > : traits<XprType>
69 /** \class Block
72 * \brief Expression of a fixed-size or dynamic-size block
74 * \tparam XprType the type of the expression in which we are taking a block
75 * \tparam BlockRows the number of rows of the block we are taking at compile time (optional)
76 * \tparam BlockCols the number of columns of the block we are taking at compile time (optional)
77 * \tparam InnerPanel is true, if the block maps to a set of rows of a row major matrix or
79 * at compile time whether aligned access is possible on the block expression.
81 * This class represents an expression of either a fixed-size or dynamic-size block. It is the return
82 * type of DenseBase::block(Index,Index,Index,Index) and DenseBase::block<int,int>(Index,Index) an
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 93 AssertingVH<BasicBlock> Block;
103 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
114 Builder.restoreIP(IRBuilderBase::InsertPoint(Block, Point));
196 /// block.
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 38 /// current block, in bits.
42 /// selected BLOCK ID.
45 /// CurAbbrevs - Abbrevs installed at in this block.
48 struct Block {
52 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {}
56 std::vector<Block> BlockScope;
90 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
187 // Block Manipulation
190 /// getBlockInfo - If there is block info for the specified ID, return it,
205 // Block header
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 40 // (1) Work out the address that each block would have if no branches
44 // (2) Work out the address that each block would have if all branches
47 // (3) Walk through the block calculating the final address of each instruction
49 // this check uses the final address of the target block, as calculated
51 // address of the target block that was calculated in (2). Both checks
73 // Represents positional information about a basic block.
75 // The address that we currently assume the block has.
78 // The size of the block in bytes, excluding terminators.
82 // The minimum alignment of the block, as a log2 value.
86 // The number of terminators in this block. This value never changes
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFixIrreducibleControlFlow.cpp 81 /// loop as a monolithic conceptual block.
83 MachineBasicBlock *Block;
89 : Block(MBB), Preds(MBB->pred_begin(), MBB->pred_end()),
92 explicit MetaBlock(MachineLoop *Loop) : Block(Loop->getHeader()) {
94 for (MachineBasicBlock *Pred : Block->predecessors())
99 MachineBasicBlock *getBlock() const { return Block; }
108 bool operator==(const MetaBlock &MBB) { return Block == MBB.Block; }
109 bool operator!=(const MetaBlock &MBB) { return Block != MBB.Block; }
    [all...]

Completed in 489 milliseconds

1 23 4 5 6 7 8 91011>>