| /xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/linux/int10/vm86/ |
| linux_vm86.c | 47 unsigned char *csp, *lina; local 52 csp = lina = SEG_ADR((unsigned char *), X86_CS, IP); 61 switch (MEM_RB(pInt, (int) csp++)) { 96 csp--; /* oops one too many */ 98 X86_IP += (csp - lina); 100 switch (MEM_RB(pInt, (int) csp)) { 158 X86_EAX = x_inl(csp[1]); 160 X86_AX = x_inw(csp[1]); 165 X86_AL = x_inb(csp[1]); 184 x_outl(csp[1], X86_EAX) [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/linux/int10/vm86/ |
| linux_vm86.c | 47 unsigned char *csp, *lina; local 52 csp = lina = SEG_ADR((unsigned char *), X86_CS, IP); 61 switch (MEM_RB(pInt, (int)csp++)) { 76 csp--; /* oops one too many */ 78 X86_IP += (csp - lina); 80 switch (MEM_RB(pInt, (int)csp)) { 131 if (prefix66) X86_EAX = x_inl(csp[1]); 132 else X86_AX = x_inw(csp[1]); 137 X86_AL = x_inb(csp[1]); 153 if (prefix66) x_outl(csp[1], X86_EAX) [all...] |
| /xsrc/external/mit/xfs/dist/difs/ |
| dispatch.c | 340 fsConnSetup csp = { local 352 WriteSConnSetup(client, &csp); 354 (void) WriteToClient(client, SIZEOF(fsConnSetup), (char *) &csp);
|
| /xsrc/external/mit/xorg-server/dist/os/ |
| connection.c | 717 xConnSetupPrefix csp; local 722 csp.success = xFalse; 723 csp.lengthReason = sizeof(NOROOM) - 1; 724 csp.length = (sizeof(NOROOM) + 2) >> 2; 725 csp.majorVersion = X_PROTOCOL; 726 csp.minorVersion = X_PROTOCOL_REVISION; 729 swaps(&csp.majorVersion); 730 swaps(&csp.minorVersion); 731 swaps(&csp.length); 734 iov[0].iov_base = (char *) &csp; [all...] |
| /xsrc/external/mit/xorg-server.old/dist/os/ |
| connection.c | 883 xConnSetupPrefix csp; local 902 csp.success = xFalse; 903 csp.lengthReason = sizeof(NOROOM) - 1; 904 csp.length = (sizeof(NOROOM) + 2) >> 2; 905 csp.majorVersion = X_PROTOCOL; 906 csp.minorVersion = X_PROTOCOL_REVISION; 910 swaps(&csp.majorVersion, whichbyte); 911 swaps(&csp.minorVersion, whichbyte); 912 swaps(&csp.length, whichbyte); 915 iov[0].iov_base = (char *) &csp; [all...] |
| /xsrc/external/mit/xorg-server.old/dist/dix/ |
| dispatch.c | 3590 xConnSetupPrefix csp; local 3592 csp.success = xFalse; 3593 csp.lengthReason = strlen(reason); 3594 csp.length = bytes_to_int32(csp.lengthReason); 3595 csp.majorVersion = X_PROTOCOL; 3596 csp.minorVersion = X_PROTOCOL_REVISION; 3598 WriteSConnSetupPrefix(client, &csp); 3600 (void)WriteToClient(client, sz_xConnSetupPrefix, (char *) &csp); 3601 (void)WriteToClient(client, (int)csp.lengthReason, reason) [all...] |
| /xsrc/external/mit/xorg-server/dist/dix/ |
| dispatch.c | 3694 xConnSetupPrefix csp; local 3696 csp.success = xFalse; 3697 csp.lengthReason = strlen(reason); 3698 csp.length = bytes_to_int32(csp.lengthReason); 3699 csp.majorVersion = X_PROTOCOL; 3700 csp.minorVersion = X_PROTOCOL_REVISION; 3702 WriteSConnSetupPrefix(client, &csp); 3704 WriteToClient(client, sz_xConnSetupPrefix, &csp); 3705 WriteToClient(client, (int) csp.lengthReason, reason) [all...] |