Home
last modified time | relevance | path

Searched refs:block_end (Results 1 – 25 of 34) sorted by relevance

12

/external/openfst/src/extensions/ngram/
Dbitmap-index.cc138 uint32 block_end = block_begin + kSecondaryBlockSize; in BuildIndex() local
139 if (block_end > ArraySize()) block_end = ArraySize(); in BuildIndex()
140 for (uint32 j = block_begin; j < block_end; ++j) { in BuildIndex()
155 size_t block_end = block_begin + kSecondaryBlockSize; in find_secondary_block() local
156 if (block_end > secondary_index_.size()) block_end = secondary_index_.size(); in find_secondary_block()
159 secondary_index_.begin() + block_end, in find_secondary_block()
165 size_t block_end = block_begin + kSecondaryBlockSize; in find_inverted_secondary_block() local
166 if (block_end > secondary_index_.size()) block_end = secondary_index_.size(); in find_inverted_secondary_block()
169 secondary_index_inverted end(secondary_index_.begin() + block_end, in find_inverted_secondary_block()
/external/llvm/lib/Transforms/Scalar/
DLoopDeletion.cpp115 for (Loop::block_iterator LI = L->block_begin(), LE = L->block_end(); in isLoopDead()
211 for (Loop::block_iterator LI = L->block_begin(), LE = L->block_end(); in runOnLoop()
233 for (Loop::block_iterator LI = L->block_begin(), LE = L->block_end(); in runOnLoop()
241 blocks.insert(L->block_begin(), L->block_end()); in runOnLoop()
DLoopUnswitch.cpp236 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in countLoop()
431 E = currentLoop->block_end(); I != E; ++I) { in processCurrentLoop()
663 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in CloneLoop()
792 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); in UnswitchNontrivialCondition()
DLICM.cpp266 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in runOnLoop()
276 for (Loop::block_iterator BB = L->block_begin(), BBE = L->block_end(); in runOnLoop()
DLoopUnrollPass.cpp206 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in ApproximateLoopSize()
DLoopIdiomRecognize.cpp685 E = CurLoop->block_end(); BI != E; ++BI) { in runOnCountableLoop()
891 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E; in mayLoopAccessLocation()
/external/llvm/lib/Analysis/
DLoopInfo.cpp179 for (block_iterator BI = block_begin(), E = block_end(); BI != E; ++BI) { in isLCSSAForm()
216 for (Loop::block_iterator I = block_begin(), E = block_end(); I != E; ++I) { in isSafeToClone()
242 for (block_iterator I = block_begin(), IE = block_end(); I != IE; ++I) { in getLoopID()
279 for (block_iterator I = block_begin(), IE = block_end(); I != IE; ++I) { in setLoopID()
299 for (block_iterator BB = block_begin(), BE = block_end(); BB != BE; ++BB) { in isAnnotatedParallel()
358 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI) { in getUniqueExitBlocks()
508 BE = Unloop->block_end(); BI != BE; ++BI) { in removeBlocksFromAncestors()
632 E = Unloop->block_end(); I != E; ++I) { in updateUnloop()
DLoopPass.cpp45 for (Loop::block_iterator b = L->block_begin(), be = L->block_end(); in runOnLoop()
/external/qemu/distrib/ext4_utils/src/
Dcontents.c359 void *block_end, in xattr_addto_range() argument
370 size_t available_size = xattr_free_space(first, block_end); in xattr_addto_range()
401 char *block_end = ((char *) inode) + info.inode_size; in xattr_addto_inode() local
404 xattr_addto_range(first, block_end, first, name_index, name, value, value_len); in xattr_addto_inode()
423 char *block_end = ((char *) header) + info.block_size; in xattr_addto_block() local
426 xattr_addto_range(header, block_end, first, name_index, name, value, value_len); in xattr_addto_block()
/external/chromium_org/third_party/ots/src/
Dots.cc363 uint64_t block_end = ots::Round4( in ProcessWOFF() local
366 if (block_end > std::numeric_limits<uint32_t>::max()) { in ProcessWOFF()
370 if (block_end != meta_offset) { in ProcessWOFF()
373 block_end = ots::Round4(static_cast<uint64_t>(meta_offset) + in ProcessWOFF()
375 if (block_end > std::numeric_limits<uint32_t>::max()) { in ProcessWOFF()
380 if (block_end != priv_offset) { in ProcessWOFF()
383 block_end = ots::Round4(static_cast<uint64_t>(priv_offset) + in ProcessWOFF()
385 if (block_end > std::numeric_limits<uint32_t>::max()) { in ProcessWOFF()
389 if (block_end != ots::Round4(length)) { in ProcessWOFF()
/external/llvm/include/llvm/Analysis/
DRegionInfo.h548 block_iterator block_end() { in block_end() function
555 const_block_iterator block_end() const { in block_end() function
564 return block_range(block_begin(), block_end()); in blocks()
571 return const_block_range(block_begin(), block_end()); in blocks()
DLoopInfoImpl.h37 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI) in getExitingBlocks()
66 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI) in getExitBlocks()
91 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI) in getExitEdges()
291 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end(); in verifyLoop()
DLoopInfo.h144 block_iterator block_end() const { return Blocks.end(); } in block_end() function
/external/chromium_org/pdf/
Ddocument_loader.cc232 uint32 block_end = new_pos + new_size; in DownloadPendingRequests() local
233 if (block_end > cur_request_size) { in DownloadPendingRequests()
234 new_pos = block_end - cur_request_size; in DownloadPendingRequests()
238 new_size = block_end - new_pos; in DownloadPendingRequests()
/external/llvm/lib/Target/R600/
DAMDGPUTargetTransformInfo.cpp98 for (Loop::block_iterator BI = L->block_begin(), BE = L->block_end(); in getUnrollingPreferences()
/external/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp633 E = L.block_end(); in findBestLoopExit()
788 BlockFilterSet LoopBlockSet(L.block_begin(), L.block_end()); in buildLoopChains()
812 BE = L.block_end(); in buildLoopChains()
DBasicTargetTransformInfo.cpp235 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in getUnrollingPreferences()
/external/llvm/lib/Transforms/Utils/
DLCSSA.cpp197 for (Loop::block_iterator BBI = L.block_begin(), BBE = L.block_end(); in formLCSSA()
DLoopSimplify.cpp308 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in separateNestedLoop()
486 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); in simplifyOneLoop()
/external/llvm/include/llvm/Support/
DGCOV.h276 BlockIterator block_end() const { return Blocks.end(); } in block_end() function
/external/llvm/lib/IR/
DInstruction.cpp346 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined()
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp427 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in convertToCTRLoop()
/external/chromium_org/v8/src/
Djsregexp.cc5377 uc16 block_end; in AddCaseEquivalents() local
5379 block_end = pos; in AddCaseEquivalents()
5382 block_end = range[0]; in AddCaseEquivalents()
5384 int end = (block_end > top) ? top : block_end; in AddCaseEquivalents()
5385 length = isolate->jsregexp_uncanonicalize()->get(block_end, '\0', range); in AddCaseEquivalents()
5388 uc16 range_from = c - (block_end - pos); in AddCaseEquivalents()
5389 uc16 range_to = c - (block_end - end); in AddCaseEquivalents()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3322 BE = TheLoop->block_end(); BI != BE; ++BI) { in canVectorizeWithIfConvert()
3339 BE = TheLoop->block_end(); BI != BE; ++BI) { in canVectorizeWithIfConvert()
3492 be = TheLoop->block_end(); bb != be; ++bb) { in canVectorizeInstrs()
3823 BE = TheLoop->block_end(); B != BE; ++B) in collectLoopUniforms()
4561 be = TheLoop->block_end(); bb != be; ++bb) { in canVectorizeMemory()
5276 be = TheLoop->block_end(); bb != be; ++bb) { in getWidestType()
5564 be = TheLoop->block_end(); bb != be; ++bb) { in expectedCost()
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml895 external block_end : llvalue -> (llvalue, llbasicblock) llrev_pos
931 rev_iter_block_range f (block_end fn) (At_start fn)
940 fold_right_block_range f init (block_end fn) (At_start fn)

12