Lines Matching refs:arg0
2286 uint32_t helper_crc32b(uint32_t arg0, uint32_t arg1) in helper_crc32b() argument
2288 uint8_t buf[1] = { arg0 & 0xff }; in helper_crc32b()
2294 uint32_t helper_crc32_be(uint32_t arg0, uint32_t arg1) in helper_crc32_be() argument
2297 stl_be_p(buf, arg0); in helper_crc32_be()
2302 uint32_t helper_crc32_le(uint32_t arg0, uint32_t arg1) in helper_crc32_le() argument
2305 stl_le_p(buf, arg0); in helper_crc32_le()
2335 uint32_t helper_crcn(uint32_t arg0, uint32_t arg1, uint32_t arg2) in helper_crcn() argument
2338 uint32_t n = extract32(arg0, 12, 4) + 1; in helper_crcn()
2339 uint32_t gen = extract32(arg0, 16, n); in helper_crcn()
2340 uint32_t inv = extract32(arg0, 9, 1); in helper_crcn()
2341 uint32_t le = extract32(arg0, 8, 1); in helper_crcn()
2342 uint32_t m = extract32(arg0, 0, 3) + 1; in helper_crcn()
2373 uint32_t helper_shuffle(uint32_t arg0, uint32_t arg1) in helper_shuffle() argument
2380 resb = extract32(arg0, byte_select * 8, 8); in helper_shuffle()
2384 resb = extract32(arg0, byte_select * 8, 8); in helper_shuffle()
2388 resb = extract32(arg0, byte_select * 8, 8); in helper_shuffle()
2392 resb = extract32(arg0, byte_select * 8, 8); in helper_shuffle()