Searched refs:found_end (Results 1 – 6 of 6) sorted by relevance
/openbmc/qemu/disas/ |
H A D | hexagon.c | 35 bool found_end = false; in print_insn_hexagon() local 39 for (i = 0; i < PACKET_WORDS_MAX && !found_end; i++) { in print_insn_hexagon() 51 found_end = true; in print_insn_hexagon() 55 if (!found_end) { in print_insn_hexagon()
|
/openbmc/linux/fs/btrfs/ |
H A D | free-space-tree.c | 519 u64 found_start, found_end; in free_space_test_bit() local 527 found_end = key.objectid + key.offset; in free_space_test_bit() 528 ASSERT(offset >= found_start && offset < found_end); in free_space_test_bit() 545 u64 found_start, found_end; in free_space_set_bits() local 553 found_end = key.objectid + key.offset; in free_space_set_bits() 554 ASSERT(*start >= found_start && *start < found_end); in free_space_set_bits() 557 if (end > found_end) in free_space_set_bits() 558 end = found_end; in free_space_set_bits() 724 u64 found_start, found_end; in remove_free_space_extent() local 742 found_end = key.objectid + key.offset; in remove_free_space_extent() [all …]
|
H A D | dev-replace.c | 807 u64 found_end; in btrfs_set_target_alloc_state() local 813 &found_start, &found_end, in btrfs_set_target_alloc_state() 816 found_end, CHUNK_ALLOCATED, NULL); in btrfs_set_target_alloc_state() 819 start = found_end + 1; in btrfs_set_target_alloc_state()
|
H A D | tree-log.c | 2047 u64 found_end; in find_dir_range() local 2076 found_end = btrfs_dir_log_end(path->nodes[0], item); in find_dir_range() 2078 if (*start_ret >= key.offset && *start_ret <= found_end) { in find_dir_range() 2081 *end_ret = found_end; in find_dir_range() 2103 found_end = btrfs_dir_log_end(path->nodes[0], item); in find_dir_range() 2105 *end_ret = found_end; in find_dir_range()
|
H A D | disk-io.c | 4236 u64 found_end; in warn_about_uncommitted_trans() local 4240 &found_start, &found_end, EXTENT_DIRTY, &cached)) { in warn_about_uncommitted_trans() 4241 dirty_bytes += found_end + 1 - found_start; in warn_about_uncommitted_trans() 4242 cur = found_end + 1; in warn_about_uncommitted_trans()
|
/openbmc/qemu/target/hexagon/ |
H A D | translate.c | 216 bool found_end = false; in read_packet_words() local 220 for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) { in read_packet_words() 224 found_end = is_packet_end(words[nwords]); in read_packet_words() 226 if (!found_end) { in read_packet_words() 1021 bool found_end = false; in pkt_crosses_page() local 1024 for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) { in pkt_crosses_page() 1027 found_end = is_packet_end(word); in pkt_crosses_page() 1030 return found_end && next_ptr - page_start >= TARGET_PAGE_SIZE; in pkt_crosses_page()
|