HomeSort by relevance Sort by last modified time
    Searched refs:ent (Results 1 - 25 of 225) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libusb-compat/libusb/
usbi.h 25 #define LIST_ADD(begin, ent) \
28 ent->next = begin; \
29 ent->next->prev = ent; \
31 ent->next = NULL; \
32 ent->prev = NULL; \
33 begin = ent; \
36 #define LIST_DEL(begin, ent) \
38 if (ent->prev) \
39 ent->prev->next = ent->next;
    [all...]
  /external/quake/quake/src/WinQuake/
sv_move.cpp 37 qboolean SV_CheckBottom (edict_t *ent)
44 VectorAdd (ent->u.v.origin, ent->u.v.mins, mins);
45 VectorAdd (ent->u.v.origin, ent->u.v.maxs, maxs);
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
110 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink)
119 VectorCopy (ent->u.v.origin, oldorg);
120 VectorAdd (ent->u.v.origin, move, neworg)
395 edict_t *ent, *goal; local
    [all...]
sv_phys.cpp 54 void SV_Physics_Toss (edict_t *ent);
90 void SV_CheckVelocity (edict_t *ent)
99 if (IS_NAN(ent->u.v.velocity[i]))
101 Con_Printf ("Got a NaN velocity on %s\n", pr_strings + ent->u.v.classname);
102 ent->u.v.velocity[i] = 0;
104 if (IS_NAN(ent->u.v.origin[i]))
106 Con_Printf ("Got a NaN origin on %s\n", pr_strings + ent->u.v.classname);
107 ent->u.v.origin[i] = 0;
109 if (ent->u.v.velocity[i] > sv_maxvelocity.value)
110 ent->u.v.velocity[i] = sv_maxvelocity.value
1510 edict_t *ent; local
    [all...]
world.h 36 edict_t *ent; // entity the surface is on member in struct:__anon12108
48 void SV_UnlinkEdict (edict_t *ent);
51 // flags ent->v.modified
53 void SV_LinkEdict (edict_t *ent, qboolean touch_triggers);
55 // flags ent->v.modified
56 // sets ent->v.absmin and ent->v.absmax
65 edict_t *SV_TestEntityPosition (edict_t *ent);
cl_parse.cpp 104 int channel, ent; local
126 ent = channel >> 3;
129 if (ent > MAX_EDICTS)
130 Host_Error ("CL_ParseStartSoundPacket: ent = %i", ent);
135 S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0, attenuation);
336 entity_t *ent; local
357 ent = CL_EntityNum (num);
363 if (ent->msgtime != cl.mtime[1])
368 ent->msgtime = cl.mtime[0]
670 entity_t *ent; local
    [all...]
cl_main.cpp 251 entity_t *ent; local
254 for (i=0,ent=cl_entities ; i<cl.num_entities ; i++,ent++)
257 if (!ent->model)
263 ,ent->model->name,ent->frame, ent->origin[0], ent->origin[1], ent->origin[2], ent->angles[0], ent->angles[1], ent->angles[2])
444 entity_t *ent; local
    [all...]
sv_main.cpp 124 int ent; local
150 ent = NUM_FOR_EDICT(entity);
152 channel = (ent<<3) | channel;
245 edict_t *ent; local
258 ent = EDICT_NUM(edictnum);
271 client->edict = ent;
434 edict_t *ent; local
441 ent = NEXT_EDICT(sv.edicts);
442 for (e=1 ; e<sv.num_edicts ; e++, ent = NEXT_EDICT(ent))
560 edict_t *ent; local
1050 edict_t *ent; local
    [all...]
  /gdk/samples/quake/jni/
sv_move.cpp 37 qboolean SV_CheckBottom (edict_t *ent)
44 VectorAdd (ent->u.v.origin, ent->u.v.mins, mins);
45 VectorAdd (ent->u.v.origin, ent->u.v.maxs, maxs);
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
110 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink)
119 VectorCopy (ent->u.v.origin, oldorg);
120 VectorAdd (ent->u.v.origin, move, neworg)
395 edict_t *ent, *goal; local
    [all...]
sv_phys.cpp 54 void SV_Physics_Toss (edict_t *ent);
90 void SV_CheckVelocity (edict_t *ent)
99 if (IS_NAN(ent->u.v.velocity[i]))
101 Con_Printf ("Got a NaN velocity on %s\n", pr_strings + ent->u.v.classname);
102 ent->u.v.velocity[i] = 0;
104 if (IS_NAN(ent->u.v.origin[i]))
106 Con_Printf ("Got a NaN origin on %s\n", pr_strings + ent->u.v.classname);
107 ent->u.v.origin[i] = 0;
109 if (ent->u.v.velocity[i] > sv_maxvelocity.value)
110 ent->u.v.velocity[i] = sv_maxvelocity.value
1510 edict_t *ent; local
    [all...]
world.h 36 edict_t *ent; // entity the surface is on member in struct:__anon17652
48 void SV_UnlinkEdict (edict_t *ent);
51 // flags ent->v.modified
53 void SV_LinkEdict (edict_t *ent, qboolean touch_triggers);
55 // flags ent->v.modified
56 // sets ent->v.absmin and ent->v.absmax
65 edict_t *SV_TestEntityPosition (edict_t *ent);
cl_parse.cpp 104 int channel, ent; local
126 ent = channel >> 3;
129 if (ent > MAX_EDICTS)
130 Host_Error ("CL_ParseStartSoundPacket: ent = %i", ent);
135 S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0, attenuation);
336 entity_t *ent; local
357 ent = CL_EntityNum (num);
363 if (ent->msgtime != cl.mtime[1])
368 ent->msgtime = cl.mtime[0]
670 entity_t *ent; local
    [all...]
cl_main.cpp 251 entity_t *ent; local
254 for (i=0,ent=cl_entities ; i<cl.num_entities ; i++,ent++)
257 if (!ent->model)
263 ,ent->model->name,ent->frame, ent->origin[0], ent->origin[1], ent->origin[2], ent->angles[0], ent->angles[1], ent->angles[2])
444 entity_t *ent; local
    [all...]
sv_main.cpp 124 int ent; local
150 ent = NUM_FOR_EDICT(entity);
152 channel = (ent<<3) | channel;
245 edict_t *ent; local
258 ent = EDICT_NUM(edictnum);
271 client->edict = ent;
434 edict_t *ent; local
441 ent = NEXT_EDICT(sv.edicts);
442 for (e=1 ; e<sv.num_edicts ; e++, ent = NEXT_EDICT(ent))
560 edict_t *ent; local
1050 edict_t *ent; local
    [all...]
  /external/quake/quake/src/QW/server/
sv_move.c 37 qboolean SV_CheckBottom (edict_t *ent)
44 VectorAdd (ent->v.origin, ent->v.mins, mins);
45 VectorAdd (ent->v.origin, ent->v.maxs, maxs);
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
110 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink)
119 VectorCopy (ent->v.origin, oldorg);
120 VectorAdd (ent->v.origin, move, neworg)
395 edict_t *ent, *goal; local
    [all...]
sv_phys.c 57 void SV_Physics_Toss (edict_t *ent);
90 void SV_CheckVelocity (edict_t *ent)
99 if (IS_NAN(ent->v.velocity[i]))
101 Con_Printf ("Got a NaN velocity on %s\n", PR_GetString(ent->v.classname));
102 ent->v.velocity[i] = 0;
104 if (IS_NAN(ent->v.origin[i]))
106 Con_Printf ("Got a NaN origin on %s\n", PR_GetString(ent->v.classname));
107 ent->v.origin[i] = 0;
109 if (ent->v.velocity[i] > sv_maxvelocity.value)
110 ent->v.velocity[i] = sv_maxvelocity.value
876 edict_t *ent; local
896 edict_t *ent; local
    [all...]
sv_ents.c 98 qboolean SV_AddNailUpdate (edict_t *ent)
100 if (ent->v.modelindex != sv_nailmodel
101 && ent->v.modelindex != sv_supernailmodel)
105 nails[numnails] = ent;
114 edict_t *ent; local
125 ent = nails[n];
126 x = (int)(ent->v.origin[0]+4096)>>1;
127 y = (int)(ent->v.origin[1]+4096)>>1;
128 z = (int)(ent->v.origin[2]+4096)>>1;
129 p = (int)(16*ent->v.angles[0]/360)&15
252 edict_t *ent; local
326 edict_t *ent; local
452 edict_t *ent; local
    [all...]
world.h 36 edict_t *ent; // entity the surface is on member in struct:__anon11785
62 void SV_UnlinkEdict (edict_t *ent);
65 // flags ent->v.modified
67 void SV_LinkEdict (edict_t *ent, qboolean touch_triggers);
69 // flags ent->v.modified
70 // sets ent->v.absmin and ent->v.absmax
77 edict_t *SV_TestEntityPosition (edict_t *ent);
93 edict_t *SV_TestPlayerPosition (edict_t *ent, vec3_t origin);
  /external/openssh/
auth-sia.c 56 SIAENTITY *ent = NULL; local
64 if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user,
68 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) {
72 sia_ses_release(&ent);
77 sia_ses_release(&ent);
85 SIAENTITY *ent = NULL; local
90 if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name,
94 if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) {
95 sia_ses_release(&ent);
99 ent->authtype = SIA_A_NONE
    [all...]
  /external/e2fsprogs/lib/ext2fs/
brel.h 38 struct ext2_block_relocate_entry *ent);
44 struct ext2_block_relocate_entry *ent);
56 struct ext2_block_relocate_entry *ent);
79 #define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent))
80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
82 #define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent))
irel.h 36 struct ext2_inode_relocate_entry *ent);
41 struct ext2_inode_relocate_entry *ent);
47 struct ext2_inode_relocate_entry *ent);
59 struct ext2_inode_relocate_entry *ent);
103 #define ext2fs_irel_put(irel, old, ent) ((irel)->put((irel), old, ent))
104 #define ext2fs_irel_get(irel, old, ent) ((irel)->get((irel), old, ent))
105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \
106 ((irel)->get_by_orig((irel), orig, old, ent))
    [all...]
  /ndk/tests/build/build-assembly-file/jni/
assembly-mips.S 3 .ent foo
  /external/openssl/crypto/x509/
by_dir.c 187 static void by_dir_entry_free(BY_DIR_ENTRY *ent)
189 if (ent->dir)
190 OPENSSL_free(ent->dir);
191 if (ent->hashes)
192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
193 OPENSSL_free(ent);
225 BY_DIR_ENTRY *ent; local
232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
233 if (strlen(ent->dir) == (size_t)len &&
234 strncmp(ent->dir,ss,(unsigned int)len) == 0
328 BY_DIR_ENTRY *ent; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
nethelpers.cc 70 hostent* ent = gethostbyname(hostname); local
71 if (!ent) {
79 total_len += strlen(ent->h_name) + 1;
80 while (ent->h_aliases[num_aliases]) {
81 total_len += sizeof(char*) + strlen(ent->h_aliases[num_aliases]) + 1;
85 while (ent->h_addr_list[num_addrs]) {
86 total_len += sizeof(char*) + ent->h_length;
99 memcpy(p, ent->h_name, strlen(ent->h_name) + 1);
100 p += strlen(ent->h_name) + 1
    [all...]
  /external/e2fsprogs/util/
subst.c 37 struct subst_entry *ent = 0; local
41 ent = (struct subst_entry *) malloc(sizeof(struct subst_entry));
42 if (!ent)
44 ent->name = (char *) malloc(strlen(name)+1);
45 if (!ent->name)
47 ent->value = (char *) malloc(strlen(value)+1);
48 if (!ent->value)
50 strcpy(ent->name, name);
51 strcpy(ent->value, value);
52 ent->next = subst_table
66 struct subst_entry *ent; local
124 struct subst_entry *ent; local
    [all...]
  /external/e2fsprogs/resize/
extent.c 82 struct ext2_extent_entry *ent; local
98 ent = extent->list + curr;
104 ent--;
105 if ((ent->old_loc + ent->size == old_loc) &&
106 (ent->new_loc + ent->size == new_loc)) {
107 ent->size++;
113 if (ent->old_loc + ent->size > old_loc
194 struct ext2_extent_entry *ent; local
211 struct ext2_extent_entry *ent; local
    [all...]

Completed in 909 milliseconds

1 2 3 4 5 6 7 8 9