Home
last modified time | relevance | path

Searched refs:b_off (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/arch/mips/net/
Debpf_jit.c585 int off, b_off; in emit_bpf_tail_call() local
595 b_off = b_imm(this_idx + 1, ctx); in emit_bpf_tail_call()
596 emit_instr(ctx, bne, MIPS_R_AT, MIPS_R_ZERO, b_off); in emit_bpf_tail_call()
604 b_off = b_imm(this_idx + 1, ctx); in emit_bpf_tail_call()
605 emit_instr(ctx, bltz, MIPS_R_T5, b_off); in emit_bpf_tail_call()
616 b_off = b_imm(this_idx + 1, ctx); in emit_bpf_tail_call()
617 emit_instr(ctx, beq, MIPS_R_AT, MIPS_R_ZERO, b_off); in emit_bpf_tail_call()
631 static bool is_bad_offset(int b_off) in is_bad_offset() argument
633 return b_off > 0x1ffff || b_off < -0x20000; in is_bad_offset()
640 int src, dst, r, td, ts, mem_off, b_off; in build_one_insn() local
[all …]
Dbpf_jit.c670 u32 k, b_off __maybe_unused; in build_body()
971 b_off = b_imm(i + inst->jf + 1, ctx); in build_body()
972 emit_bcond(MIPS_COND_NE, r_s0, r_zero, b_off, in build_body()
984 b_off = b_imm(i + inst->jf + 1, ctx); in build_body()
986 b_off, ctx); in build_body()
989 b_off = b_imm(i + inst->jt + 1, ctx); in build_body()
990 emit_b(b_off, ctx); in build_body()
994 b_off = b_imm(i + inst->jt + 1, ctx); in build_body()
995 emit_b(b_off, ctx); in build_body()
1004 b_off = b_imm(i + inst->jt + 1, ctx); in build_body()
[all …]
/Linux-v4.19/fs/isofs/
Dinode.c1058 unsigned long b_off = iblock; in isofs_get_blocks() local
1067 if (iblock != b_off) { in isofs_get_blocks()
1088 if (b_off > ((inode->i_size + PAGE_SIZE - 1) >> ISOFS_BUFFER_BITS(inode))) { in isofs_get_blocks()
1090 __func__, b_off, in isofs_get_blocks()
1099 while (nextblk && (b_off >= (offset + sect_size))) { in isofs_get_blocks()
1119 b_off, firstext, (unsigned) sect_size, in isofs_get_blocks()
1126 map_bh(*bh, inode->i_sb, firstext + b_off - offset); in isofs_get_blocks()
1128 *bh = sb_getblk(inode->i_sb, firstext+b_off-offset); in isofs_get_blocks()
1133 b_off++; /* Next buffer offset */ in isofs_get_blocks()
/Linux-v4.19/fs/udf/
Dinode.c665 loff_t lbcount = 0, b_off = 0; in inode_getblk() local
680 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits; in inode_getblk()
720 } while (lbcount + elen <= b_off); in inode_getblk()
722 b_off -= lbcount; in inode_getblk()
723 offset = b_off >> inode->i_sb->s_blocksize_bits; in inode_getblk()