Home | History | Annotate | Download | only in codeflinger

Lines Matching refs:reg_t

206         struct reg_t {
207 reg_t() : reg(-1), flags(0) {
209 reg_t(int r, int f=0)
219 struct integer_t : public reg_t {
220 integer_t() : reg_t(), s(0) {
223 : reg_t(r, f), s(sz) {
226 reg_t::setTo(r, f); s=sz;
232 struct pixel_t : public reg_t {
233 pixel_t() : reg_t() {
237 : reg_t(r, f), format(*fmt) {
240 reg_t::setTo(r, f); format = *fmt;
251 struct component_t : public reg_t {
252 component_t() : reg_t(), h(0), l(0) {
255 : reg_t(r, f), h(0), l(0) {
258 : reg_t(r, f), h(hi), l(lo) {
261 : reg_t(rhs.reg, rhs.flags), h(rhs.s), l(0) {
270 reg_t::setTo(r, f); h=hi; l=lo;
277 struct pointer_t : public reg_t {
278 pointer_t() : reg_t(), size(0) {
281 : reg_t(r, f), size(s) {
284 reg_t::setTo(r, f); size=s;
292 reg_t s;
293 reg_t t;
304 reg_t count;
305 reg_t argb[4];
306 reg_t argb_dx[4];
307 reg_t z;
308 reg_t dither;
361 void base_offset(const pointer_t& d, const pointer_t& b, const reg_t& o);
389 void downshift(pixel_t& d, int component, component_t s, const reg_t& dither);
426 void init_iterated_color(fragment_parts_t& parts, const reg_t& x);
438 const reg_t& x,
439 const reg_t& y);