Lines Matching refs:data
26 * We have to take this into account when implementing the data read-methods.
36 u32 data;
38 /* Read data within offset dword. */
40 data = readl_relaxed(src - shift);
42 ret.x[0] = data;
45 ret.x[0] = data >> (shift * BITS_PER_BYTE);
47 /* Read data from the next dword. */
52 data = readl_relaxed(src + shift);
53 ret.x[0] |= data << (shift * BITS_PER_BYTE);
64 u32 data;
73 * Since requested data size can be pretty big we have to implement
81 data = readl_relaxed(src - shift);
82 memcpy(to, (char *)&data + shift, chunk);
89 data = readl_relaxed(src);
90 memcpy(to, &data, 4);
97 data = readl_relaxed(src);
98 memcpy(to, &data, len);