/external/quake/quake/src/QW/client/ |
D | d_scan.c | 123 fixed16_t snext, tnext; in Turbulent8() local 193 tnext = (int)(tdivz * z) + tadjust; in Turbulent8() 194 if (tnext > bbextentt) in Turbulent8() 195 tnext = bbextentt; in Turbulent8() 196 else if (tnext < 16) in Turbulent8() 197 tnext = 16; // guard against round-off error on <0 steps in Turbulent8() 200 r_turb_tstep = (tnext - r_turb_t) >> 4; in Turbulent8() 221 tnext = (int)(tdivz * z) + tadjust; in Turbulent8() 222 if (tnext > bbextentt) in Turbulent8() 223 tnext = bbextentt; in Turbulent8() [all …]
|
D | d_sprite.c | 42 fixed16_t s, t, snext, tnext, sstep, tstep; in D_SpriteDrawSpans() local 120 tnext = (int)(tdivz * z) + tadjust; in D_SpriteDrawSpans() 121 if (tnext > bbextentt) in D_SpriteDrawSpans() 122 tnext = bbextentt; in D_SpriteDrawSpans() 123 else if (tnext < 8) in D_SpriteDrawSpans() 124 tnext = 8; // guard against round-off error on <0 steps in D_SpriteDrawSpans() 127 tstep = (tnext - t) >> 3; in D_SpriteDrawSpans() 148 tnext = (int)(tdivz * z) + tadjust; in D_SpriteDrawSpans() 149 if (tnext > bbextentt) in D_SpriteDrawSpans() 150 tnext = bbextentt; in D_SpriteDrawSpans() [all …]
|
D | d_sky.c | 69 fixed16_t s, t, snext, tnext, sstep, tstep; in D_DrawSkyScans8() local 102 D_Sky_uv_To_st (u, v, &snext, &tnext); in D_DrawSkyScans8() 105 tstep = (tnext - t) >> SKY_SPAN_SHIFT; in D_DrawSkyScans8() 116 D_Sky_uv_To_st (u, v, &snext, &tnext); in D_DrawSkyScans8() 119 tstep = (tnext - t) / spancountminus1; in D_DrawSkyScans8() 132 t = tnext; in D_DrawSkyScans8()
|
D | d_varsa.s | 89 .globl pbase, s, t, sfracf, tfracf, snext, tnext 95 tnext: .long 0 label
|
D | 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
|
D | 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
|
D | 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
|
D | d_varsa.asm | 219 externdef tnext:dword 276 public pbase, s, t, sfracf, tfracf, snext, tnext 282 tnext dd 0 define
|
D | 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 | 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 | 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 | quakeasm.h | 246 .extern tnext
|
D | r_varsa.asm | 219 externdef tnext:dword
|
D | sys_wina.asm | 219 externdef tnext:dword
|
/external/quake/quake/src/WinQuake/ |
D | d_scan.cpp | 125 fixed16_t snext, tnext; in Turbulent8() local 195 tnext = (int)(tdivz * z) + tadjust; in Turbulent8() 196 if (tnext > bbextentt) in Turbulent8() 197 tnext = bbextentt; in Turbulent8() 198 else if (tnext < 16) in Turbulent8() 199 tnext = 16; // guard against round-off error on <0 steps in Turbulent8() 202 r_turb_tstep = (tnext - r_turb_t) >> 4; in Turbulent8() 223 tnext = (int)(tdivz * z) + tadjust; in Turbulent8() 224 if (tnext > bbextentt) in Turbulent8() 225 tnext = bbextentt; in Turbulent8() [all …]
|
D | d_sprite.cpp | 42 fixed16_t s, t, snext, tnext, sstep, tstep; in D_SpriteDrawSpans() local 120 tnext = (int)(tdivz * z) + tadjust; in D_SpriteDrawSpans() 121 if (tnext > bbextentt) in D_SpriteDrawSpans() 122 tnext = bbextentt; in D_SpriteDrawSpans() 123 else if (tnext < 8) in D_SpriteDrawSpans() 124 tnext = 8; // guard against round-off error on <0 steps in D_SpriteDrawSpans() 127 tstep = (tnext - t) >> 3; in D_SpriteDrawSpans() 148 tnext = (int)(tdivz * z) + tadjust; in D_SpriteDrawSpans() 149 if (tnext > bbextentt) in D_SpriteDrawSpans() 150 tnext = bbextentt; in D_SpriteDrawSpans() [all …]
|
D | d_sky.cpp | 69 fixed16_t s, t, snext, tnext, sstep, tstep; in D_DrawSkyScans8() local 102 D_Sky_uv_To_st (u, v, &snext, &tnext); in D_DrawSkyScans8() 105 tstep = (tnext - t) >> SKY_SPAN_SHIFT; in D_DrawSkyScans8() 116 D_Sky_uv_To_st (u, v, &snext, &tnext); in D_DrawSkyScans8() 119 tstep = (tnext - t) / spancountminus1; in D_DrawSkyScans8() 132 t = tnext; in D_DrawSkyScans8()
|
D | d_varsa.s | 89 .globl pbase, s, t, sfracf, tfracf, snext, tnext 95 tnext: .long 0 label
|
D | 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
|
D | 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
|
D | 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
|
D | quakeasm.h | 252 .extern tnext
|
/external/ipsec-tools/src/racoon/ |
D | proposal.h | 147 struct prop_pair *tnext; /* next prop_pair in same proposal payload */ member
|
D | 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) 1414 for (/*nothing*/; q && q->tnext; q = q->tnext) 1416 q->tnext = p; [all …]
|
D | 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);
|