Searched refs:parm (Results 1 - 25 of 67) sorted by relevance

123

/freebsd-10.1-release/contrib/gcc/cp/
H A Doptimize.c56 update_cloned_parm (tree parm, tree cloned_parm, bool first) argument
58 DECL_ABSTRACT_ORIGIN (cloned_parm) = parm;
61 TREE_ADDRESSABLE (cloned_parm) = TREE_ADDRESSABLE (parm);
64 TREE_READONLY (cloned_parm) = TREE_READONLY (parm);
66 TREE_USED (cloned_parm) = !first || TREE_USED (parm);
69 DECL_NAME (cloned_parm) = DECL_NAME (parm);
70 DECL_SOURCE_LOCATION (cloned_parm) = DECL_SOURCE_LOCATION (parm);
71 TREE_TYPE (cloned_parm) = TREE_TYPE (parm);
73 DECL_COMPLEX_GIMPLE_REG_P (cloned_parm) = DECL_COMPLEX_GIMPLE_REG_P (parm);
99 tree parm; local
[all...]
H A Dpt.c339 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i)); local
341 if (parm == error_mark_node)
344 gcc_assert (DECL_P (parm));
346 switch (TREE_CODE (parm))
350 pushdecl (parm);
359 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
360 TREE_TYPE (parm));
365 DECL_INITIAL (decl) = DECL_INITIAL (parm);
2315 error (" shadows template parm %q+#D", olddecl);
2383 process_template_parm (tree list, tree parm, boo argument
2496 tree parm, next; local
2905 tree parm = TREE_VEC_ELT (inner_parms, i); local
3383 tree parm; local
3881 tree parm, arg; local
3957 convert_template_argument(tree parm, tree arg, tree args, tsubst_flags_t complain, int i, tree in_decl) argument
4182 tree parm; local
4293 tree parm; local
4583 tree parm; local
4995 tree parm; local
9812 maybe_adjust_types_for_deduction(unification_kind_t strict, tree* parm, tree* arg) argument
9904 tree parm, arg; local
10053 resolve_overloaded_unification(tree tparms, tree targs, tree parm, tree arg, unification_kind_t strict, int sub_strict) argument
10153 try_one_overload(tree tparms, tree orig_targs, tree targs, tree parm, tree arg, unification_kind_t strict, int sub_strict, bool addr_p) argument
10228 try_class_unification(tree tparms, tree targs, tree parm, tree arg) argument
10285 get_template_base(tree tparms, tree targs, tree parm, tree arg) argument
10348 check_cv_quals_for_unify(int strict, tree arg, tree parm) argument
10426 unify(tree tparms, tree targs, tree parm, tree arg, int strict) argument
[all...]
H A Dmethod.c541 tree parm = FUNCTION_FIRST_USER_PARM (fndecl);
543 parm = convert_from_reference (parm);
551 tree t = build2 (INIT_EXPR, void_type_node, current_class_ref, parm);
558 int cvquals = cp_type_quals (TREE_TYPE (parm));
574 build_base_path (PLUS_EXPR, parm,
588 build_base_path (PLUS_EXPR, parm,
595 tree init = parm;
640 tree parm = TREE_CHAIN (DECL_ARGUMENTS (fndecl));
644 parm
539 tree parm = FUNCTION_FIRST_USER_PARM (fndecl); local
638 tree parm = TREE_CHAIN (DECL_ARGUMENTS (fndecl)); local
[all...]
H A Dcp-gimplify.c447 Should we add a target parm to gimplify_expr instead? No, as in this
808 tree defparm, parm;
865 for (parm = defparm; parm != void_list_node; parm = TREE_CHAIN (parm))
866 t = tree_cons (NULL, convert_default_arg (TREE_VALUE (parm),
867 TREE_PURPOSE (parm),
898 for (parm = defparm; parm !
807 tree defparm, parm; local
[all...]
/freebsd-10.1-release/bin/sh/tests/errors/
H A DMakefile14 FILES+= bad-parm-exp1.0
15 FILES+= bad-parm-exp2.2 bad-parm-exp2.2.stderr
16 FILES+= bad-parm-exp3.2 bad-parm-exp3.2.stderr
17 FILES+= bad-parm-exp4.2 bad-parm-exp4.2.stderr
18 FILES+= bad-parm-exp5.2 bad-parm-exp5.2.stderr
19 FILES+= bad-parm
[all...]
/freebsd-10.1-release/sys/dev/usb/
H A Dusb_transfer.c198 usbd_transfer_setup_sub_malloc(struct usb_setup_params *parm, argument
255 if (parm->buf == NULL) {
257 parm->dma_page_ptr += n_dma_pc * n_dma_pg;
258 parm->dma_page_cache_ptr += n_dma_pc;
261 parm->dma_page_ptr += count * n_dma_pg;
262 parm->xfer_page_cache_ptr += count;
267 parm->dma_page_cache_ptr[x].tag_parent =
268 &parm->curr_xfer->xroot->dma_parent_tag;
272 parm->xfer_page_cache_ptr[x].tag_parent =
273 &parm
335 usbd_transfer_setup_sub(struct usb_setup_params *parm) argument
873 struct usb_setup_params *parm; local
[all...]
H A Dusb_transfer.h228 uint8_t usbd_transfer_setup_sub_malloc(struct usb_setup_params *parm,
240 void usbd_transfer_setup_sub(struct usb_setup_params *parm);
/freebsd-10.1-release/sbin/routed/
H A Dparms.c46 static struct parm *parms;
58 struct parm *parmp;
472 struct parm *parmp,
566 #define CKF(g,b) {if (0 != (parm.parm_int_state & ((g) & ~(b)))) break; \
567 parm.parm_int_state |= (b);}
568 struct parm parm; local
632 memset(&parm, 0, sizeof(parm));
661 if (parm
[all...]
H A Dmain.c114 struct parm parm; local
156 memset(&parm, 0, sizeof(parm));
157 parm.parm_d_metric = 1;
158 cp = check_parms(&parm);
203 memset(&parm, 0, sizeof(parm));
204 parm.parm_net = p_net;
205 parm
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransAPIUses.cpp73 Expr *parm = E->getArg(0)->IgnoreParenCasts();
74 QualType pointee = parm->getType()->getPointeeType();
83 Pass.TA.reportError(err, parm->getLocStart(), parm->getSourceRange());
/freebsd-10.1-release/contrib/ncurses/ncurses/trace/
H A Dvarargs.c83 ARGTYPE parm[MAX_PARMS]; local
92 parm[parms++] = atInteger;
146 parm[parms++] = used;
148 used = parm[n];
/freebsd-10.1-release/contrib/gcc/
H A Dfunction.c2079 assign_parm_find_data_types (struct assign_parm_data_all *all, tree parm,
2090 else if (TREE_CHAIN (parm))
2091 data->named_arg = 1; /* Not the last non-varadic parm. */
2097 nominal_type = TREE_TYPE (parm);
2098 passed_type = DECL_ARG_TYPE (parm);
2102 if (TREE_TYPE (parm) == error_mark_node
2105 || TREE_CODE (parm) != PARM_DECL
2119 /* If the parm is to be passed as a transparent union, use the type of
2200 /* Determine parm's home in the stack, in case it arrives in the stack
2291 for this parm, coun
2066 assign_parm_find_data_types(struct assign_parm_data_all *all, tree parm, struct assign_parm_data_one *data) argument
2315 assign_parm_find_stack_rtl(tree parm, struct assign_parm_data_one *data) argument
2482 assign_parm_setup_block(struct assign_parm_data_all *all, tree parm, struct assign_parm_data_one *data) argument
2655 assign_parm_setup_reg(struct assign_parm_data_all *all, tree parm, struct assign_parm_data_one *data) argument
2845 assign_parm_setup_stack(struct assign_parm_data_all *all, tree parm, struct assign_parm_data_one *data) argument
2917 tree parm; local
2977 set_mem_expr (DECL_INCOMING_RTL (parm), parm); local
2991 tree fnargs, parm; local
3177 tree fnargs, parm, stmts = NULL; local
4160 tree parm = cfun->static_chain_decl; local
[all...]
H A Dipa-prop.c208 tree parm; local
215 for (parm = fnargs; parm; parm = TREE_CHAIN (parm))
217 IPA_NODE_REF (mt)->ipa_param_tree[param_num] = parm;
229 tree parm; local
235 for (parm = fnargs; parm; parm
[all...]
H A Dc-decl.c76 PARM, /* Declaration of parm before function body */
1664 /* For real parm decl following a forward decl, rechain the old decl
3834 /* Don't crash if parm is initialized. */
4153 grokparm (const struct c_parm *parm)
4155 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4158 decl_attributes (&decl, parm->attrs, 0);
4167 push_parm_decl (const struct c_parm *parm)
4171 decl = grokdeclarator (parm->declarator, parm
4137 grokparm(const struct c_parm *parm) argument
4151 push_parm_decl(const struct c_parm *parm) argument
5576 tree parm, type, typelt; local
6943 tree parm, decl, last; local
[all...]
/freebsd-10.1-release/usr.bin/checknr/
H A Dchecknr.c81 int parm; /* parm to size, font, etc */ member in struct:stkstr
345 stk[stktop].parm = n;
360 stk[stktop].parm = n;
391 printf("\\s%c%d", stk[i].pl, stk[i].parm);
394 printf("\\f%c", stk[i].parm);
420 stk[stktop].parm = 0;
456 if (stk[j+1].opno==FT && stk[j+1].parm!='R'
457 && stk[j+2].opno==FT && stk[j+2].parm=='R') {
/freebsd-10.1-release/sbin/camcontrol/
H A Dcamcontrol.c1182 atahpa_print(struct ata_params *parm, u_int64_t hpasize, int header) argument
1184 u_int32_t lbasize = (u_int32_t)parm->lba_size_1 |
1185 ((u_int32_t)parm->lba_size_2 << 16);
1187 u_int64_t lbasize48 = ((u_int64_t)parm->lba_size48_1) |
1188 ((u_int64_t)parm->lba_size48_2 << 16) |
1189 ((u_int64_t)parm->lba_size48_3 << 32) |
1190 ((u_int64_t)parm->lba_size48_4 << 48);
1198 if (parm->support.command1 & ATA_SUPPORT_PROTECTED) {
1204 if (parm->support.command1 & ATA_SUPPORT_MAXSECURITY)
1214 atasata(struct ata_params *parm) argument
1226 atacapprint(struct ata_params *parm) argument
1812 ata_read_native_max(struct cam_device *device, int retry_count, u_int32_t timeout, union ccb *ccb, struct ata_params *parm, u_int64_t *hpasize) argument
2448 atasecurity_print(struct ata_params *parm) argument
[all...]
/freebsd-10.1-release/usr.bin/ktrdump/
H A Dktrdump.c97 int parm; local
232 parm = 0;
238 if (parm == KTR_PARMS)
248 if (kvm_read(kd, (u_long)buf[i].ktr_parms[parm],
249 sbuf[parm], sizeof(sbuf[parm])) == -1)
250 strcpy(sbuf[parm], "(null)");
251 sbuf[parm][sizeof(sbuf[0]) - 1] = '\0';
252 parms[parm] = (u_long)sbuf[parm];
[all...]
/freebsd-10.1-release/sys/net80211/
H A Dieee80211_rssadapt.c72 #define interpolate(parm, old, new) ((parm##_old * (old) + \
73 (parm##_denom - parm##_old) * (new)) / \
74 parm##_denom)
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dgdbtypes.c2335 rank_one_type (struct type *parm, struct type *arg)
2341 if (parm == arg)
2345 if (TYPE_CODE (parm) == TYPE_CODE_TYPEDEF)
2346 parm = check_typedef (parm);
2357 if (TYPE_NAME (parm) && TYPE_NAME (arg) &&
2358 !strcmp (TYPE_NAME (parm), TYPE_NAME (arg)))
2362 if (parm == arg)
2368 return (rank_one_type (parm, TYPE_TARGET_TYPE (arg))
2370 if (TYPE_CODE (parm)
2334 rank_one_type(struct type *parm, struct type *arg) argument
[all...]
/freebsd-10.1-release/sys/dev/usb/controller/
H A Dehci.c3483 ehci_xfer_setup(struct usb_setup_params *parm) argument
3496 sc = EHCI_BUS2SC(parm->udev->bus);
3497 xfer = parm->curr_xfer;
3507 if (parm->methods == &ehci_device_ctrl_methods) {
3538 parm->hc_max_packet_size = 0x400;
3539 parm->hc_max_packet_count = 1;
3540 parm->hc_max_frame_size = EHCI_QTD_PAYLOAD_MAX;
3543 usbd_transfer_setup_sub(parm);
3549 } else if (parm->methods == &ehci_device_bulk_methods) {
3551 parm
[all...]
H A Datmegadci.c2007 atmegadci_xfer_setup(struct usb_setup_params *parm) argument
2017 sc = ATMEGA_BUS2SC(parm->udev->bus);
2018 xfer = parm->curr_xfer;
2025 parm->hc_max_packet_size = 0x500;
2026 parm->hc_max_packet_count = 1;
2027 parm->hc_max_frame_size = 0x500;
2029 usbd_transfer_setup_sub(parm);
2046 if (parm->err)
2058 atmegadci_get_hw_ep_profile(parm->udev, &pf, ep_no);
2062 parm
[all...]
H A Davr32dci.c1946 avr32dci_xfer_setup(struct usb_setup_params *parm) argument
1956 sc = AVR32_BUS2SC(parm->udev->bus);
1957 xfer = parm->curr_xfer;
1964 parm->hc_max_packet_size = 0x400;
1965 parm->hc_max_packet_count = 1;
1966 parm->hc_max_frame_size = 0x400;
1968 usbd_transfer_setup_sub(parm);
1985 if (parm->err)
1997 avr32dci_get_hw_ep_profile(parm->udev, &pf, ep_no);
2001 parm
[all...]
H A Duss820dci.c2216 uss820dci_xfer_setup(struct usb_setup_params *parm) argument
2226 sc = USS820_DCI_BUS2SC(parm->udev->bus);
2227 xfer = parm->curr_xfer;
2234 parm->hc_max_packet_size = 0x500;
2235 parm->hc_max_packet_count = 1;
2236 parm->hc_max_frame_size = 0x500;
2238 usbd_transfer_setup_sub(parm);
2243 if (parm->methods == &uss820dci_device_ctrl_methods) {
2247 } else if (parm->methods == &uss820dci_device_bulk_methods) {
2251 } else if (parm
[all...]
H A Duhci.c2834 uhci_xfer_setup(struct usb_setup_params *parm) argument
2847 sc = UHCI_BUS2SC(parm->udev->bus);
2848 xfer = parm->curr_xfer;
2850 parm->hc_max_packet_size = 0x500;
2851 parm->hc_max_packet_count = 1;
2852 parm->hc_max_frame_size = 0x500;
2857 if (parm->methods == &uhci_device_ctrl_methods) {
2861 usbd_transfer_setup_sub(parm);
2869 } else if (parm->methods == &uhci_device_bulk_methods) {
2873 usbd_transfer_setup_sub(parm);
[all...]
H A Dat91dci.c2197 at91dci_xfer_setup(struct usb_setup_params *parm) argument
2207 sc = AT9100_DCI_BUS2SC(parm->udev->bus);
2208 xfer = parm->curr_xfer;
2215 parm->hc_max_packet_size = 0x500;
2216 parm->hc_max_packet_count = 1;
2217 parm->hc_max_frame_size = 0x500;
2219 usbd_transfer_setup_sub(parm);
2224 if (parm->methods == &at91dci_device_ctrl_methods) {
2229 } else if (parm->methods == &at91dci_device_bulk_methods) {
2233 } else if (parm
[all...]

Completed in 394 milliseconds

123