Searched refs:byteToHex (Results 1 – 3 of 3) sorted by relevance
5 const byteToHex: string[] = []; constant7 byteToHex[i] = (i + 0x100).toString(16).substr(1);12 const bth = byteToHex;
5 const byteToHex = []; variable7 byteToHex[i] = (i + 0x100).toString(16).substr(1);11 const bth = byteToHex;
1 …byteToHex: string[] = [];\nfor (let i = 0; i < 256; ++i) {\n byteToHex[i] = (i + 0x100).toString(…