Home
last modified time | relevance | path

Searched refs:MS_TM (Results 1 – 3 of 3) sorted by relevance

/freebsd-9-stable/crypto/openssl/crypto/
Dtmdiff.h79 typedef struct ms_tm MS_TM; typedef
81 MS_TM *ms_time_new(void);
82 void ms_time_free(MS_TM * a);
83 void ms_time_get(MS_TM * a);
84 double ms_time_diff(MS_TM * start, MS_TM * end);
85 int ms_time_cmp(const MS_TM * ap, const MS_TM * bp);
Dtmdiff.c149 MS_TM *ms_time_new(void) in ms_time_new()
151 MS_TM *ret; in ms_time_new()
153 ret = (MS_TM *) OPENSSL_malloc(sizeof(MS_TM)); in ms_time_new()
156 memset(ret, 0, sizeof(MS_TM)); in ms_time_new()
163 void ms_time_free(MS_TM * a) in ms_time_free()
169 void ms_time_get(MS_TM * tm) in ms_time_get()
192 double ms_time_diff(MS_TM * a, MS_TM * b) in ms_time_diff()
230 int ms_time_cmp(const MS_TM * a, const MS_TM * b) in ms_time_cmp()
/freebsd-9-stable/crypto/openssl/
DCHANGES1722 its object type properly exposed (MS_TM) instead of casting to/from "char
1723 *". This may still change yet if someone realises MS_TM and "ms_time_***"