Lines Matching refs:value
41 assert(index.value < 0x100);
44 return index.value;
53 return index.value;
62 return index.value;
78 if (index.type == AGX_INDEX_IMMEDIATE && index.value == 0)
84 assert(index.value < 0x100);
86 return index.value;
95 assert(index.size == AGX_SIZE_16 || (index.value & 1) == 0);
96 assert(index.value < 0x100);
99 return index.value;
106 assert((index.value & 1) == 0);
109 assert(index.value < 0x200);
111 return index.value;
113 assert(index.value < 0x100);
115 return index.value;
123 assert(index.value < 0x10000);
126 return index.value;
129 assert((index.value & 1) == 0);
130 assert(index.value < 0x100);
133 return index.value;
143 unsigned reg = dest.value;
161 unsigned value = src.value;
166 assert(value < 0x100);
169 (value & BITFIELD_MASK(6)) |
170 ((value >> 6) << 10);
173 assert(value < 0x200);
176 (value & BITFIELD_MASK(6)) |
177 ((value >> 8) << 6) |
180 (((value >> 6) & BITFIELD_MASK(2)) << 10);
192 (value & BITFIELD_MASK(6)) |
195 (((value >> 6) & BITFIELD_MASK(2)) << 10);
202 unsigned value = src.value;
207 assert(value < 0x100);
210 (value & BITFIELD_MASK(6)) |
212 ((value >> 6) << 10);
216 assert(value < 0x200);
219 (value & BITFIELD_MASK(6)) |
220 ((value >> 8) << 6) |
222 (((value >> 6) & BITFIELD_MASK(2)) << 10);
232 (value & BITFIELD_MASK(6)) |
234 (((value >> 6) & BITFIELD_MASK(2)) << 10);
241 unsigned value = src.value;
243 (value & BITFIELD_MASK(6)) |
244 (((value >> 6) & BITFIELD_MASK(2)) << 10);
247 assert(value < 0x100);
459 unsigned index = index_src.value;
481 agx_index value = I->src[1];
484 assert(value.type == AGX_INDEX_REGISTER);
485 assert(value.size == AGX_SIZE_32);
490 ((value.value & 0x3F) << 9) |
491 (((uint64_t) index_src.value) << 16) |
493 ((value.value >> 6) << 24) |