HomeSort by: relevance | last modified time | path
    Searched defs:arity (Results 1 - 18 of 18) 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 4840 int arity = -1; local
4848 if (arity == -1)
4849 arity = idb->nargs;
4852 else if (idb->nargs != arity)
4853 fatal_at (token, "operator '%s' with arity %d does not match "
4854 "others with arity %d", oper, idb->nargs, arity);
4867 op->nargs = arity;
4934 int arity = -1; local
4945 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.old/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/dist/gdb/
ada-lang.c 2125 int arity;
2129 arity = ada_array_arity (arr->type ());
2131 if (elt_type == NULL || arity == 0)
2137 while (arity > 0)
2140 struct value *low = desc_one_bound (descriptor, arity, 0);
2141 struct value *high = desc_one_bound (descriptor, arity, 1);
2143 arity -= 1;
2554 /* The value of the element of packed array ARR at the ARITY indices
2558 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2569 for (i = 0; i < arity; i += 1
2120 int arity; local
3156 int arity; local
11200 int arity; local
    [all...]
  /src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c 13785 unsigned char arity; member in struct:Jim_ExprOperator
14431 #define OPRINIT_ATTR(N, P, ARITY, F, ATTR) {N, F, P, ARITY, ATTR, sizeof(N) - 1}
14432 #define OPRINIT(N, P, ARITY, F) OPRINIT_ATTR(N, P, ARITY, F, 0)
14951 if (op->arity == 0) {
14962 rc = ExprTreeBuildTree(interp, builder, 0, EXPR_FUNC_ARGS | EXPR_UNTIL_CLOSE, op->arity);
14980 if (op->arity >= 3) {
14986 if (op->arity >= 2) {
14992 if (op->arity >= 1)
    [all...]

Completed in 128 milliseconds