HomeSort by relevance Sort by last modified time
    Searched defs:vid (Results 1 - 25 of 25) sorted by null

  /external/quake/quake/src/QW/client/
vid_null.c 6 viddef_t vid; // global video state variable
28 vid.maxwarpwidth = vid.width = vid.conwidth = BASEWIDTH;
29 vid.maxwarpheight = vid.height = vid.conheight = BASEHEIGHT;
30 vid.aspect = 1.0;
31 vid.numpages = 1;
32 vid.colormap = host_colormap
    [all...]
gl_screen.c 110 viddef_t vid; // global video state variable
181 y = vid.height*0.35;
191 x = (vid.width - l*8)/2;
254 Must be called whenever vid changes
266 vid.recalc_refdef = 0;
312 h = vid.height;
314 h = vid.height - sb_lines;
316 r_refdef.vrect.width = vid.width * size;
323 r_refdef.vrect.height = vid.height * size;
325 if (r_refdef.vrect.height > (int) (vid.height - sb_lines)
    [all...]
screen.c 107 viddef_t vid; // global video state variable
164 if (scr_erase_center++ > vid.numpages)
171 y = vid.height*0.35;
176 Draw_TileClear (0, y, vid.width, min(8*scr_erase_lines, vid.height - y - 1));
197 y = vid.height*0.35;
207 x = (vid.width - l*8)/2;
270 Must be called whenever vid changes
280 vid.recalc_refdef = 0;
319 vrect.width = vid.width;
    [all...]
vid_x.c 71 viddef_t vid; // global video state variable
234 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
236 vid_surfcachesize = D_SurfaceCacheForRes (vid.width, vid.height);
245 + vid.width * vid.height * sizeof (*d_pzbuffer);
251 mem = ((vid.width*pwidth+7)&~7) * vid.height;
259 vid.width, vid.height,
    [all...]
gl_vidnt.c 20 // gl_vidnt.c -- NT GL vid component
110 viddef_t vid; // global video state variable
266 if (vid.conheight > modelist[modenum].height)
267 vid.conheight = modelist[modenum].height;
268 if (vid.conwidth > modelist[modenum].width)
269 vid.conwidth = modelist[modenum].width;
270 vid.width = vid.conwidth;
271 vid.height = vid.conheight;
    [all...]
vid_win.c 61 viddef_t vid; // global video state variable
333 // vid.recalc_refdef = 1;
381 vid.recalc_refdef = 1;
633 vid.numpages = 1;
637 vid.numpages = dc->mi.maxPage + 1;
639 if (vid.numpages > 1)
646 if (vid.numpages > 3)
647 vid.numpages = 3;
650 if (vid.numpages == 2)
    [all...]
  /external/quake/quake/src/WinQuake/
vid_null.cpp 25 viddef_t vid; // global video state variable
47 vid.maxwarpwidth = vid.width = vid.conwidth = BASEWIDTH;
48 vid.maxwarpheight = vid.height = vid.conheight = BASEHEIGHT;
49 vid.aspect = 1.0;
50 vid.numpages = 1;
51 vid.colormap = host_colormap;
    [all...]
gl_screen.cpp 108 viddef_t vid; // global video state variable
178 y = (int)(vid.height*0.35);
188 x = (vid.width - l*8)/2;
251 Must be called whenever vid changes
264 vid.recalc_refdef = 0;
309 h = vid.height - sb_lines;
311 r_refdef.vrect.width = (int) (vid.width * size);
318 r_refdef.vrect.height = (int)(vid.height * size);
319 if ((int)(r_refdef.vrect.height) > (int)(vid.height - sb_lines))
320 r_refdef.vrect.height = vid.height - sb_lines
    [all...]
screen.cpp 53 viddef_t vid; // global video state variable
110 if (scr_erase_center++ > vid.numpages)
117 y = vid.height*0.35;
122 Draw_TileClear (0, y,vid.width, 8*scr_erase_lines);
143 y = vid.height*0.35;
153 x = (vid.width - l*8)/2;
216 Must be called whenever vid changes
226 vid.recalc_refdef = 0;
265 vrect.width = vid.width;
266 vrect.height = vid.height
    [all...]
vid_x.cpp 65 viddef_t vid; // global video state variable
313 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
315 vid_surfcachesize = D_SurfaceCacheForRes (vid.width, vid.height);
324 + vid.width * vid.height * sizeof (*d_pzbuffer);
330 mem = ((vid.width*pwidth+7)&~7) * vid.height;
338 vid.width, vid.height
    [all...]
gl_vidnt.cpp 20 // gl_vidnt.c -- NT GL vid component
110 viddef_t vid; // global video state variable
266 if (vid.conheight > modelist[modenum].height)
267 vid.conheight = modelist[modenum].height;
268 if (vid.conwidth > modelist[modenum].width)
269 vid.conwidth = modelist[modenum].width;
270 vid.width = vid.conwidth;
271 vid.height = vid.conheight;
    [all...]
vid_sunx.cpp 99 viddef_t vid; // global video state variable
347 vid.recalc_refdef = 1; // force a surface cache flush
404 mem = ((vid.width*pwidth+3)&~3) * vid.height;
406 // d_pzbuffer = (unsigned short *) Z_Malloc(vid.width*vid.height*
408 d_pzbuffer = (short *) Hunk_HighAllocName(vid.width*vid.height*
417 vid.width, vid.height
    [all...]
vid_sunxil.cpp 103 viddef_t vid; // global video state variable
218 vid.recalc_refdef = 1; // force a surface cache flush
256 vid.width = MP(wattr.width) & ~3;
257 vid.height = MP(wattr.height);
259 if (vid.width < 320)
260 vid.width = 320;
261 if (vid.height < 200)
262 vid.height = 200;
404 vid.width = 320;
405 vid.height = 200
    [all...]
vid_win.cpp 57 viddef_t vid; // global video state variable
341 vid.recalc_refdef = 1;
592 vid.numpages = 1;
596 vid.numpages = dc->mi.maxPage + 1;
598 if (vid.numpages > 1)
605 if (vid.numpages > 3)
606 vid.numpages = 3;
609 if (vid.numpages == 2)
1351 vid.buffer = vid.conbuffer = vid.direct = dibdc->surface;
    [all...]
  /external/bluetooth/bluez/src/
sdpd-server.c 256 uint16_t vid = 0x0000, pid = 0x0000, ver = 0x0000; local
258 vid = (uint16_t) strtol(ptr, NULL, 16);
265 register_device_id(vid, pid, ver);
  /external/ipsec-tools/src/racoon/
vendorid.c 150 vchar_t vid; local
158 "unable to get memory for VID hash\n");
166 vid.v = (char *) all_vendor_ids[i].string;
167 vid.l = strlen(vid.v);
169 all_vendor_ids[i].hash = eay_md5_one(&vid);
189 vchar_t vid, *new; local
207 * of the VID that could be free'd after use.
221 vchar_t vid, *vidhash; local
isakmp_base.c 157 /* Do we need Xauth VID? */
242 /* set VID payload for NAT-T */
416 vchar_t *vid = NULL; local
466 vid = set_vendorid(iph1->approval->vendorid);
475 if (vid)
476 plist = isakmp_plist_append(plist, vid, ISAKMP_NPTYPE_VID);
569 if (vid)
570 vfree(vid);
957 plog (LLV_INFO, LOCATION, NULL, "Adding xauth VID payload.\n");
1216 vchar_t *vid = NULL local
    [all...]
isakmp_ident.c 154 /* set VID payload for NAT-T if NAT-T support allowed in the config file */
159 /* Do we need Xauth VID? */
275 * NOTE: we do not really care about ordering of VID and N.
277 * NOTE: even if there's multiple VID/N, we'll ignore them.
869 * NOTE: XXX even if multiple VID, we'll silently ignore those.
1002 plog (LLV_INFO, LOCATION, NULL, "Adding xauth VID payload.\n");
1637 vchar_t *vid = NULL; local
    [all...]
  /frameworks/base/opengl/tests/swapinterval/
swapinterval.cpp 63 EGLint r,g,b,a, vid; local
68 eglGetConfigAttrib(dpy, config, EGL_NATIVE_VISUAL_ID, &vid);
74 EGLUtils::strerror(err), config, r,g,b,a, vid);
79 config, r,g,b,a, vid);
  /system/core/toolbox/
lsusb.c 169 uint16_t vid, pid; local
172 vid = usb_device_get_vendor_id(dev);
178 printf("%s: %04x:%04x %s %s %s\n", dev_name, vid, pid,
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 144 EGLint vid; local
147 EGL_NATIVE_VISUAL_ID, &vid);
148 tmp.visualid = vid;
  /external/chromium/chrome/browser/
browser_focus_uitest.cc 131 bool IsViewFocused(ViewID vid) {
132 return ui_test_utils::IsViewFocused(browser(), vid);
135 void ClickOnView(ViewID vid) {
136 ui_test_utils::ClickOnView(browser(), vid); local
306 ViewID vid = kFocusPage[i][j] ? VIEW_ID_TAB_CONTAINER_FOCUS_VIEW : local
308 ASSERT_TRUE(IsViewFocused(vid));
315 ViewID vid = kFocusPage[i][j % 5] ? VIEW_ID_TAB_CONTAINER_FOCUS_VIEW : local
317 ASSERT_TRUE(IsViewFocused(vid));
326 ViewID vid = kFocusPage[i][j % 5] ? VIEW_ID_TAB_CONTAINER_FOCUS_VIEW : local
328 ASSERT_TRUE(IsViewFocused(vid));
    [all...]
browser_keyevents_browsertest.cc 130 bool IsViewFocused(ViewID vid) {
131 return ui_test_utils::IsViewFocused(browser(), vid);
134 void ClickOnView(ViewID vid) {
135 ui_test_utils::ClickOnView(browser(), vid); local
  /system/core/adb/
usb_linux.c 160 unsigned vid, pid; local
194 vid = device->idVendor;
196 DBGX("[ %s is V:%04x P:%04x ]\n", devname, vid, pid);
227 is_adb_interface(vid, pid, interface->bInterfaceClass,
  /external/qemu/
usb-linux.c 1679 char bus[10], addr[10], vid[10], pid[10]; local
    [all...]

Completed in 375 milliseconds