HomeSort by: relevance | last modified time | path
    Searched defs:arity (Results 1 - 17 of 17) sorted by relevancy

  /src/external/lgpl3/gmp/dist/demos/
pexpr.c 693 int arity; /* 1 or 2 means real arity; 0 means arbitrary. */ member in struct:functions
754 if (fns[i].arity == 1)
774 if (fns[i].arity != 1)
792 if (fns[i].arity == 0)
  /src/external/gpl3/binutils/dist/gas/
symbols.c 3476 int arity = 0; /* Arity of this operator. */
3484 /* Match known operators -> fill in opstr, arity, operands[] and fall
3489 have an unnatural arity (X_add_number implicitly added). The
3505 arity = 2;
3519 arity = 2; \
3527 arity = 1; \
3536 arity = 3; \
3544 arity = 2; \
3577 if (arity >= 1 && ((operands[0] == NULL) || (strlen (operands[0]) == 0))
3471 int arity = 0; \/* Arity of this operator. *\/ local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
symbols.c 3476 int arity = 0; /* Arity of this operator. */
3484 /* Match known operators -> fill in opstr, arity, operands[] and fall
3489 have an unnatural arity (X_add_number implicitly added). The
3505 arity = 2;
3519 arity = 2; \
3527 arity = 1; \
3536 arity = 3; \
3544 arity = 2; \
3577 if (arity >= 1 && ((operands[0] == NULL) || (strlen (operands[0]) == 0))
3471 int arity = 0; \/* Arity of this operator. *\/ local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
genmatch.cc 5076 int arity = -1; local
5084 if (arity == -1)
5085 arity = idb->nargs;
5088 else if (idb->nargs != arity)
5089 fatal_at (token, "operator '%s' with arity %d does not match "
5090 "others with arity %d", oper, idb->nargs, arity);
5103 op->nargs = arity;
5170 int arity = -1; local
5181 if (arity == -1
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
genmatch.cc 4779 int arity = -1; local
4787 if (arity == -1)
4788 arity = idb->nargs;
4791 else if (idb->nargs != arity)
4792 fatal_at (token, "operator '%s' with arity %d does not match "
4793 "others with arity %d", oper, idb->nargs, arity);
4806 op->nargs = arity;
4873 int arity = -1; local
4884 if (arity == -1
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/gcn/
gcn.cc 5804 unsigned arity = 0; local
5806 arity++;
5808 tree fntype = (arity == 1)
  /src/external/gpl3/gcc/dist/gcc/cp/
typeck.cc 11943 int arity;
11947 for (argtype = argtypes, arity = 0;
11949 ++arity, argtype = TREE_CHAIN (argtype))
11959 if (!maybe_raw_p || arity != 1)
11982 int arity;
11986 for (argtype = argtypes, arity = 0;
11991 ++arity;
12014 ++arity;
12047 if (arity != max_arity)
11928 int arity; local
11967 int arity; local
call.cc 462 /* Information about an arity mismatch. */
470 } arity; member in union:rejection_reason::__anon13543
654 r->u.arity.expected = expected - adjust;
655 r->u.arity.actual = actual - adjust;
656 r->u.arity.least_p = least_p;
3591 /* Check that there's no obvious arity mismatch before proceeding with
3999 print_arity_information (cloc, r->u.arity.actual,
4000 r->u.arity.expected,
4001 r->u.arity.least_p);
decl.cc 16123 int arity = 0;
16132 ++arity;
16139 if (arity == 1)
16149 else if (arity != 2)
16175 if (arity != 1)
16186 if (arity != 2)
16106 int arity = 0; local
cp-tree.h 1400 #define DEFTRAIT(TCC, CODE, NAME, ARITY) \
1410 short arity;
1407 short arity; member in struct:cp_trait
  /src/external/gpl3/gcc.old/dist/gcc/cp/
typeck.cc 11318 int arity;
11322 for (argtype = argtypes, arity = 0;
11324 ++arity, argtype = TREE_CHAIN (argtype))
11334 if (!maybe_raw_p || arity != 1)
11357 int arity;
11361 for (argtype = argtypes, arity = 0;
11366 ++arity;
11389 ++arity;
11422 if (arity != max_arity)
11302 int arity; local
11341 int arity; local
call.cc 452 /* Information about an arity mismatch. */
460 } arity; member in union:rejection_reason::__anon15971
635 r->u.arity.expected = expected - adjust;
636 r->u.arity.actual = actual - adjust;
637 r->u.arity.least_p = least_p;
3490 /* Check that there's no obvious arity mismatch before proceeding with
3904 print_arity_information (cloc, r->u.arity.actual,
3905 r->u.arity.expected,
3906 r->u.arity.least_p);
decl.cc 15389 int arity = 0;
15402 ++arity;
15409 if (arity == 1)
15419 else if (arity != 2)
15445 if (arity != 1)
15456 if (arity != 2)
15372 int arity = 0; local
  /src/external/gpl3/gcc/dist/gcc/config/alpha/
alpha.cc 6686 int arity;
6697 arity = 0;
6704 if (arity > MAX_ARGS)
6707 insn_op = &insn_data[icode].operand[arity + nonvoid];
6709 op[arity] = expand_expr (arg, NULL_RTX, insn_op->mode, EXPAND_NORMAL);
6711 if (!(*insn_op->predicate) (op[arity], insn_op->mode))
6712 op[arity] = copy_to_mode_reg (insn_op->mode, op[arity]);
6713 arity++;
6725 switch (arity)
6671 int arity; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/alpha/
alpha.cc 6671 int arity;
6682 arity = 0;
6689 if (arity > MAX_ARGS)
6692 insn_op = &insn_data[icode].operand[arity + nonvoid];
6694 op[arity] = expand_expr (arg, NULL_RTX, insn_op->mode, EXPAND_NORMAL);
6696 if (!(*insn_op->predicate) (op[arity], insn_op->mode))
6697 op[arity] = copy_to_mode_reg (insn_op->mode, op[arity]);
6698 arity++;
6710 switch (arity)
6656 int arity; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
ada-lang.c 2127 int arity;
2131 arity = ada_array_arity (arr->type ());
2133 if (elt_type == NULL || arity == 0)
2139 while (arity > 0)
2142 struct value *low = desc_one_bound (descriptor, arity, 0);
2143 struct value *high = desc_one_bound (descriptor, arity, 1);
2145 arity -= 1;
2556 /* The value of the element of packed array ARR at the ARITY indices
2560 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2571 for (i = 0; i < arity; i += 1
2122 int arity; local
3158 int arity; local
11189 int arity; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
ada-lang.c 2124 int arity;
2128 arity = ada_array_arity (arr->type ());
2130 if (elt_type == NULL || arity == 0)
2136 while (arity > 0)
2139 struct value *low = desc_one_bound (descriptor, arity, 0);
2140 struct value *high = desc_one_bound (descriptor, arity, 1);
2142 arity -= 1;
2553 /* The value of the element of packed array ARR at the ARITY indices
2557 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2568 for (i = 0; i < arity; i += 1
2119 int arity; local
3155 int arity; local
11216 int arity; local
    [all...]

Completed in 184 milliseconds