HomeSort by relevance Sort by last modified time
    Searched refs:Block (Results 76 - 100 of 648) sorted by null

1 2 34 5 6 7 8 91011>>

  /system/update_engine/payload_generator/
inplace_generator.h 54 // Represents a disk block on the install partition.
55 struct Block {
56 // During install, each block on the install partition will be written
60 // A Block object tells which vertex will read or write this block
62 // Generally, there will be a vector of Block objects whose length
64 Block() : reader(Vertex::kInvalidIndex), writer(Vertex::kInvalidIndex) {}
97 // Creates all the edges for the graph. Writers of a block point to
98 // readers of the same block. This is because for an edge A->B, B
101 const std::vector<Block>& blocks)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.hpp 77 class Block
79 Block(const Block&);
80 Block& operator=(const Block&);
86 Block(long long start, long long size);
87 ~Block();
138 virtual const Block* GetBlock() const = 0;
160 const Block* GetBlock() const;
163 Block m_block;
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 57 static SourceLocation getFirstStmtLoc(const CFGBlock *Block) {
58 // Find the source location of the first statement in the block, if the block
60 for (const auto &B : *Block)
64 // Block is empty.
65 // If we have one successor, return the first statement in that block
66 if (Block->succ_size() == 1 && *Block->succ_begin())
67 return getFirstStmtLoc(*Block->succ_begin());
72 static SourceLocation getLastStmtLoc(const CFGBlock *Block) {
    [all...]
  /external/valgrind/memcheck/tests/
big_blocks_freed_list.stderr.exp 4 Address 0x........ is 1,000 bytes inside a block of size 1,000,015 free'd
7 Block was alloc'd at
13 Address 0x........ is 1,000 bytes inside a block of size 900,000 free'd
16 Block was alloc'd at
22 Address 0x........ is 2,000 bytes inside an unallocated block of size 1,000,016 in arena "client"
26 Address 0x........ is 2,000 bytes inside a block of size 900,000 free'd
29 Block was alloc'd at
35 Address 0x........ is 10 bytes inside a block of size 10,000 free'd
38 Block was alloc'd at
44 Address 0x........ is 10 bytes inside a block of size 1,000,015 free'
    [all...]
err_disable3.stderr.exp 15 Address 0x........ is 5 bytes inside a block of size 10 free'd
18 Block was alloc'd at
35 Address 0x........ is 5 bytes inside a block of size 10 free'd
38 Block was alloc'd at
noisy_child.stderr.exp 4 Address 0x........ is 5 bytes inside a block of size 10 free'd
7 Block was alloc'd at
14 Address 0x........ is 0 bytes after a block of size 10 free'd
17 Block was alloc'd at
memalign_test.stderr.exp 4 Address 0x........ is 0 bytes inside a block of size 111,110 free'd
7 Block was alloc'd at
  /external/clang/test/PCH/
types.c 29 void test_block_ptr(Block *bl) {
  /external/compiler-rt/test/BlocksRuntime/
byrefsanity.c 13 #include <Block.h>
copyconstructor.C 8 #include <Block.h>
recursive-block.c 8 #include <Block.h>
36 //printf("will call inner block %p\n", (void *)inner);
47 voidVoid block = testFunction(); local
49 block();
50 Block_release(block);
recursive-test.c 12 #include <Block.h>
22 if (verbose) printf("recursive_local_block is a local recursive block\n");
33 if (verbose) printf("Creating other_local_block: a local block that calls recursive_local_block\n");
45 if (verbose) printf("Creating other_copied_block: a Block_copy of a block that will call recursive_local_block\n");
59 if (verbose) printf("Creating recursive_copy_block: a Block_copy of a block that will call recursive_copy_block recursively\n");
reference.C 7 #import <Block.h>
93 printf("%s: *** didn't recover byref block variable\n", argv[0]);
  /external/eigen/Eigen/src/Eigen2Support/
QR.h 22 typedef Block<const MatrixType, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime> MatrixRBlockType;
  /external/eigen/Eigen/src/Core/
BandMatrix.h 68 inline Block<CoefficientsType,Dynamic,1> col(Index i)
80 return Block<CoefficientsType,Dynamic,1>(coeffs(), start, i, len, 1);
84 inline Block<CoefficientsType,1,SizeAtCompileTime> diagonal()
85 { return Block<CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols())); }
88 inline const Block<const CoefficientsType,1,SizeAtCompileTime> diagonal() const
89 { return Block<const CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols())); }
102 typedef Block<CoefficientsType,1, DiagonalSize> BuildType;
121 inline Block<CoefficientsType,1,Dynamic> diagonal(Index i)
124 return Block<CoefficientsType,1,Dynamic>(coeffs(), supers()-i, std::max<Index>(0,i), 1, diagonalLength(i));
128 inline const Block<const CoefficientsType,1,Dynamic> diagonal(Index i) cons
    [all...]
Block.h 16 /** \class Block
19 * \brief Expression of a fixed-size or dynamic-size block
21 * \param XprType the type of the expression in which we are taking a block
22 * \param BlockRows the number of rows of the block we are taking at compile time (optional)
23 * \param BlockCols the number of columns of the block we are taking at compile time (optional)
25 * This class represents an expression of either a fixed-size or dynamic-size block. It is the return
26 * type of DenseBase::block(Index,Index,Index,Index) and DenseBase::block<int,int>(Index,Index) and
29 * However, if you want to directly maniputate block expressions,
45 * \sa DenseBase::block(Index,Index,Index,Index), DenseBase::block(Index,Index), class VectorBloc
    [all...]
  /external/llvm/include/llvm/Support/
Memory.h 24 /// This class encapsulates the notion of a memory block which has an address
28 /// @brief Memory block abstraction.
54 /// This method allocates a block of memory that is suitable for loading
58 /// an attempt is made to allocate more memory near the existing block.
61 /// \p Flags is used to set the initial protection flags for the block
69 /// The start of the allocated block must be aligned with the
83 /// This method releases a block of memory that was allocated with the
85 /// memory block allocated any other way.
86 /// \p Block describes the memory to be released.
92 static std::error_code releaseMappedMemory(MemoryBlock &Block);
    [all...]
  /system/bt/embdrv/sbc/decoder/include/
oi_string.h 59 #define OI_MemSet(block, val, size) memset((block), (val), (size))
60 #define OI_MemZero(block, size) memset((block), 0, (size))
83 * Sets all bytes in a block of memory to the same value
85 void OI_MemSet(void *Block, OI_UINT8 Val, OI_UINT32 Size);
91 * Sets all bytes in a block of memory to zero
93 void OI_MemZero(void *Block, OI_UINT32 Size);
  /external/libweave/src/
access_black_list_manager_impl_unittest.cc 68 TEST_F(AccessBlackListManagerImplTest, Block) {
85 manager_->Block({7, 7, 7}, {8, 8, 8}, base::Time::FromTimeT(1419990000), {});
89 manager_->Block({}, {}, base::Time::FromTimeT(1400000000),
103 manager_->Block(
108 manager_->Block({99}, {8, 8, 8}, base::Time::FromTimeT(1419990000),
148 manager_->Block(std::get<0>(GetParam()), std::get<1>(GetParam()),
  /external/clang/include/clang/Analysis/
AnalysisContext.h 212 enum ContextKind { StackFrame, Scope, Block };
278 // The parent block of the callsite.
279 const CFGBlock *Block;
289 Block(blk), Index(idx) {}
296 const CFGBlock *getCallSiteBlock() const { return Block; }
352 : LocationContext(Block, ctx, parent), BD(bd), ContextData(contextData) {}
366 ProfileCommon(ID, Block, ctx, parent, bd);
371 return Ctx->getKind() == Block;
  /external/valgrind/memcheck/
mc_errors.c 152 // Program tried to free() something that's not a heap block (this
158 // Program allocates heap block with one function
166 Addr src; // Source block
167 Addr dst; // Destination block
845 ai->Addr.Block.block_kind = Block_Mallocd; // Nb: Not 'Block_Freed'
846 ai->Addr.Block.block_desc = "block";
847 ai->Addr.Block.block_szB = mc->szB;
848 ai->Addr.Block.rwoffset = 0;
849 ai->Addr.Block.allocated_at = MC_(allocated_at) (mc)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 174 "Entry block must be empty.");
177 "Entry block must have 1 successor.");
179 // Mark the entry block as visited.
191 // Set the current block counter to being empty.
217 // Set the current block counter.
289 // Mark this block as visited.
295 // Check if we are entering the EXIT block.
299 && "EXIT block cannot contain Stmts.");
326 // Increment the block counter.
334 // Process the entrance of the block
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.hpp 73 class Block {
74 Block(const Block&);
75 Block& operator=(const Block&);
81 Block(long long start, long long size, long long discard_padding);
82 ~Block();
134 virtual const Block* GetBlock() const = 0;
153 const Block* GetBlock() const;
156 Block m_block
    [all...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.h 71 class Block {
72 Block(const Block&);
73 Block& operator=(const Block&);
79 Block(long long start, long long size, long long discard_padding);
80 ~Block();
132 virtual const Block* GetBlock() const = 0;
151 const Block* GetBlock() const;
154 Block m_block
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvparser.hpp 77 class Block
79 Block(const Block&);
80 Block& operator=(const Block&);
86 Block(long long start, long long size, long long discard_padding);
87 ~Block();
142 virtual const Block* GetBlock() const = 0;
164 const Block* GetBlock() const;
167 Block m_block
    [all...]

Completed in 697 milliseconds

1 2 34 5 6 7 8 91011>>