| /xsrc/external/mit/MesaLib.old/dist/src/hgl/ |
| GLDispatcher.h | 36 struct _glapi_table* Table(); 64 BGLDispatcher::Table()
|
| /xsrc/external/mit/xf86-video-openchrome/dist/src/ |
| via_ch7xxx.c | 110 /* single init table --> single channel LVDS transmitter ? */ 116 /* dual init table --> dual channel LVDS transmitter ? */ 264 " Mode \"%s\" not found in Table\n", mode->name); 283 " Mode \"%s\" not found in Table\n", mode->name); 336 struct CH7xxxTableRec Table; 340 Table = CH7011Table[CH7011ModeIndex(pScrn, mode)]; 345 Table = CH7019Table[CH7019ModeIndex(pScrn, mode)]; 356 xf86I2CWriteByte(pBIOSInfo->TVI2CDev, i, Table.TV[i]); 364 CARD16 *DotCrawl = Table.DotCrawlNTSC; 398 xf86I2CWriteByte(pBIOSInfo->TVI2CDev, Table.Patch2[i] & 0xFF, Table.Patch2[i] >> 8) [all...] |
| via_vt162x.c | 408 " Mode \"%s\" not found in Table\n", mode->name); 448 struct VT162XTableRec *Table; 454 Table = VT1622Table; 456 Table = VT1625Table; 458 Table = VT1623Table; 460 for (i = 0; Table[i].Width; i++) { 463 Table[i].Width, mode->CrtcHDisplay, 464 Table[i].Height, mode->CrtcVDisplay, 465 Table[i].Standard, pBIOSInfo->TVType, 466 Table[i].name, mode->name) [all...] |
| /xsrc/external/mit/xmag/dist/ |
| ScaleP.h | 55 } Table; 87 Table table; member in struct:__anon9741
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/x11/ |
| glxapi.c | 27 * This is the GLX API dispatcher. It uses a dispatch table but that's 28 * not really needed anymore since the table always points to the "fake" 47 struct _glxapi_table *Table; 97 prevTable = d->Table; 98 return d->Table; /* done! */ 104 /* Setup the dispatch table */ 113 d->Table = t; 132 #define GET_DISPATCH(DPY, TABLE) \ 134 TABLE = prevTable; \ 137 TABLE = NULL; [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/x11/ |
| glxapi.c | 27 * This is the GLX API dispatcher. It uses a dispatch table but that's 28 * not really needed anymore since the table always points to the "fake" 47 struct _glxapi_table *Table; 101 prevTable = d->Table; 102 return d->Table; /* done! */ 108 /* Setup the dispatch table */ 117 d->Table = t; 136 #define GET_DISPATCH(DPY, TABLE) \ 138 TABLE = prevTable; \ 141 TABLE = NULL; [all...] |
| /xsrc/external/mit/libXt/dist/util/ |
| makestrs.c | 48 } Table; 54 Table *table; member in struct:_File 55 Table *tablecurrent; 56 Table **tabletail; 124 Table *t; 128 for (t = phile->table; t; t = t->next) { 149 Table *t; 154 for (t = phile->table; t; t = t->next) { 172 Table *t 595 Table *table; local [all...] |
| /xsrc/external/mit/bitmap/dist/ |
| Graphics.c | 1631 } Table; 1639 Table table; local 1657 table.x = (Position *) XtMalloc(sizeof(Position) * src->width); 1658 table.y = (Position *) XtMalloc(sizeof(Position) * src->height); 1659 table.width = (Dimension *) XtMalloc(sizeof(Dimension) * src->width); 1660 table.height = (Dimension *) XtMalloc(sizeof(Dimension) * src->height); 1663 table.x[x] = rint(scale_x * x); 1664 table.width[x] = rint(scale_x * (x + 1)) - rint(scale_x * x); 1667 table.y[y] = rint(scale_y * y) [all...] |
| /xsrc/external/mit/xwud/dist/ |
| xwud.c | 344 Error("Can't malloc color table"); 756 } Table; 767 Table table; local 813 table.x = (Position *) malloc(sizeof(Position) * (src_image->width + 1)); 814 if (table.x == NULL) 815 Error("Can't malloc scaled image X table"); 816 table.y = (Position *) malloc(sizeof(Position) * (src_image->height + 1)); 817 if (table.y == NULL) 818 Error("Can't malloc scaled image Y table"); [all...] |