OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:two32
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
conversions-inl.h
95
static const double
two32
= 4294967296.0;
local
98
if (x < 0 || x >=
two32
) x = modulo(x,
two32
);
99
x = (x >= 0) ? floor(x) : ceil(x) +
two32
;
100
return (int32_t) ((x >= two31) ? x -
two32
: x);
/external/blktrace/
blkparse.c
576
__u32
two32
[2];
local
584
if (bit->pdu_len != sizeof(
two32
))
586
memcpy(
two32
, payload, sizeof(
two32
));
588
two32
[0] = be32_to_cpu(
two32
[0]);
589
two32
[1] = be32_to_cpu(
two32
[1]);
592
abs_start_time.tv_sec =
two32
[0];
593
abs_start_time.tv_nsec =
two32
[1]
[
all
...]
Completed in 41 milliseconds