Lines Matching defs:where
72 move(int object, int where)
82 drop(object, where);
86 put(int object, int where, int pval)
88 move(object, where);
93 carry(int object, int where)
103 if (atloc[where] == object) {
104 atloc[where] = links[object];
107 for (temp = atloc[where]; links[temp] != object; temp = links[temp]);
113 drop(int object, int where)
116 fixed[object - 100] = where;
120 place[object] = where;
122 if (where <= 0)
124 links[object] = atloc[where];
125 atloc[where] = object;