Lines Matching defs:value
48 u32 value = 0;
56 value |= BIT(i);
61 return value;
93 * Read accesses to both GICD_ICENABLER and GICD_ISENABLER return the value
100 u32 value = 0;
108 value |= (1U << i);
113 return value;
234 u32 value = 0;
258 value |= ((u32)val << i);
264 return value;
485 u32 value = 0;
497 value |= (1U << i);
502 return value;
711 u32 value = 0;
718 value |= (2U << (i * 2));
723 return value;
853 * kvm_mmio_read_buf() returns a value in a format where it can be converted
858 * We convert this value to the CPUs native format to deal with it as a data
859 * value.
878 * kvm_mmio_write_buf() expects a value in a format such that if converted to
881 * guest expects a value in little endian format.
883 * We convert the data value from the CPUs native format to LE so that the
884 * value is returned in the proper format.