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

  /system/extras/tests/framebuffer/
refresh.c 45 struct fb_fix_screeninfo finfo; local
46 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
92 finfo.id,
111 printf("upper_margin=%d, lower_margin=%d, left_margin=%d, right_margin=%d, pixclock=%d, finfo.smem_len=%d\n",
112 info.upper_margin, info.lower_margin, info.left_margin, info.right_margin, info.pixclock, finfo.smem_len);
114 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
117 if (finfo.smem_len <= 0)
125 0, finfo.smem_len,
134 memset(buffer, 0, finfo.smem_len);
  /hardware/msm7k/libgralloc/
framebuffer.cpp 102 m->info.yoffset = offset / m->finfo.line_length;
127 //memcpy(fb_vaddr, buffer_vaddr, m->finfo.line_length * m->info.yres);
167 struct fb_fix_screeninfo finfo; local
168 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
253 finfo.id,
273 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
276 if (finfo.smem_len <= 0)
282 module->finfo = finfo;
292 size_t fbSize = roundUpToPageSize(finfo.line_length * info.yres_virtual)
    [all...]
gralloc_priv.h 54 struct fb_fix_screeninfo finfo; member in struct:private_module_t
gralloc.cpp 146 const size_t bufferSize = m->finfo.line_length * m->info.yres;
529 const size_t bufferSize = m->finfo.line_length * m->info.yres;
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 116 m->info.yoffset = offset / m->finfo.line_length;
138 //memcpy(fb_vaddr, buffer_vaddr, m->finfo.line_length * m->info.yres);
187 struct fb_fix_screeninfo finfo; local
188 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
289 finfo.id,
309 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
312 if (finfo.smem_len <= 0)
318 module->finfo = finfo;
328 size_t fbSize = roundUpToPageSize(finfo.line_length * info.yres_virtual)
    [all...]
gralloc_priv.h 74 struct fb_fix_screeninfo finfo; member in struct:private_module_t
gpu.cpp 66 const size_t bufferSize = m->finfo.line_length * m->info.yres;
279 const size_t bufferSize = m->finfo.line_length * m->info.yres;
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbvideo.c 152 static void FB_SavePalette(_THIS, struct fb_fix_screeninfo *finfo,
487 struct fb_fix_screeninfo finfo; local
518 if ( ioctl(console_fd, FBIOGET_FSCREENINFO, &finfo) < 0 ) {
523 switch (finfo.type) {
530 if ( finfo.type_aux == FB_AUX_VGA_PLANES_VGA4 ) {
546 switch (finfo.visual) {
562 finfo.accel = SDL_atoi(fb_accel);
567 mapped_offset = (((long)finfo.smem_start) -
568 (((long)finfo.smem_start)&~(pagesize-1)));
569 mapped_memlen = finfo.smem_len+mapped_offset
865 struct fb_fix_screeninfo finfo; local
924 struct fb_fix_screeninfo finfo; local
    [all...]
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 104 m->info.yoffset = offset / m->finfo.line_length;
129 memcpy(fb_vaddr, buffer_vaddr, m->finfo.line_length * m->info.yres);
164 struct fb_fix_screeninfo finfo; local
165 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
256 finfo.id,
276 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
279 if (finfo.smem_len <= 0)
285 module->finfo = finfo;
295 size_t fbSize = roundUpToPageSize(finfo.line_length * info.yres_virtual)
    [all...]
gralloc_priv.h 50 struct fb_fix_screeninfo finfo; member in struct:private_module_t
gralloc.cpp 122 const size_t bufferSize = m->finfo.line_length * m->info.yres;
257 const size_t bufferSize = m->finfo.line_length * m->info.yres;
  /external/bluetooth/glib/gobject/
gvaluetypes.c 381 const GTypeFundamentalInfo finfo = { G_TYPE_FLAG_DERIVABLE, }; local
398 type = g_type_register_fundamental (G_TYPE_CHAR, g_intern_static_string ("gchar"), &info, &finfo, 0);
400 type = g_type_register_fundamental (G_TYPE_UCHAR, g_intern_static_string ("guchar"), &info, &finfo, 0);
418 type = g_type_register_fundamental (G_TYPE_BOOLEAN, g_intern_static_string ("gboolean"), &info, &finfo, 0);
436 type = g_type_register_fundamental (G_TYPE_INT, g_intern_static_string ("gint"), &info, &finfo, 0);
438 type = g_type_register_fundamental (G_TYPE_UINT, g_intern_static_string ("guint"), &info, &finfo, 0);
456 type = g_type_register_fundamental (G_TYPE_LONG, g_intern_static_string ("glong"), &info, &finfo, 0);
458 type = g_type_register_fundamental (G_TYPE_ULONG, g_intern_static_string ("gulong"), &info, &finfo, 0);
476 type = g_type_register_fundamental (G_TYPE_INT64, g_intern_static_string ("gint64"), &info, &finfo, 0);
478 type = g_type_register_fundamental (G_TYPE_UINT64, g_intern_static_string ("guint64"), &info, &finfo, 0)
    [all...]
genums.c 105 static const GTypeFundamentalInfo finfo = { local
116 type = g_type_register_fundamental (G_TYPE_ENUM, g_intern_static_string ("GEnum"), &info, &finfo,
123 type = g_type_register_fundamental (G_TYPE_FLAGS, g_intern_static_string ("GFlags"), &info, &finfo,
testgobject.c 379 GTypeFundamentalInfo finfo = { 0, }; local
393 type = g_type_register_fundamental (g_type_fundamental_next (), "FooShadow1", &info, &finfo, 0);
395 type = g_type_register_fundamental (g_type_fundamental_next (), "FooShadow2", &info, &finfo, 0);
gtype.c 489 GTypeFundamentalInfo *finfo; local
502 finfo = type_node_fundamental_info_I (node);
503 finfo->type_flags = type_flags;
673 GTypeFundamentalInfo* finfo; local
683 finfo = type_node_fundamental_info_I (pnode);
685 if (!(finfo->type_flags & G_TYPE_FLAG_DERIVABLE))
694 !(finfo->type_flags & G_TYPE_FLAG_DEEP_DERIVABLE))
787 GTypeFundamentalInfo *finfo = type_node_fundamental_info_I (lookup_type_node_I (ftype)); local
793 if (!(finfo->type_flags & G_TYPE_FLAG_INSTANTIATABLE) &&
806 if (!((finfo->type_flags & G_TYPE_FLAG_CLASSED) || is_interface) &
3552 GTypeFundamentalInfo *finfo = type_node_fundamental_info_I (node); local
    [all...]
gboxed.c 129 const GTypeFundamentalInfo finfo = { G_TYPE_FLAG_DERIVABLE, }; local
136 type = g_type_register_fundamental (G_TYPE_BOXED, g_intern_static_string ("GBoxed"), &info, &finfo,
gparam.c 92 static const GTypeFundamentalInfo finfo = { local
130 type = g_type_register_fundamental (G_TYPE_PARAM, g_intern_static_string ("GParam"), &param_spec_info, &finfo, G_TYPE_FLAG_ABSTRACT);
    [all...]
gtype.h     [all...]
gobject.c 229 static const GTypeFundamentalInfo finfo = { local
262 type = g_type_register_fundamental (G_TYPE_OBJECT, g_intern_static_string ("GObject"), &info, &finfo, 0);
    [all...]
  /development/simulator/wrapsim/
DevFb.c 29 struct fb_fix_screeninfo finfo; member in struct:FbState
51 strcpy(fbState->finfo.id, "omapfb");
52 fbState->finfo.smem_len = (width * 2) * height * 2;
53 fbState->finfo.line_length = width * 2;
209 memcpy(argp, &state->finfo, sizeof(struct fb_fix_screeninfo));
  /hardware/msm7k/libcopybit/
copybit.cpp 463 struct fb_fix_screeninfo finfo;
464 if (ioctl(ctx->mFD, FBIOGET_FSCREENINFO, &finfo) == 0) {
465 if (strcmp(finfo.id, "msmfb") == 0) {
  /external/clearsilver/mod_ecs/
mod_ecs.c 714 if (S_ISDIR(r->finfo.st_mode))
717 if (r->finfo.st_mode == 0)
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 936 struct fb_fix_screeninfo finfo;
944 if ( ioctl(pMap->fd, FBIOGET_FSCREENINFO, &finfo) < 0 ) {
949 (((long)finfo.smem_start) -
950 (((long)finfo.smem_start)&~(PAGE_SIZE-1)))
953 size = pMap->size = finfo.smem_len;
  /hardware/qcom/media/mm-video/vidc/vdec/test/
omx_vdec_test.cpp 190 static struct fb_fix_screeninfo finfo; variable in typeref:struct:fb_fix_screeninfo
    [all...]

Completed in 879 milliseconds