Searched defs:vid (Results 1 - 22 of 22) sorted by relevance

/external/ipsec-tools/src/racoon/
H A Dvendorid.c140 vchar_t vid; local
156 vid.v = (char *) all_vendor_ids[i].string;
157 vid.l = strlen(vid.v);
159 all_vendor_ids[i].hash = eay_md5_one(&vid);
179 vchar_t vid, *new; local
211 vchar_t vid, *vidhash; local
H A Disakmp_base.c444 vchar_t *vid = NULL; local
494 vid = set_vendorid(iph1->approval->vendorid);
503 if (vid)
504 plist = isakmp_plist_append(plist, vid, ISAKMP_NPTYPE_VID);
598 if (vid)
599 vfree(vid);
1284 vchar_t *vid = NULL; local
1337 vid = set_vendorid(iph1->approval->vendorid);
1348 if (vid)
1350 vid, ISAKMP_NPTYPE_VI
[all...]
H A Disakmp_ident.c1699 vchar_t *vid = NULL; local
1739 if (vid)
1740 plist = isakmp_plist_append(plist, vid, ISAKMP_NPTYPE_VID);
1783 if (vid)
1784 vfree(vid);
H A Dnattraversal.c82 * check if the given vid is NAT-T.
85 natt_vendorid (int vid) argument
89 vid == VENDORID_NATT_00 ||
92 vid == VENDORID_NATT_01 ||
95 vid == VENDORID_NATT_02 ||
96 vid == VENDORID_NATT_02_N ||
99 vid == VENDORID_NATT_03 ||
102 vid == VENDORID_NATT_04 ||
105 vid == VENDORID_NATT_05 ||
108 vid
[all...]
/external/quake/quake/src/QW/client/
H A Dvid_null.c6 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
[all...]
H A Dgl_screen.c110 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
[all...]
H A Dscreen.c107 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
[all...]
H A Dvid_x.c71 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
[all...]
H A Dgl_vidnt.c20 // 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
[all...]
H A Dvid_win.c61 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)
1392 vid
[all...]
/external/quake/quake/src/WinQuake/
H A Dvid_null.cpp25 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
[all...]
H A Dgl_screen.cpp108 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
[all...]
H A Dscreen.cpp53 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
[all...]
H A Dvid_x.cpp65 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
[all...]
H A Dgl_vidnt.cpp20 // 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
[all...]
H A Dvid_sunx.cpp99 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
[all...]
H A Dvid_sunxil.cpp103 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
[all...]
H A Dvid_win.cpp57 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
[all...]
/external/bluetooth/bluez/src/
H A Dsdpd-server.c257 uint16_t vid = 0x0000, pid = 0x0000, ver = 0x0000; local
259 vid = (uint16_t) strtol(ptr, NULL, 16);
266 register_device_id(vid, pid, ver);
/external/webkit/WebCore/rendering/
H A DRenderEmbeddedObject.cpp312 HTMLVideoElement* vid = static_cast<HTMLVideoElement*>(node()); local
313 String poster = vid->poster();
/external/qemu/hw/
H A Dpci.c876 PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did, argument
883 pci_config_set_vendor_id(s->dev.config, vid);
/external/qemu/
H A Dusb-linux.c1384 * auto:bus:dev[:vid:pid]
1385 * auto:bus.dev[:vid:pid]
1389 * vid - vendor id (hex, * means any)
1467 dprintf("husb: added auto filter: bus_num %d addr %d vid %d pid %d\n",
1487 dprintf("husb: removed auto filter: bus_num %d addr %d vid %d pid %d\n",
1680 char bus[10], addr[10], vid[10], pid[10]; local
1683 hex2str(f->vendor_id, vid, sizeof(vid));
1686 bus, addr, vid, pid);

Completed in 217 milliseconds