Home
last modified time | relevance | path

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

/external/qemu/
Dqint.h19 typedef struct QInt { struct
22 } QInt; argument
24 QInt *qint_from_int(int64_t value);
25 int64_t qint_get_int(const QInt *qi);
26 QInt *qobject_to_qint(const QObject *obj);
Dqint.c29 QInt *qint_from_int(int64_t value) in qint_from_int()
31 QInt *qi; in qint_from_int()
43 int64_t qint_get_int(const QInt *qi) in qint_get_int()
51 QInt *qobject_to_qint(const QObject *obj) in qobject_to_qint()
56 return container_of(obj, QInt, base); in qobject_to_qint()
Dqjson.c129 QInt *val = qobject_to_qint(obj); in to_json()