Searched refs:blocks (Results 101 - 125 of 291) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVCodeGenPrepare.cpp143 for (auto *BB : PHI->blocks()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp142 for (auto Incoming : zip(PN.blocks(), PN.incoming_values())) {
201 if (any_of(zip(PN.blocks(), AvailablePtrVals),
253 for (auto Incoming : zip(PN.blocks(), AvailablePtrVals)) {
352 for (auto Incoming : zip(PN.blocks(), PN.incoming_values()))
390 for (auto Incoming : zip(PN.blocks(), PN.incoming_values()))
467 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
594 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
696 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
755 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
930 for (auto Incoming : drop_begin(zip(PN.blocks(), P
[all...]
/freebsd-current/contrib/libpcap/
H A Doptimize.c261 u_int n_blocks; /* number of blocks in the CFG; guaranteed to be > 0, as it's a RET instruction at a minimum */
262 struct block **blocks; member in struct:__anon135
1638 * so the blocks to which the first block branches aren't
1652 * predecessor of the edge, the blocks to which the first
1727 * from what the blocks before it did and isn't
2142 opt_state->blocks[i]->in_edges = 0;
2363 opt_state->blocks[i]->link = 0;
2369 if (!isMarked(ic, opt_state->blocks[i]))
2372 if (!isMarked(ic, opt_state->blocks[j]))
2374 if (eq_blk(opt_state->blocks[
[all...]
/freebsd-current/sys/contrib/ck/src/
H A Dck_ht_hash.h133 const uint32_t * blocks = (const uint32_t *)(const void *)(data + nblocks*4); local
137 uint32_t k1 = getblock(blocks,i);
/freebsd-current/tools/test/stress2/misc/
H A Dfragments.sh170 blocks(void)
205 blocks(); function
/freebsd-current/sys/dev/usb/
H A Dusb_msctest.c1061 uint32_t lba, uint32_t blocks, void *buffer)
1074 cmd[7] = blocks >> 8;
1075 cmd[8] = blocks;
1083 blocks * SCSI_FIXED_BLOCK_SIZE, cmd, 10, USB_MS_HZ);
1092 uint32_t lba, uint32_t blocks, void *buffer)
1105 cmd[7] = blocks >> 8;
1106 cmd[8] = blocks;
1114 blocks * SCSI_FIXED_BLOCK_SIZE, cmd, 10, USB_MS_HZ);
1060 usb_msc_read_10(struct usb_device *udev, uint8_t iface_index, uint32_t lba, uint32_t blocks, void *buffer) argument
1091 usb_msc_write_10(struct usb_device *udev, uint8_t iface_index, uint32_t lba, uint32_t blocks, void *buffer) argument
/freebsd-current/sys/dev/cxgb/
H A Dbin2h.pl58 $atime,$mtime,$ctime,$blksize,$blocks)
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import.kshlib94 typeset -i blocks=10
101 dd if=/dev/urandom of=$file bs=128k count=$blocks > /dev/null
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbolContextListExtensions.i71 blocks = property(get_block_array, None, doc='''Returns a list() of lldb.SBBlock objects, one for each block in each SBSymbolContext object in this list.''')
/freebsd-current/libexec/tftpd/
H A Dtftp-utils.c304 ts->blocks = 0;
318 printf("%s %zu bytes during %.1f seconds in %u blocks",
319 direction, ts->amount, delta, ts->blocks);
/freebsd-current/sbin/fsck_ffs/
H A Dsuj.c306 * to be freed. The mask value can be used to free partial blocks.
381 * they will only have usable blocks in them.
527 * or ext blocks.
716 * Don't visit indirect blocks with contents we can't trust. This
760 * callback function. The callback may inspect or free blocks. The
821 * Null visitor function used when we just want to count blocks and
843 uint64_t blocks; local
858 * Visit all blocks and count them as well as recording the last
861 * the blocks count.
865 blocks
2185 int blocks; local
2225 jblocks_add(struct jblocks *jblocks, ufs2_daddr_t daddr, int blocks) argument
2281 int blocks; local
2383 uint64_t blocks; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_avx512.c492 void blake3_hash4_avx512(const uint8_t *const *inputs, size_t blocks, argument
505 for (size_t block = 0; block < blocks; block++) {
506 if (block + 1 == blocks) {
747 void blake3_hash8_avx512(const uint8_t *const *inputs, size_t blocks, argument
760 for (size_t block = 0; block < blocks; block++) {
761 if (block + 1 == blocks) {
1060 void blake3_hash16_avx512(const uint8_t *const *inputs, size_t blocks, argument
1074 for (size_t block = 0; block < blocks; block++) {
1075 if (block + 1 == blocks) {
1142 INLINE void hash_one_avx512(const uint8_t *input, size_t blocks, argument
1162 blake3_hash_many_avx512(const uint8_t *const *inputs, size_t num_inputs, size_t blocks, const uint32_t key[8], uint64_t counter, bool increment_counter, uint8_t flags, uint8_t flags_start, uint8_t flags_end, uint8_t *out) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp301 std::vector<Block *> blocks; local
304 blocks.push_back(&block);
336 blocks[record->InlineNestLevel]->AddChild(block_sp);
337 if (record->InlineNestLevel + 1 >= blocks.size()) {
338 blocks.resize(blocks.size() + 1);
340 blocks[record->InlineNestLevel + 1] = block_sp.get();
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp380 // that GuardOtherSucc post dominates all exit blocks.
452 // block they are defined in. Also, blocks not reachable from the
464 return all_of(this->blocks(), [&](const BasicBlock *BB) {
474 return all_of(this->blocks(), [&](const BasicBlock *BB) {
487 // Return false if any loop blocks contain indirectbrs, or there are any calls
489 for (BasicBlock *BB : this->blocks()) {
504 // Go through the latch blocks and check the terminator for the metadata.
588 for (BasicBlock *BB : this->blocks()) {
679 /// Find the new parent loop for all blocks within the "unloop" whose last
711 /// Update the parent loop for all blocks tha
[all...]
/freebsd-current/stand/i386/zfsboot/
H A Dzfsldr.S33 .set COPY_BLKS,0x8 # Number of blocks
35 .set COPY_BLK_SZ,0x8000 # Copy in 32k blocks; must be
133 mov $COPY_BLKS,%bx # Copy COPY_BLKS 32k blocks
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp61 // Preserve blocks in this debug section by marking one existing symbol
74 for (auto *B : Sec.blocks())
104 if (Sec.blocks().empty())
257 "Unexpected number of blocks in debug info section",
263 auto &B = **DSec.GraphSec->blocks().begin();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h109 /// Base class for Addressable entities (externals, absolutes, blocks).
319 /// moving edges between blocks.
370 // Returns true if the given blocks contains exactly one valid c-string.
371 // Zero-fill blocks of size 1 count as valid empty strings. Content blocks
734 /// Returns true if this section is empty (contains no blocks or symbols).
737 /// Returns an iterator over the blocks defined in this section.
738 iterator_range<block_iterator> blocks() {
742 /// Returns an iterator over the blocks defined in this section.
743 iterator_range<const_block_iterator> blocks() cons
[all...]
/freebsd-current/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3_impl.h52 size_t num_inputs, size_t blocks, const uint32_t key[8],
/freebsd-current/tests/sys/fs/fusefs/
H A Dstatfs.cc144 out.body.statfs.st.blocks = 1000;
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A Dx86_64.cpp83 for (auto *B : G.blocks())
H A DJITLinkGeneric.h133 LLVM_DEBUG(dbgs() << "Fixing up blocks:\n");
138 for (auto *B : Sec.blocks()) {
181 /// Removes dead symbols/blocks/addressables.
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h82 inline iterator_range<block_iterator> blocks() const { function in class:llvm::WebAssemblyException
124 // Mapping of basic blocks to the innermost exception they occur in
/freebsd-current/contrib/xz/src/liblzma/api/lzma/
H A Dindex.h341 * \param blocks Number of Blocks
346 lzma_vli streams, lzma_vli blocks) lzma_nothrow;
503 * \return Number of blocks in the lzma_index
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp948 "__DATA,__objc_imageinfo contains multiple blocks",
950 G.addAnonymousSymbol(**ObjCImageInfoSec->blocks().begin(), 0, 0, false,
953 for (auto *B : ObjCImageInfoSec->blocks())
976 // Make a pass over live symbols in the section: those blocks are already
988 // Add anonymous symbols to preserve any not-already-preserved blocks.
989 for (auto *B : InitSection->blocks())
1016 auto ObjCImageInfoBlocks = ObjCImageInfo->blocks();
1026 return make_error<StringError>("Multiple blocks in " +
1035 for (auto *B : Sec.blocks())
1176 for (auto *B : ThreadDataSec->blocks()) {
[all...]
/freebsd-current/contrib/lib9p/
H A Dfcall.h282 uint64_t blocks; /* file system size (bsize-byte blocks) */ member in struct:l9p_statfs
283 uint64_t bfree; /* free blocks in fs */
284 uint64_t bavail; /* free blocks avail to non-superuser*/
423 uint64_t blocks; member in struct:l9p_f_rgetattr

Completed in 331 milliseconds

1234567891011>>