HomeSort by relevance Sort by last modified time
    Searched refs:QInt (Results 1 - 3 of 3) sorted by null

  /external/qemu/
qint.h 2 * QInt Module
19 typedef struct QInt {
22 } QInt;
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);
qint.c 2 * QInt Module
13 #include "qint.h"
25 * qint_from_int(): Create a new QInt from an int64_t
29 QInt *qint_from_int(int64_t value)
31 QInt *qi;
43 int64_t qint_get_int(const QInt *qi)
49 * qobject_to_qint(): Convert a QObject into a QInt
51 QInt *qobject_to_qint(const QObject *obj)
56 return container_of(obj, QInt, base);
61 * QInt objec
    [all...]
qjson.c 18 #include "qint.h"
129 QInt *val = qobject_to_qint(obj);

Completed in 1381 milliseconds