/external/quake/quake/src/QW/client/ |
d_scan.c | 123 fixed16_t snext, tnext; local 193 tnext = (int)(tdivz * z) + tadjust; 194 if (tnext > bbextentt) 195 tnext = bbextentt; 196 else if (tnext < 16) 197 tnext = 16; // guard against round-off error on <0 steps 200 r_turb_tstep = (tnext - r_turb_t) >> 4; 221 tnext = (int)(tdivz * z) + tadjust; 222 if (tnext > bbextentt) 223 tnext = bbextentt 259 fixed16_t s, t, snext, tnext, sstep, tstep; local [all...] |
d_sky.c | 69 fixed16_t s, t, snext, tnext, sstep, tstep; local 102 D_Sky_uv_To_st (u, v, &snext, &tnext); 105 tstep = (tnext - t) >> SKY_SPAN_SHIFT; 116 D_Sky_uv_To_st (u, v, &snext, &tnext); 119 tstep = (tnext - t) / spancountminus1; 132 t = tnext;
|
d_sprite.c | 42 fixed16_t s, t, snext, tnext, sstep, tstep; local 120 tnext = (int)(tdivz * z) + tadjust; 121 if (tnext > bbextentt) 122 tnext = bbextentt; 123 else if (tnext < 8) 124 tnext = 8; // guard against round-off error on <0 steps 127 tstep = (tnext - t) >> 3; 148 tnext = (int)(tdivz * z) + tadjust; 149 if (tnext > bbextentt) 150 tnext = bbextentt [all...] |
d_varsa.s | 89 .globl pbase, s, t, sfracf, tfracf, snext, tnext 95 tnext: .long 0 label
|
d_draw.s | 328 fistpl tnext 330 movl tnext,%edx 359 movl %ecx,tnext 498 movl tnext,%ebx 533 fistpl tnext 541 addl tnext,%ebx 572 imull reciprocal_table-8(,%ecx,4) // tstep = (tnext - t) / (spancount-1)
|
d_draw16.s | 331 fistpl tnext 333 movl tnext,%edx 362 movl %ecx,tnext 557 movl tnext,%ebx 592 fistpl tnext 600 addl tnext,%ebx 632 imull reciprocal_table_16-8(,%ecx,4) // tstep = (tnext - t) /
|
d_spr8.s | 355 fistpl tnext 357 movl tnext,%edx 383 movl %ecx,tnext 586 movl tnext,%ebx 623 fistpl tnext 629 addl tnext,%ebx 659 imull reciprocal_table-8(,%ecx,4) // tstep = (tnext - t) / (spancount-1)
|
d_varsa.asm | 219 externdef tnext:dword
276 public pbase, s, t, sfracf, tfracf, snext, tnext
282 tnext dd 0
define
|
quakeasm.h | 246 .extern tnext
|
d_draw.asm | 219 externdef tnext:dword
424 fistp ds:dword ptr[tnext]
426 mov edx,ds:dword ptr[tnext]
448 mov ds:dword ptr[tnext],ecx
555 mov ebx,ds:dword ptr[tnext]
571 fistp ds:dword ptr[tnext]
577 add ebx,ds:dword ptr[tnext]
|
d_draw16.asm | 219 externdef tnext:dword
426 fistp ds:dword ptr[tnext]
428 mov edx,ds:dword ptr[tnext]
450 mov ds:dword ptr[tnext],ecx
605 mov ebx,ds:dword ptr[tnext]
621 fistp ds:dword ptr[tnext]
627 add ebx,ds:dword ptr[tnext]
|
d_spr8.asm | 219 externdef tnext:dword
447 fistp ds:dword ptr[tnext]
449 mov edx,ds:dword ptr[tnext]
469 mov ds:dword ptr[tnext],ecx
643 mov ebx,ds:dword ptr[tnext]
660 fistp ds:dword ptr[tnext]
664 add ebx,ds:dword ptr[tnext]
|
d_scana.asm | 219 externdef tnext:dword
|
r_varsa.asm | 219 externdef tnext:dword
|
/external/quake/quake/src/WinQuake/ |
d_scan.cpp | 125 fixed16_t snext, tnext;
local 195 tnext = (int)(tdivz * z) + tadjust;
196 if (tnext > bbextentt)
197 tnext = bbextentt;
198 else if (tnext < 16)
199 tnext = 16; // guard against round-off error on <0 steps
202 r_turb_tstep = (tnext - r_turb_t) >> 4;
223 tnext = (int)(tdivz * z) + tadjust;
224 if (tnext > bbextentt)
225 tnext = bbextentt; 261 fixed16_t s, t, snext, tnext, sstep, tstep; local [all...] |
d_sky.cpp | 69 fixed16_t s, t, snext, tnext, sstep, tstep;
local 102 D_Sky_uv_To_st (u, v, &snext, &tnext);
105 tstep = (tnext - t) >> SKY_SPAN_SHIFT;
116 D_Sky_uv_To_st (u, v, &snext, &tnext);
119 tstep = (tnext - t) / spancountminus1;
132 t = tnext;
|
d_sprite.cpp | 42 fixed16_t s, t, snext, tnext, sstep, tstep;
local 120 tnext = (int)(tdivz * z) + tadjust;
121 if (tnext > bbextentt)
122 tnext = bbextentt;
123 else if (tnext < 8)
124 tnext = 8; // guard against round-off error on <0 steps
127 tstep = (tnext - t) >> 3;
148 tnext = (int)(tdivz * z) + tadjust;
149 if (tnext > bbextentt)
150 tnext = bbextentt; [all...] |
d_varsa.s | 89 .globl pbase, s, t, sfracf, tfracf, snext, tnext 95 tnext: .long 0 label
|
d_draw.s | 328 fistpl tnext 330 movl tnext,%edx 359 movl %ecx,tnext 498 movl tnext,%ebx 533 fistpl tnext 541 addl tnext,%ebx 572 imull reciprocal_table-8(,%ecx,4) // tstep = (tnext - t) / (spancount-1)
|
d_draw16.s | 331 fistpl tnext 333 movl tnext,%edx 362 movl %ecx,tnext 557 movl tnext,%ebx 592 fistpl tnext 600 addl tnext,%ebx 632 imull reciprocal_table_16-8(,%ecx,4) // tstep = (tnext - t) /
|
d_spr8.s | 355 fistpl tnext 357 movl tnext,%edx 383 movl %ecx,tnext 586 movl tnext,%ebx 623 fistpl tnext 629 addl tnext,%ebx 659 imull reciprocal_table-8(,%ecx,4) // tstep = (tnext - t) / (spancount-1)
|
quakeasm.h | 252 .extern tnext
|
/external/ipsec-tools/src/racoon/ |
proposal.h | 114 * | |tnext |tnext 119 * |tnext 147 struct prop_pair *tnext; /* next prop_pair in same proposal payload */ member in struct:prop_pair
|
proposal.c | 798 for (t = p; t; t = t->tnext) { 1016 "%s%p: next=%p tnext=%p\n", spc, p, p->next, p->tnext); 1019 if (p->tnext) 1020 print_proppair0(pri, p->tnext, level + 1);
|
ipsec_doi.c | 266 for (p = s; p; p = p->tnext) { 837 if (rpair[n]->tnext != NULL) { 897 for (r = q; r; r = r->tnext) { 1071 for (x = p; x; x = x->tnext) 1091 for (/*nothing*/; x && x->tnext; x = x->tnext) 1093 x->tnext = n; 1133 s = r->tnext; 1267 for (q = p; q; q = q->tnext) [all...] |