HomeSort by relevance Sort by last modified time
    Searched full:d_pzbuffer (Results 1 - 25 of 37) sorted by null

1 2

  /external/quake/quake/src/WinQuake/
vid_vga.cpp 255 (lvid->width * lvid->height * sizeof (*d_pzbuffer));
260 tbuffersize = lvid->width * lvid->height * sizeof (*d_pzbuffer);
281 if (d_pzbuffer)
285 d_pzbuffer = NULL;
290 d_pzbuffer = Hunk_HighAllocName (VGA_buffersize, "video");
292 vid_surfcache = (byte *)d_pzbuffer
293 + lvid->width * lvid->height * sizeof (*d_pzbuffer);
315 tbuffersize = width * height * sizeof (*d_pzbuffer);
d_zpoint.cpp 37 pz = d_pzbuffer + (d_zwidth * r_zpointdesc.v) + r_zpointdesc.u;
d_vars.cpp 45 short *d_pzbuffer; variable
vid_x.cpp 304 if (d_pzbuffer)
308 d_pzbuffer = NULL;
313 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
319 d_pzbuffer = Hunk_HighAllocName (X11_buffersize, "video");
320 if (d_pzbuffer == NULL)
323 vid_surfcache = (byte *) d_pzbuffer
324 + vid.width * vid.height * sizeof (*d_pzbuffer);
358 if (d_pzbuffer)
362 d_pzbuffer = NULL;
368 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
    [all...]
d_local.h 93 extern short *d_pzbuffer;
d_modech.cpp 101 zspantable[i] = d_pzbuffer + i*d_zwidth;
vid_null.cpp 56 d_pzbuffer = zbuffer;
vid_sunx.cpp 398 // Z_Free(d_pzbuffer);
406 // d_pzbuffer = (unsigned short *) Z_Malloc(vid.width*vid.height*
407 // sizeof(*d_pzbuffer));
408 d_pzbuffer = (short *) Hunk_HighAllocName(vid.width*vid.height*
409 sizeof(*d_pzbuffer), "zbuff");
434 // if (d_pzbuffer)
435 // Z_Free(d_pzbuffer);
436 d_pzbuffer = Hunk_HighAllocName(vid.width*vid.height*sizeof(*d_pzbuffer),"zbuff");
d_varsa.s 72 .globl C(d_pzbuffer)
78 C(d_pzbuffer): .long 0
quakeasm.h 46 .extern C(d_pzbuffer)
72 .extern C(d_pzbuffer)
vid_svgalib.cpp 514 if (d_pzbuffer) {
517 d_pzbuffer = NULL;
523 zsize = vid.width * vid.height * sizeof(*d_pzbuffer);
527 d_pzbuffer = Hunk_HighAllocName (bsize+tsize+zsize, "video");
529 vid_surfcache = ((byte *)d_pzbuffer) + zsize;
531 vid.conbuffer = vid.buffer = (pixel_t *)(((byte *)d_pzbuffer) + zsize + tsize);
vid_sunxil.cpp 674 free(d_pzbuffer);
676 d_pzbuffer = malloc(PM(vid.width)*PM(vid.height)*sizeof(*d_pzbuffer));
677 //Hunk_HighAllocName(PM(vid.width)*PM(vid.height)*sizeof(*d_pzbuffer),"zbuff");
702 free(d_pzbuffer);
704 d_pzbuffer = malloc(PM(vid.width)*PM(vid.height)*sizeof(*d_pzbuffer));
d_part.cpp 87 pz = d_pzbuffer + (d_zwidth * v) + u;
d_polyse.cpp 769 d_pz = d_pzbuffer + ystart * d_zwidth + plefttop[0];
867 d_pz = d_pzbuffer + ystart * d_zwidth + plefttop[0];
1066 if (new[5] > d_pzbuffer[ofs])
1070 d_pzbuffer[ofs] = new[5];
  /external/quake/quake/src/QW/client/
d_zpoint.c 37 pz = d_pzbuffer + (d_zwidth * r_zpointdesc.v) + r_zpointdesc.u;
vid_null.c 37 d_pzbuffer = zbuffer;
d_vars.c 45 short *d_pzbuffer; variable
vid_x.c 225 if (d_pzbuffer)
229 d_pzbuffer = NULL;
234 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
240 d_pzbuffer = Hunk_HighAllocName (X11_buffersize, "video");
241 if (d_pzbuffer == NULL)
244 vid_surfcache = (byte *) d_pzbuffer
245 + vid.width * vid.height * sizeof (*d_pzbuffer);
279 if (d_pzbuffer)
283 d_pzbuffer = NULL;
289 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
    [all...]
d_local.h 93 extern short *d_pzbuffer;
d_modech.c 101 zspantable[i] = d_pzbuffer + i*d_zwidth;
d_varsa.s 72 .globl C(d_pzbuffer)
78 C(d_pzbuffer): .long 0
quakeasm.h 40 .extern C(d_pzbuffer)
66 .extern C(d_pzbuffer)
vid_svgalib.c 515 if (d_pzbuffer) {
518 d_pzbuffer = NULL;
524 zsize = vid.width * vid.height * sizeof(*d_pzbuffer);
528 d_pzbuffer = Hunk_HighAllocName (bsize+tsize+zsize, "video");
530 vid_surfcache = ((byte *)d_pzbuffer) + zsize;
532 vid.conbuffer = vid.buffer = (pixel_t *)(((byte *)d_pzbuffer) + zsize + tsize);
d_part.c 87 pz = d_pzbuffer + (d_zwidth * v) + u;
d_polyse.c 776 d_pz = d_pzbuffer + ystart * d_zwidth + plefttop[0];
853 d_pz = d_pzbuffer + ystart * d_zwidth + plefttop[0];
1019 if (new[5] > d_pzbuffer[ofs])
1023 d_pzbuffer[ofs] = new[5];

Completed in 134 milliseconds

1 2