HomeSort by: relevance | last modified time | path
    Searched defs:argtype (Results 1 - 25 of 61) sorted by relevancy

1 2 3

  /src/sys/kern/
kern_sdt.c 100 struct sdt_argtype * const * argtype; local
109 __link_set_foreach(argtype, sdt_argtypes_set)
110 printf("%s ", (*argtype)->type);
  /src/external/cddl/osnet/dist/cmd/zfs/
zfs_iter.c 444 zfs_type_t argtype; local
451 argtype = types;
453 argtype |= ZFS_TYPE_FILESYSTEM;
455 argtype |= ZFS_TYPE_VOLUME;
461 argtype);
463 zhp = zfs_open(g_zfs, argv[i], argtype);
  /src/external/gpl3/gcc/dist/gcc/
convert.cc 897 tree argtype = TREE_TYPE (TREE_OPERAND (expr, 0)); local
900 if (TREE_CODE (argtype) == VECTOR_TYPE
901 && maybe_ne (GET_MODE_SIZE (TYPE_MODE (argtype)),
dojump.cc 539 tree argtype = TREE_TYPE (arg);
543 && prefer_and_bit_test (SCALAR_INT_TYPE_MODE (argtype),
548 do_jump (build2 (BIT_AND_EXPR, argtype, arg,
549 build_int_cstu (argtype, mask)),
538 tree argtype = TREE_TYPE (arg); local
tree-ssa-uninit.cc 369 tree argtype; local
371 FOREACH_FUNCTION_ARGS (fntype, argtype, it)
373 if (VOID_TYPE_P (argtype))
378 if (!POINTER_TYPE_P (argtype))
381 if (TYPE_READONLY (TREE_TYPE (argtype)))
399 argtype = TREE_TYPE (arg);
400 if (!POINTER_TYPE_P (argtype))
403 if (TYPE_READONLY (TREE_TYPE (argtype)))
810 tree argtype; local
814 FOREACH_FUNCTION_ARGS (fntype, argtype, it
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
convert.cc 878 tree argtype = TREE_TYPE (TREE_OPERAND (expr, 0)); local
881 if (TREE_CODE (argtype) == VECTOR_TYPE
882 && maybe_ne (GET_MODE_SIZE (TYPE_MODE (argtype)),
dojump.cc 541 tree argtype = TREE_TYPE (arg);
545 && prefer_and_bit_test (SCALAR_INT_TYPE_MODE (argtype),
550 do_jump (build2 (BIT_AND_EXPR, argtype, arg,
551 build_int_cstu (argtype, mask)),
540 tree argtype = TREE_TYPE (arg); local
tree-ssa-uninit.cc 347 tree argtype; local
349 FOREACH_FUNCTION_ARGS (fntype, argtype, it)
351 if (VOID_TYPE_P (argtype))
356 if (!POINTER_TYPE_P (argtype))
359 if (TYPE_READONLY (TREE_TYPE (argtype)))
377 argtype = TREE_TYPE (arg);
378 if (!POINTER_TYPE_P (argtype))
381 if (TYPE_READONLY (TREE_TYPE (argtype)))
793 tree argtype; local
797 FOREACH_FUNCTION_ARGS (fntype, argtype, it
    [all...]
  /src/external/cddl/osnet/dev/sdt/
sdt.c 305 struct sdt_argtype *argtype; local
313 TAILQ_FOREACH(argtype, &probe->argtype_list, argtype_entry) {
314 if (desc->dtargd_ndx == argtype->ndx) {
316 if (argtype->type == NULL) {
321 strlcpy(desc->dtargd_native, argtype->type,
323 if (argtype->xtype != NULL)
324 strlcpy(desc->dtargd_xlate, argtype->xtype,
348 struct sdt_argtype **argtype, **a_begin, **a_end; local
367 for (argtype = a_begin; argtype < a_end; argtype++)
493 struct sdt_argtype * const *argtype; local
553 struct sdt_argtype * const *argtype; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
cvt.cc 324 tree argtype = TREE_TYPE (arg);
353 && TYPE_MAIN_VARIANT (argtype) != TYPE_MAIN_VARIANT (target_type)
354 && MAYBE_CLASS_TYPE_P (argtype)
358 tree binfo = lookup_base (argtype, target_type, ba_check,
363 return error_not_base_type (target_type, argtype);
323 tree argtype = TREE_TYPE (arg); local
contracts.cc 1739 tree argtype = cp_build_qualified_type (violation, TYPE_QUAL_CONST); local
1740 argtype = cp_build_reference_type (argtype, /*rval*/false);
1741 tree fntype = build_function_type_list (void_type_node, argtype, NULL_TREE);
  /src/external/gpl3/gcc.old/dist/gcc/cp/
cvt.cc 324 tree argtype = TREE_TYPE (arg);
353 && TYPE_MAIN_VARIANT (argtype) != TYPE_MAIN_VARIANT (target_type)
354 && MAYBE_CLASS_TYPE_P (argtype)
358 tree binfo = lookup_base (argtype, target_type, ba_check,
363 return error_not_base_type (target_type, argtype);
323 tree argtype = TREE_TYPE (arg); local
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-c.cc 814 /* Return true iff ARGTYPE can be compatibly passed as PARMTYPE. */
816 rs6000_builtin_type_compatible (tree parmtype, tree argtype)
821 if (INTEGRAL_TYPE_P (parmtype) && INTEGRAL_TYPE_P (argtype))
825 && is_float128_p (parmtype) && is_float128_p (argtype))
828 if (POINTER_TYPE_P (parmtype) && POINTER_TYPE_P (argtype))
831 argtype = TREE_TYPE (argtype);
832 if (TYPE_READONLY (argtype))
836 return lang_hooks.types_compatible_p (parmtype, argtype);
1689 tree argtype = TYPE_ARG_TYPES (fntype)
1688 tree argtype = TYPE_ARG_TYPES (fntype); local
    [all...]
rs6000-gen-builtins.cc 1320 typeinfo *argtype = &argentry->info; local
1321 success = match_type (argtype, VOID_NOTOK);
1324 if (argtype->restr)
1332 restr[restr_cnt] = argtype->restr;
1333 val1[restr_cnt] = argtype->val1;
1334 val2[restr_cnt] = argtype->val2;
1355 argtype->isvoid, argtype->isconst, argtype->isvector,
1356 argtype->issigned, argtype->isunsigned, argtype->isbool
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-builtins.cc 302 tree argtype = TREE_VALUE (parm); local
303 if (argtype == void_type_node)
310 if (TREE_CODE (argtype) == REFERENCE_TYPE)
312 argtype = TREE_TYPE (argtype);
316 Type *targ = build_frontend_type (argtype);
decl.cc 1371 tree argtype = build_reference_type (TREE_TYPE (decl->csym)); local
1372 argtype = build_qualified_type (argtype, TYPE_QUAL_RESTRICT);
1374 TREE_TYPE (decl->csym) = argtype;
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-type.c 945 struct type *argtype;
994 argtype = typy_lookup_type (demangled->u.s_binary.left, block);
995 if (! argtype)
998 return type_to_type_object (argtype);
943 struct type *argtype; local
  /src/external/gpl3/gdb/dist/gdb/python/
py-type.c 939 struct type *argtype;
988 argtype = typy_lookup_type (demangled->u.s_binary.left, block);
989 if (! argtype)
992 return type_to_type_object (argtype);
937 struct type *argtype; local
  /src/external/gpl3/binutils/dist/include/opcode/
cr16.h 114 argtype; typedef in typeref:enum:__anon10626
291 argtype type;
326 argtype arg_type;
crx.h 111 argtype; typedef in typeref:enum:__anon10639
288 argtype type;
323 argtype arg_type;
  /src/external/gpl3/binutils.old/dist/include/opcode/
cr16.h 114 argtype; typedef in typeref:enum:__anon12090
291 argtype type;
326 argtype arg_type;
crx.h 111 argtype; typedef in typeref:enum:__anon12103
288 argtype type;
323 argtype arg_type;
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-gen-builtins.cc 1320 typeinfo *argtype = &argentry->info; local
1321 success = match_type (argtype, VOID_NOTOK);
1324 if (argtype->restr)
1332 restr[restr_cnt] = argtype->restr;
1333 val1[restr_cnt] = argtype->val1;
1334 val2[restr_cnt] = argtype->val2;
1355 argtype->isvoid, argtype->isconst, argtype->isvector,
1356 argtype->issigned, argtype->isunsigned, argtype->isbool
    [all...]
  /src/external/gpl3/gdb.old/dist/include/opcode/
cr16.h 114 argtype; typedef in typeref:enum:__anon21478
291 argtype type;
326 argtype arg_type;
crx.h 111 argtype; typedef in typeref:enum:__anon21491
288 argtype type;
323 argtype arg_type;

Completed in 85 milliseconds

1 2 3