mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Merged-In: I21bb7c28aa774801cad94cd530ccb6b5c3b621e0 Change-Id: I21bb7c28aa774801cad94cd530ccb6b5c3b621e0 Bug: 143566068
13 lines
508 B
Plaintext
13 lines
508 B
Plaintext
package android.hardware.tests.memory@2.0;
|
|
|
|
interface IMemoryInterface {
|
|
// Flips all the bits in the given memory buffer.
|
|
bitwiseNot(memory mem);
|
|
// Returns a read-only buffer of size 8, containing the bytes 0..7.
|
|
getTestMem() generates(memory mem);
|
|
// Given two memory regions of the same size, returns two memory fields of
|
|
// equal size, the first contains the byte-wise sum and the other the byte-
|
|
// wise difference.
|
|
getSumDiff(TwoMemory in) generates(TwoMemory out);
|
|
};
|