Searched defs:pnum (Results 1 - 8 of 8) sorted by relevance

/external/iptables/extensions/
H A Dlibxt_multiport.c145 check_proto(uint16_t pnum, uint8_t invflags) argument
153 if ((proto = proto_to_name(pnum)) != NULL)
155 else if (!pnum)
164 static void __multiport_parse(struct xt_option_call *cb, uint16_t pnum, argument
173 proto = check_proto(pnum, invflags);
179 proto = check_proto(pnum, invflags);
185 proto = check_proto(pnum, invflags);
210 static void __multiport_parse_v1(struct xt_option_call *cb, uint16_t pnum, argument
219 proto = check_proto(pnum, invflags);
224 proto = check_proto(pnum, invflag
[all...]
/external/libmtp/examples/
H A Dsendtr.c235 char *pnum; local
236 if ( (pnum = prompt("Track number", num, 80, 0)) == NULL )
238 if ( strlen(pnum) ) {
239 tracknum = strtoul(pnum, 0, 10);
246 char *pnum; local
247 if ( (pnum = prompt("Year", num, 80, 0)) == NULL )
249 if ( strlen(pnum) ) {
250 year = strtoul(pnum, 0, 10);
257 char *pnum; local
258 if ( (pnum
[all...]
/external/libpcap/
H A Dgrammar.y262 %type <i> byteop pname pnum relop irelop
335 | pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
403 qid: pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
505 | VLAN pnum { $$ = gen_vlan($2); }
507 | MPLS pnum { $$ = gen_mpls($2); }
510 | PPPOES pnum { $$ = gen_pppoes($2); }
612 arth: pnum { $$ = gen_loadi($1); }
635 pnum: NUM label
636 | paren pnum ')' { $$ = $2; }
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c85 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]
[all...]
H A DSDL_gsvideo.c188 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]
[all...]
/external/qemu/block/
H A Dqcow2.c297 int nb_sectors, int *pnum)
302 *pnum = nb_sectors;
305 ret = qcow2_get_cluster_offset(bs, sector_num << 9, pnum, &cluster_offset);
307 *pnum = 0;
296 qcow_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, int *pnum) argument
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c72 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) argument
458 *pnum = num;
466 *pnum = 0;
794 // *pnum = num;
/external/qemu/
H A Dblock.c1494 * 'pnum' is set to the number of sectors (including and immediately following
1498 * 'nb_sectors' is the max value 'pnum' should be set to.
1501 int *pnum)
1506 *pnum = 0;
1510 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1513 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1500 bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, int *pnum) argument

Completed in 218 milliseconds