Home
last modified time | relevance | path

Searched refs:found_end (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/disas/
H A Dhexagon.c35 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 Dfree-space-tree.c519 u64 found_start, found_end; in free_space_test_bit() local
527 found_end = key.objectid + key.offset; 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()
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
783 if (end < found_end) { in remove_free_space_extent()
786 key.offset = found_end - end; in remove_free_space_extent()
876 u64 found_start, found_end; in add_free_space_extent() local
[all …]
H A Ddev-replace.c806 u64 found_end; in btrfs_set_target_alloc_state() local
812 &found_start, &found_end, in btrfs_set_target_alloc_state()
815 found_end, CHUNK_ALLOCATED, NULL); in btrfs_set_target_alloc_state()
818 start = found_end + 1; in btrfs_set_target_alloc_state()
H A Dtree-log.c2028 u64 found_end; in find_dir_range() local
2057 found_end = btrfs_dir_log_end(path->nodes[0], item); in find_dir_range()
2059 if (*start_ret >= key.offset && *start_ret <= found_end) { in find_dir_range()
2062 *end_ret = found_end; in find_dir_range()
2084 found_end = btrfs_dir_log_end(path->nodes[0], item); in find_dir_range()
2086 *end_ret = found_end; in find_dir_range()
H A Ddisk-io.c4234 u64 found_end; in warn_about_uncommitted_trans() local
4238 &found_start, &found_end, EXTENT_DIRTY, &cached)) { in warn_about_uncommitted_trans()
4239 dirty_bytes += found_end + 1 - found_start; in warn_about_uncommitted_trans()
4240 cur = found_end + 1; in warn_about_uncommitted_trans()
/openbmc/qemu/target/hexagon/
H A Dtranslate.c215 bool found_end = false; in read_packet_words() local
219 for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) { in read_packet_words()
223 found_end = is_packet_end(words[nwords]); in read_packet_words()
225 if (!found_end) { in read_packet_words()
1082 bool found_end = false; in pkt_crosses_page() local
1085 for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) { in pkt_crosses_page()
1088 found_end = is_packet_end(word); in pkt_crosses_page()
1091 return found_end && next_ptr - page_start >= TARGET_PAGE_SIZE; in pkt_crosses_page()