Home
last modified time | relevance | path

Searched refs:src_bits (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/test/Dialect/NVGPU/
H A Doptimize-shared-memory.mlir15 // CHECK: [[src_bits:%.+]] = arith.andi [[stRow]], [[c6]]
17 // CHECK: [[xorBits:%.+]] = arith.shli [[src_bits]], [[c2]]
35 // CHECK: [[src_bits:%.+]] = arith.andi [[stRow]], [[c15]]
37 // CHECK: [[xorBits:%.+]] = arith.shli [[src_bits]], [[c3]]
72 // CHECK: [[src_bits:%.+]] = arith.andi [[stRow]], [[c6]]
74 // CHECK: [[xorBits:%.+]] = arith.shli [[src_bits]], [[c1]]
128 // CHECK: [[src_bits:%.+]] = arith.andi [[stRow]], [[c15]]
130 // CHECK: [[xorBits:%.+]] = arith.shli [[src_bits]], [[c2]]
173 // CHECK: [[src_bits:%.+]] = arith.andi [[stRow]], [[c4]]
175 // CHECK: [[xorBits:%.+]] = arith.shrui [[src_bits]], [[c1]]
/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A Dgmp_compat.c663 int src_bits; in GMPZAPI() local
708 src_bits = MP_DIGIT_BIT; in GMPZAPI()
714 if (src_bits == 0) { in GMPZAPI()
716 src_bits = MP_DIGIT_BIT; in GMPZAPI()
718 *dst = (*src >> (MP_DIGIT_BIT - src_bits)) & 0xFF; in GMPZAPI()
719 src_bits -= 8; in GMPZAPI()