Lines Matching refs:x61
42 testEnd('utf8', Buffer.of(0xE2), Buffer.of(0x61), '\uFFFDa');
45 testEnd('utf8', Buffer.of(0xE2, 0x82), Buffer.of(0x61), '\uFFFDa');
48 testEnd('utf8', Buffer.of(0xE2, 0x82, 0xAC), Buffer.of(0x61), '€a');
50 testEnd('utf16le', Buffer.of(0x3D), Buffer.of(0x61, 0x00), 'a');
53 testEnd('utf16le', Buffer.of(0x3D, 0xD8), Buffer.of(0x61, 0x00), '\uD83Da');
64 Buffer.of(0x61, 0x00),
71 Buffer.of(0x61, 0x00),
75 testEnd('base64', Buffer.of(0x61), Buffer.of(), 'YQ==');
76 testEnd('base64', Buffer.of(0x61), Buffer.of(0x61), 'YQ==YQ==');
77 testEnd('base64', Buffer.of(0x61, 0x61), Buffer.of(), 'YWE=');
78 testEnd('base64', Buffer.of(0x61, 0x61), Buffer.of(0x61), 'YWE=YQ==');
79 testEnd('base64', Buffer.of(0x61, 0x61, 0x61), Buffer.of(), 'YWFh');
80 testEnd('base64', Buffer.of(0x61, 0x61, 0x61), Buffer.of(0x61), 'YWFhYQ==');
82 testEnd('base64url', Buffer.of(0x61), Buffer.of(), 'YQ');
83 testEnd('base64url', Buffer.of(0x61), Buffer.of(0x61), 'YQYQ');
84 testEnd('base64url', Buffer.of(0x61, 0x61), Buffer.of(), 'YWE');
85 testEnd('base64url', Buffer.of(0x61, 0x61), Buffer.of(0x61), 'YWEYQ');
86 testEnd('base64url', Buffer.of(0x61, 0x61, 0x61), Buffer.of(), 'YWFh');
87 testEnd('base64url', Buffer.of(0x61, 0x61, 0x61), Buffer.of(0x61), 'YWFhYQ');