Lines Matching defs:word

144 	uint32_t word;
245 frame.eax.word = VM_MAGIC;
246 frame.ebx.word = ~VM_MAGIC;
254 if (frame.eax.word == 0xffffffff ||
255 frame.ebx.word != VM_MAGIC)
259 *type = frame.ecx.word;
442 frame.eax.word = VM_MAGIC;
447 if (frame.eax.word != 0xffffffff) {
448 ts.tv_sec = ((uint64_t)frame.esi.word << 32) | frame.edx.word;
449 ts.tv_nsec = frame.ebx.word * 1000;
810 frame.eax.word = VM_MAGIC;
811 frame.ebx.word = proto | VM_RPC_FLAG_COOKIE;
822 frame.eax.word, frame.ecx.word, frame.edx.word);
827 rpc->cookie1 = frame.esi.word;
828 rpc->cookie2 = frame.edi.word;
839 frame.eax.word = VM_MAGIC;
840 frame.ebx.word = 0;
845 frame.edi.word = rpc->cookie2;
846 frame.esi.word = rpc->cookie1;
852 frame.eax.word, frame.ecx.word);
870 frame.eax.word = VM_MAGIC;
871 frame.ebx.word = length;
876 frame.esi.word = rpc->cookie1;
877 frame.edi.word = rpc->cookie2;
883 frame.eax.word, frame.ecx.word);
892 frame.eax.word = VM_MAGIC;
893 frame.ebx.word = VM_RPC_ENH_DATA;
894 frame.ecx.word = length;
897 frame.ebp.word = rpc->cookie1;
898 frame.edi.word = rpc->cookie2;
902 frame.esi.word = (uint32_t)buf;
907 if (frame.ebx.word != VM_RPC_ENH_DATA) {
909 printf("vmware: send failed, ebx=%08x\n", frame.ebx.word);
930 frame.eax.word = VM_MAGIC;
931 frame.ebx.word = VM_RPC_ENH_DATA;
932 frame.ecx.word = length;
935 frame.esi.word = rpc->cookie1;
939 frame.edi.word = (uint32_t)data;
941 frame.ebp.word = rpc->cookie2;
948 if (frame.ebx.word != VM_RPC_ENH_DATA) {
950 frame.ebx.word);
956 frame.eax.word = VM_MAGIC;
957 frame.ebx.word = dataid;
962 frame.esi.word = rpc->cookie1;
963 frame.edi.word = rpc->cookie2;
969 frame.eax.word, frame.ecx.word);
982 frame.eax.word = VM_MAGIC;
983 frame.ebx.word = 0;
988 frame.esi.word = rpc->cookie1;
989 frame.edi.word = rpc->cookie2;
995 frame.eax.word, frame.ecx.word);
1002 *length = frame.ebx.word;
1083 frame.eax.word = VM_MAGIC;
1088 printf("eax 0x%08x\n", frame.eax.word);
1089 printf("ebx 0x%08x\n", frame.ebx.word);
1090 printf("ecx 0x%08x\n", frame.ecx.word);
1091 printf("edx 0x%08x\n", frame.edx.word);
1092 printf("ebp 0x%08x\n", frame.ebp.word);
1093 printf("edi 0x%08x\n", frame.edi.word);
1094 printf("esi 0x%08x\n", frame.esi.word);
1099 printf("eax 0x%08x\n", frame.eax.word);
1100 printf("ebx 0x%08x\n", frame.ebx.word);
1101 printf("ecx 0x%08x\n", frame.ecx.word);
1102 printf("edx 0x%08x\n", frame.edx.word);
1103 printf("ebp 0x%08x\n", frame.ebp.word);
1104 printf("edi 0x%08x\n", frame.edi.word);
1105 printf("esi 0x%08x\n", frame.esi.word);