Searched refs:ptype (Results 26 - 50 of 61) sorted by relevance

123

/freebsd-9.3-release/usr.bin/rpcgen/
H A Drpc_tblout.c168 ptype(prefix, type, 0);
H A Drpc_util.h176 void ptype(const char *prefix, const char *type, int follow);
H A Drpc_hout.c331 ptype(proc->res_prefix, proc->res_type, 1);
357 ptype(dl->decl.prefix, dl->decl.type, 1);
366 ptype(proc->res_prefix, proc->res_type, 1);
H A Drpc_svcout.c86 ptype(plist->res_prefix, plist->res_type, 1);
354 ptype(proc->args.decls->decl.prefix,
415 ptype(proc->args.decls->decl.prefix,
440 ptype(proc->res_prefix, proc->res_type, 0);
H A Drpc_util.c169 ptype(const char *prefix, const char *type, int follow) function
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libnvpair/
H A Dlibnvpair.c184 * ptype - C type to cast value to for printing
188 #define NVLIST_PRTFUNC(type_and_variant, vtype, ptype, vfmt) \
198 (void) fprintf(fp, vfmt, (ptype)value); \
221 #define NVLIST_ARRPRTFUNC(type_and_variant, vtype, ptype, vfmt) \
239 (void) fprintf(fp, vfmt, (ptype)valuep[i]); \
769 #define NVP(elem, type, vtype, ptype, format) { \
774 nvpair_name(elem), (ptype)value); \
777 #define NVPA(elem, type, vtype, ptype, format) { \
784 nvpair_name(elem), i, (ptype)value[i]); \
/freebsd-9.3-release/crypto/openssl/engines/
H A De_capi.c1031 static int capi_get_provname(CAPI_CTX * ctx, LPSTR * pname, DWORD * ptype, argument
1037 if (!CryptEnumProvidersA(idx, NULL, 0, ptype, NULL, &len)) {
1046 if (!CryptEnumProvidersA(idx, NULL, 0, ptype, name, &len)) {
1056 *ptype);
1063 DWORD idx, ptype; local
1069 ret = capi_get_provname(ctx, &provname, &ptype, idx);
1074 BIO_printf(out, "%d. %s, type %d\n", idx, provname, ptype);
1352 char *provname, DWORD ptype, DWORD keyspec)
1358 contname, provname, ptype);
1362 (&key->hprov, contname, provname, ptype, dwFlag
1351 capi_get_key(CAPI_CTX * ctx, const char *contname, char *provname, DWORD ptype, DWORD keyspec) argument
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dinit.c2212 tree ptype = build_pointer_type (type = complete_type (type));
2244 tbase = create_temporary_var (ptype);
2246 fold_build2 (PLUS_EXPR, ptype,
2256 fold_convert (ptype, base)));
2259 build2 (MINUS_EXPR, ptype, tbase, size_exp)));
2261 (body, build_delete (ptype, tbase, sfk_complete_destructor,
2287 = cp_convert (ptype,
2411 tree ptype;
2450 ptype = build_pointer_type (type);
2453 base = cp_convert (ptype, decay_conversio
2209 tree ptype = build_pointer_type (type = complete_type (type)); local
2408 tree ptype; local
[all...]
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-atalk.c59 u_int16_t htype, ptype; member in struct:aarp
203 EXTRACT_16BITS(&ap->ptype) == ETHERTYPE_ATALK &&
222 (void)printf("len %u op %u htype %u ptype %#x halen %u palen %u",
224 EXTRACT_16BITS(&ap->ptype), ap->halen, ap->palen);
H A Dprint-udp.c145 const char * ptype; local
157 ptype = "rtpv1";
164 ptype = "rtp";
169 ptype,
/freebsd-9.3-release/sys/boot/powerpc/ps3/
H A Dmain.c110 currdev.d_disk.ptype = PTYPE_GPT;
H A Dps3disk.c179 if (dev->d_disk.ptype == PTYPE_GPT && od->od_gpt_nparts)
289 dev->d_disk.ptype = PTYPE_GPT;
/freebsd-9.3-release/sys/netinet/
H A Dsctp_auth.c1420 uint16_t plen, ptype; local
1439 ptype = ntohs(phdr->param_type);
1445 if (ptype == SCTP_RANDOM) {
1455 } else if (ptype == SCTP_HMAC_LIST) {
1478 } else if (ptype == SCTP_CHUNK_LIST) {
1831 uint16_t ptype, plen; local
1841 ptype = ntohs(phdr->param_type);
1850 if (ptype == SCTP_SUPPORTED_CHUNK_EXT) {
1874 } else if (ptype == SCTP_RANDOM) {
1883 } else if (ptype
[all...]
H A Dsctp_pcb.c2062 uint16_t ptype; local
2095 ptype = ntohs(phdr->param_type);
2102 if (ptype == SCTP_IPV4_ADDRESS &&
2123 if (ptype == SCTP_IPV6_ADDRESS &&
2333 int ptype; local
2353 ptype = (int)((uint32_t) ntohs(phdr->param_type));
2355 switch (ptype) {
6058 uint16_t ptype, plen; local
6163 ptype = ntohs(phdr->param_type);
6166 * SCTP_PRINTF("ptype
[all...]
H A Dsctp_asconf.c2783 uint16_t plen, ptype; local
2829 ptype = ntohs(ph->param_type);
2831 switch (ptype) {
2916 plen, ptype);
2937 uint16_t plen, ptype; local
2980 ptype = ntohs(ph->param_type);
2982 switch (ptype) {
/freebsd-9.3-release/sys/fs/udf/
H A Dudf_vfsops.c755 int i, k, ptype, psize, error; local
759 ptype = pmap[0];
761 if (((ptype != 1) && (ptype != 2)) ||
768 if (ptype == 1) {
/freebsd-9.3-release/contrib/gdb/gdb/
H A Df-exp.y163 %type <tval> ptype
500 type : ptype
503 ptype : typebase
502 ptype : typebase label
H A Dc-exp.y163 %type <tval> ptype
800 type : ptype
915 pretty well in most cases. For example, if you do 'ptype A::B',
1002 ptype : typebase
1003 | ptype const_or_volatile_or_space_identifier abs_decl const_or_volatile_or_space_identifier
1001 ptype : typebase label
H A Dobjc-exp.y165 %type <tval> ptype
794 ptype : typebase
861 type : ptype
928 qualifier after the type is handled in the ptype rule. I
793 ptype : typebase label
H A Dp-exp.y171 %type <tval> ptype
709 ptype : typebase
720 type : ptype
737 after the type is handled in the ptype rule. I think these could
708 ptype : typebase label
H A Dstabsread.c871 struct type *ptype;
877 ptype = read_type (&p, objfile);
885 if (TYPE_CODE (ptype) == TYPE_CODE_VOID)
886 ptype = builtin_type_int;
887 TYPE_FIELD_TYPE (ftype, nparams) = ptype;
868 struct type *ptype; local
/freebsd-9.3-release/sys/dev/ixgbe/
H A Dixv.c3218 ixv_rx_input(struct rx_ring *rxr, struct ifnet *ifp, struct mbuf *m, u32 ptype) argument
3228 (ptype & IXGBE_RXDADV_PKTTYPE_ETQF) == 0 &&
3229 (ptype & (IXGBE_RXDADV_PKTTYPE_IPV4 | IXGBE_RXDADV_PKTTYPE_TCP)) ==
3310 u32 rsc, ptype; local
3336 ptype = le32toh(cur->wb.lower.lo_dword.data) &
3465 ixv_rx_checksum(staterr, sendmp, ptype);
3481 ixv_rx_input(rxr, ifp, sendmp, ptype);
3527 ixv_rx_checksum(u32 staterr, struct mbuf * mp, u32 ptype) argument
3533 if ((ptype & IXGBE_RXDADV_PKTTYPE_ETQF) == 0 &&
3534 (ptype
[all...]
H A Dixgbe.c4327 ixgbe_rx_input(struct rx_ring *rxr, struct ifnet *ifp, struct mbuf *m, u32 ptype) argument
4337 (ptype & IXGBE_RXDADV_PKTTYPE_ETQF) == 0 &&
4338 ((ptype & (IXGBE_RXDADV_PKTTYPE_IPV4 | IXGBE_RXDADV_PKTTYPE_TCP)) ==
4340 (ptype & (IXGBE_RXDADV_PKTTYPE_IPV6 | IXGBE_RXDADV_PKTTYPE_TCP)) ==
4427 u32 rsc, ptype; local
4453 ptype = le32toh(cur->wb.lower.lo_dword.data) &
4569 ixgbe_rx_checksum(staterr, sendmp, ptype);
4586 ixgbe_rx_input(rxr, ifp, sendmp, ptype);
4631 ixgbe_rx_checksum(u32 staterr, struct mbuf * mp, u32 ptype) argument
4637 if ((ptype
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dc-common.c6339 complete_array_type (tree *ptype, tree initial_value, bool do_default)
6403 type = *ptype;
6424 *ptype = type;
6485 tree ptype;
6492 ptype = TREE_TYPE (TREE_TYPE (TREE_VALUE (params)));
6512 val = convert (ptype, val);
6536 tree ptype = TREE_TYPE (TREE_TYPE (TREE_VALUE (params)));
6537 ptype = TYPE_MAIN_VARIANT (ptype);
6538 return convert (ptype, resul
6320 complete_array_type(tree *ptype, tree initial_value, bool do_default) argument
6465 tree ptype; local
6516 tree ptype = TREE_TYPE (TREE_TYPE (TREE_VALUE (params))); local
[all...]
/freebsd-9.3-release/sys/dev/e1000/
H A Dif_igb.c4709 igb_rx_input(struct rx_ring *rxr, struct ifnet *ifp, struct mbuf *m, u32 ptype) argument
4719 (ptype & E1000_RXDADV_PKTTYPE_ETQF) == 0 &&
4720 (ptype & (E1000_RXDADV_PKTTYPE_IPV4 | E1000_RXDADV_PKTTYPE_TCP)) ==
4759 u32 ptype, staterr = 0; local
4792 ptype = le32toh(cur->wb.lower.lo_dword.data) & IGB_PKTTYPE_MASK;
4889 igb_rx_checksum(staterr, rxr->fmp, ptype);
4919 igb_rx_input(rxr, ifp, sendmp, ptype);
4960 igb_rx_checksum(u32 staterr, struct mbuf *mp, u32 ptype) argument
4972 if ((ptype & E1000_RXDADV_PKTTYPE_ETQF) == 0 &&
4973 (ptype
[all...]

Completed in 435 milliseconds

123