Home | History | Annotate | Download | only in AssemblerX8632

Lines Matching defs:verifyBytes

79   // verifyBytes is a template helper that takes a Buffer, and a variable number
82 template <int N, int I> static bool verifyBytes(const uint8_t *) {
88 static bool verifyBytes(const uint8_t *Buffer, uint8_t Byte,
92 return verifyBytes<N, I + 1>(Buffer, OtherBytes...) && Buffer[I] == Byte;