Searched defs:o (Results 1 – 2 of 2) sorted by relevance
106 #define G_FLOAT(o) (pr_globals[o]) argument107 #define G_INT(o) (*(int *)&pr_globals[o]) argument108 #define G_EDICT(o) ((edict_t *)((byte *)sv.edicts+ *(int *)&pr_globals[o])) argument109 #define G_EDICTNUM(o) NUM_FOR_EDICT(G_EDICT(o)) argument110 #define G_VECTOR(o) (&pr_globals[o]) argument111 #define G_STRING(o) (pr_strings + *(string_t *)&pr_globals[o]) argument112 #define G_FUNCTION(o) (*(func_t *)&pr_globals[o]) argument114 #define E_FLOAT(e,o) (((float*)&e->u.v)[o]) argument115 #define E_INT(e,o) (*(int *)&((float*)&e->u.v)[o]) argument116 #define E_VECTOR(e,o) (&((float*)&e->u.v)[o]) argument[all …]
296 int i, j, c, o; in PR_EnterFunction() local