HomeSort by relevance Sort by last modified time
    Searched refs:pnum (Results 1 - 21 of 21) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsyuv.c 85 int pnum; local
210 pnum = 0;
224 packet[pnum].ptr = &tags[0];
225 packet[pnum].len = 10 * sizeof(*tags);
226 ++pnum;
242 packet[pnum].ptr = &tags[10];
243 packet[pnum].len = 2 * sizeof(*tags);
244 ++pnum;
247 packet[pnum].ptr = (void *)base;
248 packet[pnum].len = 16 * 16 * bpp
    [all...]
SDL_gsvideo.c 188 int pnum, it, eop; local
193 pnum = it = eop = 0;
197 packet[pnum].ptr = hm;
198 packet[pnum].len = sizeof(head_tags);
199 pnum++;
214 packet[pnum].ptr = &im[it];
215 packet[pnum].len = sizeof(unsigned long long) * 2;
216 pnum++;
220 packet[pnum].ptr = (void *)data;
221 packet[pnum].len = isize
    [all...]
  /external/clearsilver/util/
neo_misc.h 124 UINT8 *ne_unstream4 (UINT32 *pnum, UINT8 *src);
126 UINT8 *ne_unstream2 (UINT16 *pnum, UINT8 *src);
neo_misc.c 106 UINT8 *ne_unstream4 (UINT32 *pnum, UINT8 *src)
108 *pnum = src[0] | (src[1] << 8) | (src[2] << 16) | (src[3] << 24);
113 UINT8 *ne_unstream2 (UINT16 *pnum, UINT8 *src)
115 *pnum = src[0] | (src[1] << 8);
  /external/quake/quake/src/QW/client/
vid_x.c 366 int pnum, i; local
415 if ((pnum=COM_CheckParm("-winsize")))
417 if (pnum >= com_argc-2)
419 vid.width = Q_atoi(com_argv[pnum+1]);
420 vid.height = Q_atoi(com_argv[pnum+2]);
424 if ((pnum=COM_CheckParm("-width"))) {
425 if (pnum >= com_argc-1)
427 vid.width = Q_atoi(com_argv[pnum+1]);
431 if ((pnum=COM_CheckParm("-height"))) {
432 if (pnum >= com_argc-1)
    [all...]
cl_ents.c 418 int pnum; local
427 for (pnum=0 ; pnum<pack->num_entities ; pnum++)
429 s1 = &pack->entities[pnum];
  /external/quake/quake/src/WinQuake/
vid_x.cpp 445 int pnum, i; local
492 if ((pnum=COM_CheckParm("-winsize")))
494 if (pnum >= com_argc-2)
496 vid.width = Q_atoi(com_argv[pnum+1]);
497 vid.height = Q_atoi(com_argv[pnum+2]);
501 if ((pnum=COM_CheckParm("-width"))) {
502 if (pnum >= com_argc-1)
504 vid.width = Q_atoi(com_argv[pnum+1]);
508 if ((pnum=COM_CheckParm("-height"))) {
509 if (pnum >= com_argc-1
    [all...]
vid_sunx.cpp 572 int pnum, i; local
634 if ((pnum=COM_CheckParm("-winsize")))
636 if (pnum >= com_argc-2)
638 vid.width = Q_atoi(com_argv[pnum+1]);
639 vid.height = Q_atoi(com_argv[pnum+2]);
647 if ((pnum=COM_CheckParm("-visualid")))
649 if (pnum >= com_argc-1)
651 template.visualid = Q_atoi(com_argv[pnum+1]);
vid_sunxil.cpp 386 int pnum, i; local
452 if ((pnum=COM_CheckParm("-winsize"))) {
453 if (pnum >= com_argc-2)
455 desired_width = Q_atoi(com_argv[pnum+1]);
456 desired_height = Q_atoi(com_argv[pnum+2]);
466 if ((pnum=COM_CheckParm("-visualid"))) {
467 if (pnum >= com_argc-1)
469 template.visualid = Q_atoi(com_argv[pnum+1]);
  /external/libpcap/
grammar.y 158 %type <i> byteop pname pnum relop irelop
229 | pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
289 qid: pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
384 | VLAN pnum { $$ = gen_vlan($2); }
386 | MPLS pnum { $$ = gen_mpls($2); }
416 arth: pnum { $$ = gen_loadi($1); }
439 pnum: NUM label
440 | paren pnum ')' { $$ = $2; }
  /bootable/diskinstaller/libdiskconfig/
config_mbr.c 71 mk_pri_pentry(struct disk_info *dinfo, struct part_info *pinfo, int pnum,
77 if (pnum >= PC_NUM_BOOT_RECORD_PARTS) {
91 item->offset = (loff_t)((uint32_t)((uint8_t *)(&mbr->ptable[pnum])));
  /system/core/libdiskconfig/
config_mbr.c 71 mk_pri_pentry(struct disk_info *dinfo, struct part_info *pinfo, int pnum,
77 if (pnum >= PC_NUM_BOOT_RECORD_PARTS) {
91 item->offset = (loff_t)((uint32_t)((uint8_t *)(&mbr->ptable[pnum])));
  /external/qemu/block/
cow.c 148 int nb_sectors, int *pnum)
151 return is_changed(s->cow_bitmap, sector_num, nb_sectors, pnum);
qcow2.c 312 int nb_sectors, int *pnum)
316 *pnum = nb_sectors;
317 cluster_offset = qcow2_get_cluster_offset(bs, sector_num << 9, pnum);
qcow.c 383 int nb_sectors, int *pnum)
394 *pnum = n;
vmdk.c 594 int nb_sectors, int *pnum)
605 *pnum = n;
  /external/qemu/
block_int.h 62 int nb_sectors, int *pnum);
block.h 101 int *pnum);
block.c 1038 * 'pnum' is set to the number of sectors (including and immediately following
1042 * 'nb_sectors' is the max value 'pnum' should be set to.
1045 int *pnum)
1050 *pnum = 0;
1054 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1057 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
    [all...]
  /external/netcat/
netcat.c 433 pnum to reverse-resolve something that's already a number.
436 USHORT getportpoop (pstring, pnum)
438 unsigned int pnum;
451 if (pnum) {
454 x = pnum;
466 } /* if pnum */
473 if (pnum) /* one or the other, pleeze */
    [all...]
  /external/srec/seti/sltsEngine/src/
run_seq_lts.c 72 static SWIsltsResult load_outputs(char ***poutputs, char ***pinputs, int *pnum, PORT_FILE *fp);
403 static SWIsltsResult load_outputs(char ***poutputs, char ***pinputs, int *pnum, PORT_FILE *fp)
458 *pnum = num;
466 *pnum = 0;
794 // *pnum = num;
    [all...]

Completed in 1025 milliseconds