Home | History | Annotate | Download | only in tools

Lines Matching refs:array

974 		return "pmalloc sizes array";
2646 uint8_t array[2] = { 0x00, 0x00 };
2649 err = csr_read_pskey_complex(dd, seqnum, pskey, stores, array, 2);
2651 *value = array[0] + (array[1] << 8);
2658 uint8_t array[2] = { value & 0xff, value >> 8 };
2660 return csr_write_pskey_complex(dd, seqnum, pskey, stores, array, 2);
2665 uint8_t array[4] = { 0x00, 0x00, 0x00, 0x00 };
2668 err = csr_read_pskey_complex(dd, seqnum, pskey, stores, array, 4);
2670 *value = ((array[0] + (array[1] << 8)) << 16) +
2671 (array[2] + (array[3] << 8));
2678 uint8_t array[4] = { (value & 0xff0000) >> 16, value >> 24,
2681 return csr_write_pskey_complex(dd, seqnum, pskey, stores, array, 4);
2748 uint8_t array[256];
2762 array[length++] = value & 0xff;
2763 array[length++] = value >> 8;
2771 return psr_put(pskey, array, length);
2830 uint8_t array[256];
2836 if (psr_get(&pskey, array, &length) < 0)
2848 printf(" %02x%02x", array[i * 2 + 1], array[i * 2]);