/kernel/linux/linux-6.6/tools/lib/bpf/ |
H A D | strset.c | 118 long old_off, new_off, len; in strset__find_str() local 127 new_off = set->strs_data_len; in strset__find_str() 130 if (hashmap__find(set->strs_hash, new_off, &old_off)) in strset__find_str() 144 long old_off, new_off, len; in strset__add_str() local 161 new_off = set->strs_data_len; in strset__add_str() 168 err = hashmap__insert(set->strs_hash, new_off, new_off, in strset__add_str() 176 return new_off; in strset__add_str()
|
H A D | btf_dump.c | 870 int new_off, pad_bits, bits, i; in btf_dump_emit_bit_padding() local 898 new_off = roundup(cur_off, pad_bits); in btf_dump_emit_bit_padding() 899 if (new_off <= next_off) in btf_dump_emit_bit_padding() 903 if (new_off > cur_off && new_off <= next_off) { in btf_dump_emit_bit_padding() 914 (new_off == next_off && roundup(cur_off, next_align * 8) != new_off) || in btf_dump_emit_bit_padding() 915 (new_off != next_off && next_off - new_off <= new_off in btf_dump_emit_bit_padding() [all...] |
/kernel/linux/linux-5.10/fs/hpfs/ |
H A D | dir.c | 26 loff_t new_off = off + (whence == 1 ? filp->f_pos : 0); in hpfs_dir_lseek() local 41 if (new_off == 0 || new_off == 1 || new_off == 11 || new_off == 12 || new_off == 13) goto ok; in hpfs_dir_lseek() 43 while (pos != new_off) { in hpfs_dir_lseek() 54 filp->f_pos = new_off; in hpfs_dir_lseek() 57 return new_off; in hpfs_dir_lseek() 59 /*pr_warn("illegal lseek: %016llx\n", new_off);*/ in hpfs_dir_lseek() [all...] |
/kernel/linux/linux-6.6/fs/hpfs/ |
H A D | dir.c | 26 loff_t new_off = off + (whence == 1 ? filp->f_pos : 0); in hpfs_dir_lseek() local 41 if (new_off == 0 || new_off == 1 || new_off == 11 || new_off == 12 || new_off == 13) goto ok; in hpfs_dir_lseek() 43 while (pos != new_off) { in hpfs_dir_lseek() 54 filp->f_pos = new_off; in hpfs_dir_lseek() 57 return new_off; in hpfs_dir_lseek() 59 /*pr_warn("illegal lseek: %016llx\n", new_off);*/ in hpfs_dir_lseek() [all...] |
/kernel/linux/linux-5.10/tools/objtool/ |
H A D | special.c | 108 reloc_to_sec_off(new_reloc, &alt->new_sec, &alt->new_off); in get_alt_entry() 111 if (alt->new_off >= 0x7ffffff0) in get_alt_entry() 112 alt->new_off -= 0x7ffffff0; in get_alt_entry()
|
H A D | special.h | 27 unsigned long new_off; member
|
H A D | check.c | 1373 nop->offset = special_alt->new_off + special_alt->new_len; in handle_group_alt() 1390 if (insn->offset >= special_alt->new_off + special_alt->new_len) in handle_group_alt() 1423 if (dest_off == special_alt->new_off + special_alt->new_len) in handle_group_alt() 1435 special_alt->new_sec, special_alt->new_off); in handle_group_alt() 1504 special_alt->new_off); in add_special_section_alts() 1508 special_alt->new_off); in add_special_section_alts()
|
/kernel/linux/linux-6.6/tools/objtool/ |
H A D | special.c | 113 reloc_to_sec_off(new_reloc, &alt->new_sec, &alt->new_off); in get_alt_entry() 116 if (alt->new_off >= 0x7ffffff0) in get_alt_entry() 117 alt->new_off -= 0x7ffffff0; in get_alt_entry()
|
H A D | check.c | 1797 nop->offset = special_alt->new_off + special_alt->new_len; in handle_group_alt() 1814 if (insn->offset >= special_alt->new_off + special_alt->new_len) in handle_group_alt() 1846 if (dest_off == special_alt->new_off + special_alt->new_len) { in handle_group_alt() 1857 special_alt->new_sec, special_alt->new_off); in handle_group_alt() 1948 special_alt->new_off); in add_special_section_alts() 1952 special_alt->new_off); in add_special_section_alts()
|
/kernel/linux/linux-6.6/fs/xfs/scrub/ |
H A D | readdir.c | 157 xfs_dir2_off_t new_off; in xchk_read_leaf_dir_buf() local 176 new_off = xfs_dir2_da_to_byte(geo, map.br_startoff); in xchk_read_leaf_dir_buf() 177 if (new_off > *curoff) in xchk_read_leaf_dir_buf() 178 *curoff = new_off; in xchk_read_leaf_dir_buf()
|
/kernel/linux/linux-5.10/tools/lib/bpf/ |
H A D | btf_dump.c | 828 int new_off, pad_bits, bits, i; in btf_dump_emit_bit_padding() local 856 new_off = roundup(cur_off, pad_bits); in btf_dump_emit_bit_padding() 857 if (new_off <= next_off) in btf_dump_emit_bit_padding() 861 if (new_off > cur_off && new_off <= next_off) { in btf_dump_emit_bit_padding() 872 (new_off == next_off && roundup(cur_off, next_align * 8) != new_off) || in btf_dump_emit_bit_padding() 873 (new_off != next_off && next_off - new_off <= new_off in btf_dump_emit_bit_padding() [all...] |
H A D | btf.c | 1490 long old_off, new_off, len; in btf__find_str() local 1503 new_off = btf->hdr->str_len; in btf__find_str() 1506 if (hashmap__find(btf->strs_hash, (void *)new_off, (void **)&old_off)) in btf__find_str() 1519 long old_off, new_off, len; in btf__add_str() local 1539 new_off = btf->hdr->str_len; in btf__add_str() 1546 err = hashmap__insert(btf->strs_hash, (void *)new_off, (void *)new_off, in btf__add_str() 1554 return new_off; in btf__add_str() 2878 __u32 new_off; member 3170 *str_off_ptr = s->new_off; in btf_str_remap_offset() 3265 int new_off = p - tmp_strs; btf_dedup_strings() local [all...] |
/kernel/linux/linux-5.10/fs/hfsplus/ |
H A D | brec.c | 240 int num_recs, new_rec_off, new_off, old_rec_off; in hfs_bnode_split() local 305 new_off = 14; in hfs_bnode_split() 306 size = data_start - new_off; in hfs_bnode_split() 310 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split() 314 new_off = data_end - size; in hfs_bnode_split() 317 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split()
|
/kernel/linux/linux-5.10/fs/hfs/ |
H A D | brec.c | 236 int num_recs, new_rec_off, new_off, old_rec_off; in hfs_bnode_split() local 301 new_off = 14; in hfs_bnode_split() 302 size = data_start - new_off; in hfs_bnode_split() 306 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split() 310 new_off = data_end - size; in hfs_bnode_split() 313 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split()
|
/kernel/linux/linux-6.6/fs/hfs/ |
H A D | brec.c | 236 int num_recs, new_rec_off, new_off, old_rec_off; in hfs_bnode_split() local 301 new_off = 14; in hfs_bnode_split() 302 size = data_start - new_off; in hfs_bnode_split() 306 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split() 310 new_off = data_end - size; in hfs_bnode_split() 313 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split()
|
/kernel/linux/linux-6.6/fs/hfsplus/ |
H A D | brec.c | 240 int num_recs, new_rec_off, new_off, old_rec_off; in hfs_bnode_split() local 305 new_off = 14; in hfs_bnode_split() 306 size = data_start - new_off; in hfs_bnode_split() 310 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split() 314 new_off = data_end - size; in hfs_bnode_split() 317 hfs_bnode_write_u16(new_node, new_rec_off, new_off); in hfs_bnode_split()
|
/kernel/linux/linux-5.10/fs/xfs/ |
H A D | xfs_dir2_readdir.c | 253 xfs_dir2_off_t new_off; in xfs_dir2_leaf_readbuf() local 281 new_off = xfs_dir2_da_to_byte(geo, map.br_startoff); in xfs_dir2_leaf_readbuf() 282 if (new_off > *cur_off) in xfs_dir2_leaf_readbuf() 283 *cur_off = new_off; in xfs_dir2_leaf_readbuf()
|
/kernel/linux/linux-6.6/fs/xfs/ |
H A D | xfs_dir2_readdir.c | 254 xfs_dir2_off_t new_off; in xfs_dir2_leaf_readbuf() local 280 new_off = xfs_dir2_da_to_byte(geo, map.br_startoff); in xfs_dir2_leaf_readbuf() 281 if (new_off > *cur_off) in xfs_dir2_leaf_readbuf() 282 *cur_off = new_off; in xfs_dir2_leaf_readbuf()
|
/kernel/linux/linux-6.6/tools/objtool/include/objtool/ |
H A D | special.h | 28 unsigned long new_off; member
|
/kernel/linux/linux-5.10/tools/objtool/arch/x86/ |
H A D | special.c | 50 return insn->offset == special_alt->new_off && in arch_support_alt_relocation()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/bpf/ |
H A D | verifier.c | 348 s32 old_off, new_off; in nfp_bpf_check_stack_access() local 362 new_off = reg->off + reg->var_off.value; in nfp_bpf_check_stack_access() 364 meta->ptr_not_const |= old_off != new_off; in nfp_bpf_check_stack_access() 369 if (old_off % 4 == new_off % 4) in nfp_bpf_check_stack_access() 373 old_off, new_off); in nfp_bpf_check_stack_access()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/bpf/ |
H A D | verifier.c | 348 s32 old_off, new_off; in nfp_bpf_check_stack_access() local 362 new_off = reg->off + reg->var_off.value; in nfp_bpf_check_stack_access() 364 meta->ptr_not_const |= old_off != new_off; in nfp_bpf_check_stack_access() 369 if (old_off % 4 == new_off % 4) in nfp_bpf_check_stack_access() 373 old_off, new_off); in nfp_bpf_check_stack_access()
|
/kernel/linux/linux-6.6/drivers/hid/ |
H A D | hid-sony.c | 1327 u8 new_on, new_off; in sony_led_blink_set() local 1345 new_off = *delay_off / 10; in sony_led_blink_set() 1358 new_off != drv_data->led_delay_off[n]) { in sony_led_blink_set() 1360 drv_data->led_delay_off[n] = new_off; in sony_led_blink_set()
|
/kernel/linux/linux-5.10/drivers/hid/ |
H A D | hid-sony.c | 1924 u8 new_on, new_off; in sony_led_blink_set() local 1942 new_off = *delay_off / 10; in sony_led_blink_set() 1955 new_off != drv_data->led_delay_off[n]) { in sony_led_blink_set() 1957 drv_data->led_delay_off[n] = new_off; in sony_led_blink_set()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/dpaa2/ |
H A D | dpaa2-eth.c | 3632 int off = 0, new_off = 0; in dpaa2_eth_cls_trim_rule() local 3638 memcpy(key_mem + new_off, key_mem + off, size); in dpaa2_eth_cls_trim_rule() 3639 new_off += size; in dpaa2_eth_cls_trim_rule()
|