Home
last modified time | relevance | path

Searched refs:cpos (Results 1 – 9 of 9) sorted by relevance

/linux-2.4.37.9/fs/fat/
Ddir.c202 loff_t i_pos, cpos = 0; in fat_search_long() local
205 if (fat_get_entry(inode,&cpos,&bh,&de,&i_pos) == -1) in fat_search_long()
256 if (fat_get_entry(inode,&cpos,&bh,&de,&i_pos)<0) in fat_search_long()
343 *spos = cpos - sizeof(struct msdos_dir_entry); in fat_search_long()
344 *lpos = cpos - res*sizeof(struct msdos_dir_entry); in fat_search_long()
373 loff_t i_pos, cpos; in fat_readdirx() local
375 cpos = filp->f_pos; in fat_readdirx()
378 while (cpos < 2) { in fat_readdirx()
379 if (filldir(dirent, "..", cpos+1, cpos, MSDOS_ROOT_INO, DT_DIR) < 0) in fat_readdirx()
381 cpos++; in fat_readdirx()
[all …]
/linux-2.4.37.9/drivers/video/
Dsun3fb.c278 fb->cursor.cpos.fbx = (x << fontwidthlog(p)) + fb->x_margin; in sun3fb_cursor()
280 fb->cursor.cpos.fbx = (x * fontwidth(p)) + fb->x_margin; in sun3fb_cursor()
282 fb->cursor.cpos.fby = (y << fontheightlog(p)) + fb->y_margin; in sun3fb_cursor()
284 fb->cursor.cpos.fby = (y * fontheight(p)) + fb->y_margin; in sun3fb_cursor()
Dsbusfb.c425 fb->cursor.cpos = f.pos; in sbus_hw_scursor()
480 fb->cursor.cpos.fbx = (x << fontwidthlog(p)) + fb->x_margin; in sbusfb_cursor()
482 fb->cursor.cpos.fbx = (x * fontwidth(p)) + fb->x_margin; in sbusfb_cursor()
484 fb->cursor.cpos.fby = (y << fontheightlog(p)) + fb->y_margin; in sbusfb_cursor()
486 fb->cursor.cpos.fby = (y * fontheight(p)) + fb->y_margin; in sbusfb_cursor()
707 if (copy_from_user(&fb->cursor.cpos, (void *)arg, sizeof(struct fbcurpos))) in sbusfb_ioctl()
Dtcxfb.c192 v = ((c->cpos.fbx - c->chot.fbx) << 16) in tcx_setcursor()
193 |((c->cpos.fby - c->chot.fby) & 0xffff); in tcx_setcursor()
Dcgfourteenfb.c254 sbus_writew(((c->cpos.fbx - c->chot.fbx) & 0xfff), &cur->cursx); in cg14_setcursor()
255 sbus_writew(((c->cpos.fby - c->chot.fby) & 0xfff), &cur->cursy); in cg14_setcursor()
Dleofb.c526 sbus_writel(((c->cpos.fbx - c->chot.fbx) & 0x7ff) | in leo_setcursor()
527 (((c->cpos.fby - c->chot.fby) & 0x7ff) << 11), in leo_setcursor()
Dcgsixfb.c576 v = ((c->cpos.fbx - c->chot.fbx) << 16) in cg6_setcursor()
577 |((c->cpos.fby - c->chot.fby) & 0xffff); in cg6_setcursor()
Dcreatorfb.c736 val = (((c->cpos.fby - c->chot.fby) & 0xffff) << 16) in ffb_setcursor()
737 |((c->cpos.fbx - c->chot.fbx) & 0xffff); in ffb_setcursor()
/linux-2.4.37.9/include/video/
Dsbusfb.h67 struct fbcurpos cpos; /* position */ member