Home
last modified time | relevance | path

Searched refs:uint8ArrayToString (Results 1 – 2 of 2) sorted by relevance

/developtools/smartperf_host/smartperf_host/ide/test/hdc/common/
DBaseConversion.test.ts15 import { toHex8, toHex16, toHex32, toHex64, uint8ArrayToString } from '../../../src/hdc/common/Base…
51 expect(uint8ArrayToString([21, 31], false)).toEqual('2131');
55 expect(uint8ArrayToString([21, 31], true)).toEqual('151f');
/developtools/smartperf_host/smartperf_host/ide/src/hdc/common/
DBaseConversion.ts52 export function uint8ArrayToString(array: Uint8Array, convertToHex16: boolean): string { function