Searched defs:qf (Results 1 - 4 of 4) sorted by relevance

/external/qemu/
H A Dqfloat.c32 QFloat *qf; local
34 qf = qemu_malloc(sizeof(*qf));
35 qf->value = value;
36 QOBJECT_INIT(qf, &qfloat_type);
38 return qf;
44 double qfloat_get_double(const QFloat *qf) argument
46 return qf->value;
H A Dsavevm.c670 const QField* qf = fields; local
673 while (qf->type != Q_FIELD_END) {
674 uint8_t* p = (uint8_t*)s + qf->offset;
676 switch (qf->type) {
690 if (qf[1].type != Q_FIELD_BUFFER_SIZE ||
691 qf[2].type != Q_FIELD_BUFFER_SIZE)
699 uint32_t size = ((uint32_t)qf[1].offset << 16) | (uint32_t)qf[2].offset;
702 qf += 2;
709 qf
715 const QField* qf = fields; local
[all...]
/external/qemu/android/
H A Ddisplay.c77 void android_display_init(DisplayState* ds, QFrameBuffer* qf) argument
81 qframebuffer_set_producer(qf, ds,
88 ds->opaque = qf;
89 ds->surface = qemu_create_displaysurface_from(qf->width,
90 qf->height,
91 qf->bits_per_pixel,
92 qf->pitch,
93 qf->pixels);
/external/clang/test/Sema/
H A Daddress_spaces.c49 _AS1 ft qf; // expected-error {{function type may not be qualified with an address space}} variable

Completed in 75 milliseconds