Home
last modified time | relevance | path

Searched refs:php_phongo_parse_int64 (Results 1 – 7 of 7) sorted by relevance

/dports/databases/pecl-mongodb/mongodb-1.9.1/src/BSON/
H A DTimestamp.c58 if (!php_phongo_parse_int64(&increment, s_increment, s_increment_len)) { in php_phongo_timestamp_init_from_string()
63 if (!php_phongo_parse_int64(&timestamp, s_timestamp, s_timestamp_len)) { in php_phongo_timestamp_init_from_string()
H A DInt64.c47 if (!php_phongo_parse_int64(&integer, s_integer, s_integer_len)) { in php_phongo_int64_init_from_string()
H A DUTCDateTime.c52 if (!php_phongo_parse_int64(&milliseconds, s_milliseconds, s_milliseconds_len)) { in php_phongo_utcdatetime_init_from_string()
/dports/databases/pecl-mongodb/mongodb-1.9.1/src/MongoDB/
H A DCursorId.c37 if (!php_phongo_parse_int64(&id, s_id, s_id_len)) { in php_phongo_cursorid_init_from_string()
H A DWriteConcern.c69 if (!php_phongo_parse_int64(&timeout, Z_STRVAL_P(wtimeout), Z_STRLEN_P(wtimeout))) { in php_phongo_writeconcern_init_from_hash()
/dports/databases/pecl-mongodb/mongodb-1.9.1/
H A Dphp_phongo.h148 bool php_phongo_parse_int64(int64_t* retval, const char* data, size_t data_len);
H A Dphp_phongo.c3326 bool php_phongo_parse_int64(int64_t* retval, const char* data, size_t data_len) /* {{{ */ in php_phongo_parse_int64() function