Lines Matching refs:lhs
1362 do_ops(struct magic *m, intmax_t lhs, intmax_t off) in do_ops() argument
1368 offset = lhs & off; in do_ops()
1371 offset = lhs | off; in do_ops()
1374 offset = lhs ^ off; in do_ops()
1377 offset = lhs + off; in do_ops()
1380 offset = lhs - off; in do_ops()
1383 offset = lhs * off; in do_ops()
1386 offset = lhs / off; in do_ops()
1389 offset = lhs % off; in do_ops()
1393 offset = lhs; in do_ops()
1453 intmax_t lhs; in mget() local
1549 lhs = BE32(p); in mget()
1551 lhs = cvt_id3(ms, (uint32_t)lhs); in mget()
1552 offset = do_ops(m, SEXT(sgn,32,lhs), off); in mget()
1558 lhs = LE32(p); in mget()
1560 lhs = cvt_id3(ms, (uint32_t)lhs); in mget()
1561 offset = do_ops(m, SEXT(sgn,32,lhs), off); in mget()