OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:offset_hms
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/openssl/openssl/crypto/
o_time.c
240
int
offset_hms
, offset_day;
local
246
offset_hms
= offset_sec - (offset_day * SECS_PER_DAY);
249
offset_hms
+= tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec;
251
if (
offset_hms
>= SECS_PER_DAY)
254
offset_hms
-= SECS_PER_DAY;
256
else if (
offset_hms
< 0)
259
offset_hms
+= SECS_PER_DAY;
290
tm->tm_hour =
offset_hms
/ 3600;
291
tm->tm_min = (
offset_hms
/ 60) % 60;
292
tm->tm_sec =
offset_hms
% 60
[
all
...]
/external/openssl/crypto/
o_time.c
240
int
offset_hms
, offset_day;
local
246
offset_hms
= offset_sec - (offset_day * SECS_PER_DAY);
249
offset_hms
+= tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec;
251
if (
offset_hms
>= SECS_PER_DAY)
254
offset_hms
-= SECS_PER_DAY;
256
else if (
offset_hms
< 0)
259
offset_hms
+= SECS_PER_DAY;
290
tm->tm_hour =
offset_hms
/ 3600;
291
tm->tm_min = (
offset_hms
/ 60) % 60;
292
tm->tm_sec =
offset_hms
% 60
[
all
...]
Completed in 45 milliseconds