Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: base/strings/string_number_conversions_dup.cc

Issue 2595063002: debuggng for PR31361
Patch Set: build on android too Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/BUILD.gn ('k') | base/strings/string_number_conversions_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <string>
2 #include <vector>
3 #include <stdint.h>
4
5 namespace hack {
6
7 bool CharToDigit(char c, uint8_t* digit) {
8 if (c >= '0' && c <= '9') {
9 *digit = c - '0';
10 } else if (c >= 'a' && c < 'a' + 16 - 10) {
11 *digit = c - 'a' + 10;
12 } else if (c >= 'A' && c < 'A' + 16 - 10) {
13 *digit = c - 'A' + 10;
14 } else {
15 return false;
16 }
17 return true;
18 }
19
20 bool HexStringToBytes(const std::string& input, std::vector<uint8_t>* output) {
21 size_t count = input.size();
22 if (count == 0 || (count % 2) != 0)
23 return false;
24 for (uintptr_t i = 0; i < count / 2; ++i) {
25 uint8_t msb = 0; // most significant 4 bits
26 uint8_t lsb = 0; // least significant 4 bits
27 if (!CharToDigit(input[i * 2], &msb) ||
28 !CharToDigit(input[i * 2 + 1], &lsb))
29 return false;
30 output->push_back((msb << 4) | lsb);
31 }
32 return true;
33 }
34
35 void f() {
36 // Make sure we have 1MB of code, so that the string accesses above have to
37 // use adrp instead of adr.
38 __asm__(".zero 1048576");
39 }
40
41 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/strings/string_number_conversions_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698