Home
last modified time | relevance | path

Searched defs:o (Results 1 – 2 of 2) sorted by relevance

/gdk/samples/quake/jni/
Dprogs.h106 #define G_FLOAT(o) (pr_globals[o]) argument
107 #define G_INT(o) (*(int *)&pr_globals[o]) argument
108 #define G_EDICT(o) ((edict_t *)((byte *)sv.edicts+ *(int *)&pr_globals[o])) argument
109 #define G_EDICTNUM(o) NUM_FOR_EDICT(G_EDICT(o)) argument
110 #define G_VECTOR(o) (&pr_globals[o]) argument
111 #define G_STRING(o) (pr_strings + *(string_t *)&pr_globals[o]) argument
112 #define G_FUNCTION(o) (*(func_t *)&pr_globals[o]) argument
114 #define E_FLOAT(e,o) (((float*)&e->u.v)[o]) argument
115 #define E_INT(e,o) (*(int *)&((float*)&e->u.v)[o]) argument
116 #define E_VECTOR(e,o) (&((float*)&e->u.v)[o]) argument
[all …]
Dpr_exec.cpp296 int i, j, c, o; in PR_EnterFunction() local