Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Result

45   uint64_t Result = 0;
47 uint64_t OldRes = Result;
48 Result *= 10;
49 Result += *Buffer-'0';
50 if (Result < OldRes) { // Uh, oh, overflow detected!!!
55 return Result;
59 uint64_t Result = 0;
61 uint64_t OldRes = Result;
62 Result *= 16;
65 Result += C-'0';
67 Result += C-'A'+10;
69 Result += C-'a'+10;
71 if (Result < OldRes) { // Uh, oh, overflow detected!!!
76 return Result;