Lines Matching refs:array
157 * array - pointer to an array of unsigned characters.
158 * array_offset - offset into the array from which to pull the first
162 #define WRITE_SCRATCH_STRING(dwords, bytes, array, array_offset) \
165 _asm { mov esi, array } \
183 * array - pointer to an array of unsigned characters.
184 * array_offset - offset into the array from which to pull the first
188 #define WRITE_FRAME_BUFFER_STRING32(fboffset, bytes, array, array_offset) \
195 _asm { mov esi, array } \
211 * array - pointer to an array of unsigned characters.
212 * array_offset - offset into the array from which to pull the first
216 #define WRITE_SCRATCH_STRING(dword_bytes, bytes_extra, array, array_offset) \
219 unsigned long aroffset = (unsigned long)array + (array_offset); \
246 * array - pointer to an array of unsigned characters.
247 * array_offset - offset into the array from which to pull the first
251 #define WRITE_FRAME_BUFFER_STRING32(fboffset, bytes, array, array_offset) \
254 unsigned long aroffset = (unsigned long)array + (array_offset); \
269 * array - pointer to an array of unsigned characters.
270 * array_offset - offset into the array from which to pull the first
274 #define WRITE_FRAME_BUFFER_STRING8(fboffset, bytes, array, array_offset) \
277 unsigned long aroffset = (unsigned long)array + (array_offset); \
292 * array - pointer to an array of unsigned characters.
293 * array_offset - offset into the array from which to pull the first
300 #define WRITE_GPREG_STRING32(regoffset, dwords, counter, array, \
303 temp = (unsigned long)array + (array_offset); \
323 * array - pointer to an array of unsigned characters.
324 * array_offset - offset into the array from which to pull the first
333 #define WRITE_GPREG_STRING8(regoffset, bytes, shift, counter, array, \
337 temp1 = (unsigned long)array + (array_offset); \