Lines Matching defs:type

28 int oper0(int type);
29 int oper1(int type, int arg1);
30 int oper2(int type, int arg1, int arg2);
31 int oper3(int type, int arg1, int arg2, int arg3);
32 int oper4(int type, int arg1, int arg2, int arg3, int arg4);
33 int oper5(int type, int arg1, int arg2, int arg3, int arg4, int arg5);
150 int type, len;
153 type = ops[i].ival;
154 len = type >> 8;
155 type &= 255;
156 printf("%d\t%d\t%d\t%-10s",i++,type,len,opname[type]);
157 if (type == OSTRING)
931 oper0(int type)
935 if (type > 255)
936 fatal("type > 255 (%d)\n",type);
937 ops[mop++].ival = type;
944 oper1(int type, int arg1)
948 if (type > 255)
949 fatal("type > 255 (%d)\n",type);
950 ops[mop++].ival = type + (1<<8);
958 oper2(int type, int arg1, int arg2)
962 if (type > 255)
963 fatal("type > 255 (%d)\n",type);
964 ops[mop++].ival = type + (2<<8);
973 oper3(int type, int arg1, int arg2, int arg3)
977 if (type > 255)
978 fatal("type > 255 (%d)\n",type);
979 ops[mop++].ival = type + (3<<8);
989 oper4(int type, int arg1, int arg2, int arg3, int arg4)
993 if (type > 255)
994 fatal("type > 255 (%d)\n",type);
995 ops[mop++].ival = type + (4<<8);
1006 oper5(int type, int arg1, int arg2, int arg3, int arg4, int arg5)
1010 if (type > 255)
1011 fatal("type > 255 (%d)\n",type);
1012 ops[mop++].ival = type + (5<<8);
1028 register int type;
1032 type = ops[branch].ival;
1033 len = type >> 8;
1034 type &= 255;
1037 if (type == OSTRING) {
1041 printf("(%-5d%s %d\n",branch,opname[type],len);
1206 int type;
1211 type = ops[arg].ival & 255;
1212 if (type == OCOMMA) {
1216 else if (type == OVAR) {
1221 fatal("panic: unknown argument type %d, line %d\n",type,line);
1228 int type = ops[arg].ival & 255;
1231 if (type != OSTRING)
1232 fatal("panic: aryrefarg %d, line %d\n",type,line);
1242 int type;
1248 type = ops[arg].ival & 255;
1249 if (type == OCOMMA) {
1253 else if (type == OVAR) {
1270 fatal("panic: unknown argument type %d, arg %d, line %d\n",
1271 type,prevargs+1,line);
1278 int type;
1284 type = ops[arg].ival & 255;
1285 if (type == OCOMMA) {
1295 if (type == OVAR || type == OSTAR) {