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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/third_party/lcms2-2.6/src/
cmserr.c 118 // realloc behaves the same way as malloc and allocates a new block of size bytes.
154 // Generic block duplication
298 // Generic block duplication
371 chunk ->Block = (cmsUInt8Number*) _cmsMalloc(ContextID, Initial);
372 if (chunk ->Block == NULL) {
416 if (chunk->Block != NULL) _cmsFree(sub ->ContextID, chunk->Block);
425 // Get a pointer to small memory block.
451 ptr = sub -> h ->Block + sub -> h ->Used;
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 77 // Fixed block information
80 // The number of instructions in a basic block and the CPU resources used by
83 /// Compute the resource usage in basic block MBB.
86 assert(MBB && "No basic block");
91 // Compute resource usage in the block.
169 // Compute resources from trace above. The top block is simple.
178 // Compute from the block above. A post-order traversal ensures the
202 // Compute resources for the current block.
214 // Compute from the block below. A post-order traversal ensures the
262 /// by this block and all blocks following it in its trace
    [all...]
ShrinkWrap.cpp 105 /// in this basic block.
109 /// in this basic block.
111 /// Hold the information of the basic block frequency.
117 /// Frequency of the Entry block.
123 /// Entry block.
258 MachineBasicBlock *FindIDom(MachineBasicBlock &Block, ListOfBBs BBs,
260 MachineBasicBlock *IDom = &Block;
278 DEBUG(dbgs() << "Found a block that is not reachable from Entry\n");
354 // from save block. If immediate dominator is not different, bail out.
414 // MI. Look for the proper basic block for those
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.cpp 1230 //status == 0 means "no block entries found"
1231 //status > 0 means "found at least one block entry"
1351 //status == 0 means "no block entries found"
    [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);
252 // Check if the second parameter is a block
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 1 //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
10 // This file implements the Statement and Block portions of the Parser
61 /// [C++] try-block
62 /// [MS] seh-try-block
281 // An __if_exists block is like a compound statement, but it doesn't create
285 case tok::kw_try: // C++ 15: try-block
403 // If a constant expression is followed by a colon inside a switch block,
419 /// seh-try-block:
423 /// seh-except-block
424 /// seh-finally-block
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 566 /// expressions in a block are enumerator-like expressions of that
641 // block to be that type.
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 199 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
201 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> ConstLinearPart;
205 Block<MatrixType,Dim,HDim> >::type AffinePart;
209 const Block<const MatrixType,Dim,HDim> >::type ConstAffinePart;
213 typedef Block<MatrixType,Dim,1,int(Mode)==(AffineCompact)> TranslationPart;
215 typedef const Block<ConstMatrixType,Dim,1,int(Mode)==(AffineCompact)> ConstTranslationPart;
316 // We need the block expression because the code is compiled for all
319 m_matrix.template block<Dim,Dim+1>(0,0) = other.matrix().template block<Dim,Dim+1>(0,0);
602 inline Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,Dim> linearExt(
    [all...]
Homogeneous.h 252 dst = Block<const LhsMatrixTypeNested,
291 dst = m_lhs * Block<const RhsNested,
  /external/eigen/Eigen/src/Core/
DenseBase.h 487 Block<Derived> corner(CornerType type, Index cRows, Index cCols);
488 const Block<Derived> corner(CornerType type, Index cRows, Index cCols) const;
490 Block<Derived, CRows, CCols> corner(CornerType type);
492 const Block<Derived, CRows, CCols> corner(CornerType type) const;
PermutationMatrix.h 586 // is_same_xpr<Block<const Matrix>, Block<Matrix> >::value should be true.
608 Block<Dest, Side==OnTheLeft ? 1 : Dest::RowsAtCompileTime, Side==OnTheRight ? 1 : Dest::ColsAtCompileTime>(dst, k)
609 .swap(Block<Dest, Side==OnTheLeft ? 1 : Dest::RowsAtCompileTime, Side==OnTheRight ? 1 : Dest::ColsAtCompileTime>
621 Block<Dest, Side==OnTheLeft ? 1 : Dest::RowsAtCompileTime, Side==OnTheRight ? 1 : Dest::ColsAtCompileTime>
626 Block<const MatrixTypeNestedCleaned,Side==OnTheLeft ? 1 : MatrixType::RowsAtCompileTime,Side==OnTheRight ? 1 : MatrixType::ColsAtCompileTime>
  /external/google-breakpad/src/common/dwarf/
cfi_assembler.h 164 // Append the contents of BLOCK as a DW_FORM_block value: an
166 CFISection &Block(const string &block) {
167 ULEB128(block.size());
168 Append(block);
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp 73 FACTORY_SYMTAG_CASE(Block, PDBSymbolBlock)
  /frameworks/base/tools/aapt2/proto/
ProtoHelpers.cpp 29 for (const BigBuffer::Block& block : buffer) {
30 data->insert(data->begin() + offset, block.buffer.get(), block.buffer.get() + block.size);
31 offset += block.size;
  /bionic/libc/kernel/tools/
cpp.py     [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 365 // create block count map: TODO: is the extra slot really needed?
451 if ($assert.ENABLED) $assert.ASSERT (m_classBlockCounts [m_methodID] > 0, "invalid block count for method " + m_methodID + ": " + m_classBlockCounts [m_methodID]);
452 if ($assert.ENABLED) $assert.ASSERT (m_methodBlockSizes != null && m_methodBlockSizes.length == m_classBlockCounts [m_methodID], "invalid block sizes map for method " + m_methodID);
556 final int instrMethodCount = m_classInstrMethodCount; // actual number of methods to instrument may be less than the size of the block map
559 "invalid block count map");
675 if ($assert.ENABLED) $assert.ASSERT (m_classBlockCounts [m_methodID] > 0, "invalid block count for method " + m_methodID + " (" + IClassDefConstants.CLINIT_NAME + "): " + m_classBlockCounts [m_methodID]);
676 if ($assert.ENABLED) $assert.ASSERT (m_methodBlockSizes != null && m_methodBlockSizes.length == m_classBlockCounts [m_methodID], "invalid block sizes map for method " + m_methodID);
735 // determine block leaders [an O(code length) loop]:
978 final Block block = new Block (); local
1038 final Block block = _blocks [l]; local
1087 final Block block = _blocks [l]; local
1137 final Block block = _blocks [l]; local
    [all...]
  /external/ceres-solver/internal/ceres/
small_blas.h 143 Eigen::Block<MatrixRef, kRowA, kColB>
144 block(Cref, start_row_c, start_col_c, num_row_a, num_col_b);
147 block.noalias() += Aref * Bref;
149 block.noalias() -= Aref * Bref;
151 block.noalias() = Aref * Bref;
203 Eigen::Block<MatrixRef, kColA, kColB> block(Cref,
207 block.noalias() += Aref.transpose() * Bref;
209 block.noalias() -= Aref.transpose() * Bref;
211 block.noalias() = Aref.transpose() * Bref
    [all...]
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 272 typedef Block<MatrixQR,Dynamic,Dynamic> BlockType;
291 Index bs = (std::min)(size-k,blockSize); // actual size of the block
293 Index brows = rows-k; // rows of the block
303 BlockType A11_21 = mat.block(k,k,brows,bs);
304 Block<HCoeffs,Dynamic,1> hCoeffsSegment = hCoeffs.segment(k,bs);
310 BlockType A21_22 = mat.block(k,k+bs,brows,tcols);
  /external/libvpx/libvpx/vp8/common/arm/armv6/
copymem8x4_v6.asm 17 AREA Block, CODE, READONLY ; name this block of code
copymem8x8_v6.asm 17 AREA Block, CODE, READONLY ; name this block of code
  /external/v8/test/webkit/
dfg-cfg-simplify-redundant-dead-get-local.js 25 "Tests if the CFG simplifier gracefully handles the case where Block #1 and #2 are merged, #1 has a dead GetLocal, and #2 has a live GetLocal on the same local."
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
copymem8x4_v6.asm 17 AREA Block, CODE, READONLY ; name this block of code
copymem8x8_v6.asm 17 AREA Block, CODE, READONLY ; name this block of code
  /external/elfutils/tests/
run-readelf-line.sh 205 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
222 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
235 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.cpp 1190 // status == 0 means "no block entries found"
1191 // status > 0 means "found at least one block entry"
1305 // status == 0 means "no block entries found"
1319 if (status == 0) // parsed a block
    [all...]

Completed in 922 milliseconds

1 2 3 4 5 6 7 8 91011>>