Lines Matching defs:in
8 * "Software"), to deal in the Software without restriction, including
15 * included in all copies or substantial portions of the Software.
40 std::string in = "\xff";
41 auto out = base64::encode(std::begin(in), std::end(in));
45 std::string in = "\xff\xfe";
46 auto out = base64::encode(std::begin(in), std::end(in));
50 std::string in = "\xff\xfe\xfd";
51 auto out = base64::encode(std::begin(in), std::end(in));
55 std::string in = "\xff\xfe\xfd\xfc";
56 auto out = base64::encode(std::begin(in), std::end(in));
64 std::string in = "/w==";
65 auto out = base64::decode(std::begin(in), std::end(in));
67 CU_ASSERT("\xff" == base64::decode(balloc, std::begin(in), std::end(in)));
70 std::string in = "//4=";
71 auto out = base64::decode(std::begin(in), std::end(in));
74 base64::decode(balloc, std::begin(in), std::end(in)));
77 std::string in = "//79";
78 auto out = base64::decode(std::begin(in), std::end(in));
81 base64::decode(balloc, std::begin(in), std::end(in)));
84 std::string in = "//79/A==";
85 auto out = base64::decode(std::begin(in), std::end(in));
88 base64::decode(balloc, std::begin(in), std::end(in)));
92 std::string in = "//79=";
93 auto out = base64::decode(std::begin(in), std::end(in));
95 CU_ASSERT("" == base64::decode(balloc, std::begin(in), std::end(in)));
100 std::string in = "bmdodHRw\n";
101 auto out = base64::decode(std::begin(in), std::end(in));
103 CU_ASSERT("" == base64::decode(balloc, std::begin(in), std::end(in)));
107 std::string in = "//79/A=A";
108 auto out = base64::decode(std::begin(in), std::end(in));
110 CU_ASSERT("" == base64::decode(balloc, std::begin(in), std::end(in)));
114 std::string in = "//79/A======";
115 auto out = base64::decode(std::begin(in), std::end(in));
117 CU_ASSERT("" == base64::decode(balloc, std::begin(in), std::end(in)));