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

Unified Diff: runtime/vm/bigint_operations.h

Issue 8585049: Add an interface for retrieving the value of unsigned 64-bit integers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor consistency changes. Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/include/dart_api.h ('k') | runtime/vm/bigint_operations.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bigint_operations.h
diff --git a/runtime/vm/bigint_operations.h b/runtime/vm/bigint_operations.h
index ce2916c02d387f73fb871e92a838c8ea50e764ee..70d12e3935817d9d7cc07af82f71700f401a0d23 100644
--- a/runtime/vm/bigint_operations.h
+++ b/runtime/vm/bigint_operations.h
@@ -20,7 +20,7 @@ class BigintOperations : public AllStatic {
public:
static RawBigint* NewFromSmi(const Smi& smi, Heap::Space space = Heap::kNew);
static RawBigint* NewFromInt64(int64_t value, Heap::Space space = Heap::kNew);
- static RawBigint* NewFromUInt64(uint64_t value,
+ static RawBigint* NewFromUint64(uint64_t value,
Heap::Space space = Heap::kNew);
// The given string must be a valid integer representation. It may be
// prefixed by a minus and/or "0x".
@@ -57,9 +57,9 @@ class BigintOperations : public AllStatic {
static bool FitsIntoInt64(const Bigint& bigint);
static int64_t ToInt64(const Bigint& bigint);
- static bool FitsIntoUInt64(const Bigint& bigint);
- static uint64_t ToUInt64(const Bigint& bigint);
- static uint64_t AbsToUInt64(const Bigint& bigint);
+ static bool FitsIntoUint64(const Bigint& bigint);
+ static uint64_t ToUint64(const Bigint& bigint);
+ static uint64_t AbsToUint64(const Bigint& bigint);
static RawDouble* ToDouble(const Bigint& bigint);
« no previous file with comments | « runtime/include/dart_api.h ('k') | runtime/vm/bigint_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698