OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uint128_pod
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/net/base/
int128.cc
9
const
uint128_pod
kuint128max = {
int128.h
12
struct
uint128_pod
;
23
uint128(const
uint128_pod
&val);
67
struct
uint128_pod
{
struct
77
NET_EXPORT_PRIVATE extern const
uint128_pod
kuint128max;
110
inline uint128::uint128(const
uint128_pod
&v) : lo_(v.lo), hi_(v.hi) { }
int128_unittest.cc
118
uint128_pod
pod = { 12345, 67890 };
124
uint128_pod
zero_pod = {0, 0};
126
uint128_pod
one_pod = {0, 1};
128
uint128_pod
two_pod = {0, 2};
130
uint128_pod
three_pod = {0, 3};
132
uint128_pod
big_pod = {1, 0};
Completed in 3460 milliseconds