| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_external.cpp | 112 void *block_begin = a->GetBlockBegin((void *)addr); local 113 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin);
|
| tsan_debugging.cpp | 209 void *block_begin = a->GetBlockBegin((void *)addr); local 210 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); 249 void *block_begin = a->GetBlockBegin((void *)addr); local 250 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin);
|
| tsan_rtl_report.cpp | 297 uptr block_begin = 0; local 300 block_begin = (uptr)a->GetBlockBegin((void *)addr); 301 if (block_begin) 302 b = ctx->metamap.GetBlock(block_begin); 305 b = JavaHeapBlock(addr, &block_begin); 309 loc->heap_chunk_start = block_begin;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_external.cpp | 105 void *block_begin = a->GetBlockBegin((void *)addr); local 106 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin);
|
| tsan_debugging.cpp | 207 void *block_begin = a->GetBlockBegin((void *)addr); local 208 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); 247 void *block_begin = a->GetBlockBegin((void *)addr); local 248 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin);
|
| tsan_rtl_report.cpp | 336 uptr block_begin = 0; local 339 block_begin = (uptr)a->GetBlockBegin((void *)addr); 340 if (block_begin) 341 b = ctx->metamap.GetBlock(block_begin); 344 b = JavaHeapBlock(addr, &block_begin);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_debugging.cc | 202 void *block_begin = a->GetBlockBegin((void *)addr); local 203 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); 242 void *block_begin = a->GetBlockBegin((void *)addr); local 243 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin);
|
| tsan_external.cc | 104 void *block_begin = a->GetBlockBegin((void *)addr); local 105 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin);
|
| tsan_rtl_report.cc | 331 void *block_begin = a->GetBlockBegin((void*)addr); local 332 if (block_begin) 333 b = ctx->metamap.GetBlock((uptr)block_begin);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| RegionInfo.h | 609 block_iterator block_begin() { return block_iterator(getEntry(), getExit()); } function in class:llvm::RegionBase 613 const_block_iterator block_begin() const { function in class:llvm::RegionBase 623 return block_range(block_begin(), block_end()); 630 return const_block_range(block_begin(), block_end());
|
| LoopInfo.h | 176 block_iterator block_begin() const { return getBlocks().begin(); } function in class:llvm::LoopBase 180 return make_range(block_begin(), block_end());
|
| MemorySSA.h | 504 block_iterator block_begin() { function in class:llvm::final 508 const_block_iterator block_begin() const { function in class:llvm::final 512 block_iterator block_end() { return block_begin() + getNumOperands(); } 515 return block_begin() + getNumOperands(); 519 return make_range(block_begin(), block_end()); 523 return make_range(block_begin(), block_end()); 544 BasicBlock *getIncomingBlock(unsigned I) const { return block_begin()[I]; } 561 block_begin()[I] = BB; 578 if (block_begin()[I] == BB) 598 setIncomingBlock(I, block_begin()[E - 1]) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyExceptionInfo.h | 80 block_iterator block_begin() const { return getBlocks().begin(); } function in class:llvm::WebAssemblyException 83 return make_range(block_begin(), block_end());
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Instructions.h | 2648 block_iterator block_begin() { function in class:llvm::CallInst::ShuffleVectorInst::PHINode 2652 const_block_iterator block_begin() const { function in class:llvm::CallInst::ShuffleVectorInst::PHINode 2657 return block_begin() + getNumOperands(); 2661 return block_begin() + getNumOperands(); 2665 return make_range(block_begin(), block_end()); 2669 return make_range(block_begin(), block_end()); 2703 return block_begin()[i]; 2723 block_begin()[i] = BB; 2766 if (block_begin()[i] == BB)
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| llvm.mli | 1759 (** [block_begin f] returns the first position in the basic block list of the 1760 function [f]. [block_begin] and [block_succ] can be used to iterate over 1763 val block_begin : llvalue -> (llvalue, llbasicblock) llpos var
|
| /src/external/gpl3/binutils/dist/bfd/ |
| elf32-xtensa.c | 6656 bfd_vma block_begin; 6659 block_begin = the_entry->address - ebb->sec->vma; 6662 block_begin, 6663 ebb->start_offset - block_begin); 6664 if (insn_block_len != ebb->start_offset - block_begin) 6636 bfd_vma block_begin; local
|
| /src/external/gpl3/binutils.old/dist/bfd/ |
| elf32-xtensa.c | 6656 bfd_vma block_begin; 6659 block_begin = the_entry->address - ebb->sec->vma; 6662 block_begin, 6663 ebb->start_offset - block_begin); 6664 if (insn_block_len != ebb->start_offset - block_begin) 6636 bfd_vma block_begin; local
|
| /src/external/gpl3/gdb/dist/bfd/ |
| elf32-xtensa.c | 6654 bfd_vma block_begin; 6657 block_begin = the_entry->address - ebb->sec->vma; 6660 block_begin, 6661 ebb->start_offset - block_begin); 6662 if (insn_block_len != ebb->start_offset - block_begin) 6634 bfd_vma block_begin; local
|
| /src/external/gpl3/gdb.old/dist/bfd/ |
| elf32-xtensa.c | 6660 bfd_vma block_begin; 6663 block_begin = the_entry->address - ebb->sec->vma; 6666 block_begin, 6667 ebb->start_offset - block_begin); 6668 if (insn_block_len != ebb->start_offset - block_begin) 6640 bfd_vma block_begin; local
|