HomeSort by: relevance | last modified time | path
    Searched refs:uop (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/fortran/
matchexp.cc 199 gfc_user_op *uop; local
206 uop = NULL;
207 m = match_defined_operator (&uop);
215 if (uop == NULL)
220 f->value.op.uop = uop;
866 gfc_user_op *uop; local
876 uop = NULL;
877 m = match_defined_operator (&uop);
898 all->value.op.uop = uop
    [all...]
interface.cc 281 current_interface.uop = gfc_get_uop (name);
415 || strcmp (current_interface.uop->name, name) != 0)
418 current_interface.uop->name);
2055 check_uop_interfaces (gfc_user_op *uop)
2061 sprintf (interface_name, "operator interface '%s'", uop->name);
2062 if (check_interface0 (uop->op, interface_name))
2067 uop2 = gfc_find_uop (uop->name, ns);
2071 check_interface1 (uop->op, uop2->op, 0,
4422 gfc_intrinsic_op op, const char* uop,
4452 gcc_assert (uop);
4553 gfc_user_op *uop; local
    [all...]
module.cc 3787 write_atom (ATOM_STRING, e->value.op.uop->name);
3802 e->value.op.uop = gfc_get_uop (uop_name);
4730 gfc_user_op *uop; local
4759 uop = gfc_get_uop (p);
4760 pi = mio_interface_rest (&uop->op);
4766 uop = gfc_get_uop (p);
4767 uop->op = gfc_get_interface ();
4768 uop->op->where = gfc_current_locus;
4769 add_fixup (pi->integer, &uop->op->sym);
6055 gfc_user_op *uop = st->n.uop local
    [all...]
symbol.cc 3017 gfc_user_op *uop; local
3025 return st->n.uop;
3029 uop = st->n.uop = XCNEW (gfc_user_op);
3030 uop->name = gfc_get_string ("%s", name);
3031 uop->access = ACCESS_UNKNOWN;
3032 uop->ns = ns;
3034 return uop;
3050 return (st == NULL) ? NULL : st->n.uop;
3896 gfc_free_interface (uop_tree->n.uop->op)
    [all...]
gfortran.h 2013 gfc_user_op *uop; member in union:gfc_symtree::__anon11096
2225 gfc_user_op *uop; member in struct:__anon11097
2563 gfc_user_op *uop; member in struct:gfc_expr::__anon11108::__anon11109
resolve.cc 3964 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3967 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3973 if (uop == NULL)
3977 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3980 if (uop->n.uop->op != NULL)
3981 vec_push (candidates, candidates_len, uop->name);
3983 p = uop->left;
3987 p = uop->right;
3992 /* Lookup user-operator OP fuzzily, taking names in UOP into account. *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
matchexp.cc 199 gfc_user_op *uop; local
206 uop = NULL;
207 m = match_defined_operator (&uop);
215 if (uop == NULL)
220 f->value.op.uop = uop;
866 gfc_user_op *uop; local
876 uop = NULL;
877 m = match_defined_operator (&uop);
898 all->value.op.uop = uop
    [all...]
interface.cc 310 current_interface.uop = gfc_get_uop (name);
444 || strcmp (current_interface.uop->name, name) != 0)
447 current_interface.uop->name);
2098 check_uop_interfaces (gfc_user_op *uop)
2104 sprintf (interface_name, "operator interface '%s'", uop->name);
2105 if (check_interface0 (uop->op, interface_name))
2110 uop2 = gfc_find_uop (uop->name, ns);
2114 check_interface1 (uop->op, uop2->op, 0,
4564 gfc_intrinsic_op op, const char* uop,
4594 gcc_assert (uop);
4695 gfc_user_op *uop; local
    [all...]
module.cc 3806 write_atom (ATOM_STRING, e->value.op.uop->name);
3821 e->value.op.uop = gfc_get_uop (uop_name);
4749 gfc_user_op *uop; local
4778 uop = gfc_get_uop (p);
4779 pi = mio_interface_rest (&uop->op);
4785 uop = gfc_get_uop (p);
4786 uop->op = gfc_get_interface ();
4787 uop->op->where = gfc_current_locus;
4788 add_fixup (pi->integer, &uop->op->sym);
6074 gfc_user_op *uop = st->n.uop local
    [all...]
symbol.cc 3082 gfc_user_op *uop; local
3090 return st->n.uop;
3094 uop = st->n.uop = XCNEW (gfc_user_op);
3095 uop->name = gfc_get_string ("%s", name);
3096 uop->access = ACCESS_UNKNOWN;
3097 uop->ns = ns;
3099 return uop;
3115 return (st == NULL) ? NULL : st->n.uop;
4044 gfc_free_interface (uop_tree->n.uop->op)
    [all...]
gfortran.h 2092 gfc_user_op *uop; member in union:gfc_symtree::__anon1054
2315 gfc_user_op *uop; member in struct:__anon1055
2653 gfc_user_op *uop; member in struct:gfc_expr::__anon1066::__anon1067
resolve.cc 4037 /* Recursively append candidate UOP to CANDIDATES. Store the number of
4040 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
4046 if (uop == NULL)
4050 n.uop.op is NULL for empty interface operators (is that legal?) disregard
4053 if (uop->n.uop->op != NULL)
4054 vec_push (candidates, candidates_len, uop->name);
4056 p = uop->left;
4060 p = uop->right;
4065 /* Lookup user-operator OP fuzzily, taking names in UOP into account. *
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaPseudoObject.cpp 127 if (UnaryOperator *uop = dyn_cast<UnaryOperator>(e)) {
128 assert(uop->getOpcode() == UO_Extension);
129 e = rebuild(uop->getSubExpr());
131 S.Context, e, uop->getOpcode(), uop->getType(), uop->getValueKind(),
132 uop->getObjectKind(), uop->getOperatorLoc(), uop->canOverflow(),
1640 if (UnaryOperator *uop = dyn_cast<UnaryOperator>(syntax))
    [all...]
  /src/sys/arch/amd64/include/xen/
hypercalls.h 284 unsigned int cmd, void *uop, unsigned int count)
286 return _hypercall3(int, grant_table_op, cmd, uop, count);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-stdarg.cc 534 use_operand_p uop; local
544 FOR_EACH_PHI_ARG (uop, phi, soi, SSA_OP_USE)
546 tree rhs = USE_FROM_PTR (uop);
804 use_operand_p uop; local
818 FOR_EACH_PHI_ARG (uop, phi, soi, SSA_OP_USE)
820 rhs = USE_FROM_PTR (uop);
tree-ssa-uninit.cc 1289 unsigned uop = compute_uninit_opnds_pos (arg_phi); local
1290 unsigned idx = MASK_FIRST_SET_BIT (uop);
tree-vrp.cc 3085 tree uop = fold_convert (unsigned_type_for (TREE_TYPE (op)), op); local
3086 min = fold_convert (TREE_TYPE (uop), min);
3087 max = fold_convert (TREE_TYPE (uop), max);
3089 tree lhs = fold_build2 (MINUS_EXPR, TREE_TYPE (uop), uop, min);
  /src/external/gpl3/gcc/dist/gcc/
tree-stdarg.cc 534 use_operand_p uop; local
544 FOR_EACH_PHI_ARG (uop, phi, soi, SSA_OP_USE)
546 tree rhs = USE_FROM_PTR (uop);
804 use_operand_p uop; local
818 FOR_EACH_PHI_ARG (uop, phi, soi, SSA_OP_USE)
820 rhs = USE_FROM_PTR (uop);
tree-ssa-uninit.cc 1360 unsigned uop = compute_uninit_opnds_pos (arg_phi); local
1361 unsigned idx = MASK_FIRST_SET_BIT (uop);
  /src/sys/arch/xen/xen/
privcmd.c 926 struct gnttab_unmap_grant_ref uop; local
958 uop.host_addr = base_paddr;
960 uop.host_addr = va;
962 uop.handle = op.handle;
963 uop.dev_bus_addr = 0;
965 GNTTABOP_unmap_grant_ref, &uop, 1);
  /src/sys/arch/i386/include/xen/
hypercalls.h 318 HYPERVISOR_grant_table_op(unsigned int cmd, void *uop, unsigned int count)
324 _harg("1" (cmd), "2" (uop), "3" (count)),
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-warn.cc 2285 tree sop, uop, base_type; local
2289 sop = orig_op0, uop = orig_op1;
2291 sop = orig_op1, uop = orig_op0;
2294 uop = fold_for_warn (uop);
2297 STRIP_TYPE_NOPS (uop);
2310 else if (TREE_CODE (uop) == INTEGER_CST
2312 && int_fits_type_p (uop, c_common_signed_type (base_type)))
2317 else if (!c_dialect_cxx() && TREE_CODE (uop) == INTEGER_CST
2318 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYP
    [all...]
  /src/sys/arch/alpha/alpha/
fp_complete.c 146 uint64_t uop; /* bit mask of unexpected opcodes */ member in struct:alpha_shadow
184 alpha_shadow.uop |= 1UL << inst.generic_format.opcode;
194 alpha_shadow.uop);
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-warn.cc 2373 tree sop, uop, base_type; local
2377 sop = orig_op0, uop = orig_op1;
2379 sop = orig_op1, uop = orig_op0;
2382 uop = fold_for_warn (uop);
2385 STRIP_TYPE_NOPS (uop);
2398 else if (TREE_CODE (uop) == INTEGER_CST
2400 && int_fits_type_p (uop, c_common_signed_type (base_type)))
2405 else if (!c_dialect_cxx() && TREE_CODE (uop) == INTEGER_CST
2406 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYP
    [all...]
  /src/external/mit/lua/dist/src/
lparser.c 1276 UnOpr uop; local
1278 uop = getunopr(ls->t.token);
1279 if (uop != OPR_NOUNOPR) { /* prefix (unary) operator? */
1283 luaK_prefix(ls->fs, uop, v, line);

Completed in 196 milliseconds

1 2