| /dragonfly/contrib/gdb-7/gdb/ |
| HD | infcall.c | 249 struct type *ftype = check_typedef (value_type (function)); in find_function_addr() local 250 struct gdbarch *gdbarch = get_type_arch (ftype); in find_function_addr() 259 if (TYPE_CODE (ftype) == TYPE_CODE_FUNC in find_function_addr() 260 || TYPE_CODE (ftype) == TYPE_CODE_METHOD) in find_function_addr() 262 else if (TYPE_CODE (ftype) == TYPE_CODE_PTR) in find_function_addr() 265 ftype = check_typedef (TYPE_TARGET_TYPE (ftype)); in find_function_addr() 266 if (TYPE_CODE (ftype) == TYPE_CODE_FUNC in find_function_addr() 267 || TYPE_CODE (ftype) == TYPE_CODE_METHOD) in find_function_addr() 271 if (TYPE_CODE (ftype) == TYPE_CODE_FUNC in find_function_addr() 272 || TYPE_CODE (ftype) == TYPE_CODE_METHOD) in find_function_addr() [all …]
|
| HD | buildsym.c | 281 struct type *ftype = SYMBOL_TYPE (symbol); in finish_block_internal() local 286 if (TYPE_NFIELDS (ftype) <= 0) in finish_block_internal() 303 TYPE_NFIELDS (ftype) = nparams; in finish_block_internal() 304 TYPE_FIELDS (ftype) = (struct field *) in finish_block_internal() 305 TYPE_ALLOC (ftype, nparams * sizeof (struct field)); in finish_block_internal() 317 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym); in finish_block_internal() 318 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0; in finish_block_internal()
|
| HD | jv-lang.c | 488 struct type *ftype; in java_link_class_type() local 492 ftype = type_from_class (gdbarch, temp); in java_link_class_type() 493 if (TYPE_CODE (ftype) == TYPE_CODE_STRUCT) in java_link_class_type() 494 ftype = lookup_pointer_type (ftype); in java_link_class_type() 495 TYPE_FIELD_TYPE (type, i) = ftype; in java_link_class_type()
|
| HD | stabsread.c | 950 struct type *ftype = SYMBOL_TYPE (sym); in define_symbol() local 964 TYPE_FIELDS (ftype) = (struct field *) in define_symbol() 965 TYPE_ALLOC (ftype, nsemi * sizeof (struct field)); in define_symbol() 984 TYPE_FIELD_TYPE (ftype, nparams) = ptype; in define_symbol() 985 TYPE_FIELD_ARTIFICIAL (ftype, nparams++) = 0; in define_symbol() 987 TYPE_NFIELDS (ftype) = nparams; in define_symbol() 988 TYPE_PROTOTYPED (ftype) = 1; in define_symbol()
|
| /dragonfly/contrib/nvi2/ex/ |
| HD | ex_filter.c | 39 ex_filter(SCR *sp, EXCMD *cmdp, MARK *fm, MARK *tm, MARK *rp, CHAR_T *cmd, enum filtertype ftype) in ex_filter() argument 79 if (ftype != FILTER_READ && pipe(input) < 0) { in ex_filter() 170 if (ftype == FILTER_RBANG || ftype == FILTER_READ) { in ex_filter() 171 if (ftype == FILTER_RBANG) in ex_filter() 177 if (ftype == FILTER_READ) in ex_filter() 236 if (ftype == FILTER_WRITE) { in ex_filter() 260 if (rval == 0 && ftype == FILTER_BANG && in ex_filter() 285 ftype == FILTER_READ && F_ISSET(sp, SC_VI) ? 1 : 0, 0) || rval); in ex_filter()
|
| HD | ex_bang.c | 48 enum filtertype ftype; in ex_bang() local 141 ftype = FILTER_BANG; in ex_bang() 147 ftype = FILTER_RBANG; in ex_bang() 151 &cmdp->addr1, &cmdp->addr2, &rm, ap->bp, ftype); in ex_bang()
|
| /dragonfly/sys/vfs/isofs/cd9660/ |
| HD | cd9660_node.c | 243 struct buf *bp, enum ISO_FTYPE ftype) in cd9660_defattr() argument 251 if (isonum_711(ftype == ISO_FTYPE_HIGH_SIERRA? in cd9660_defattr() 305 struct buf *bp, enum ISO_FTYPE ftype) in cd9660_deftstamp() argument 322 if (ftype != ISO_FTYPE_HIGH_SIERRA in cd9660_deftstamp() 334 cd9660_tstamp_conv7(isodir->date,&inop->inode.iso_ctime,ftype); in cd9660_deftstamp() 343 cd9660_tstamp_conv7(u_char *pi, struct timespec *pu, enum ISO_FTYPE ftype) in cd9660_tstamp_conv7() argument 354 if(ftype != ISO_FTYPE_HIGH_SIERRA) in cd9660_tstamp_conv7()
|
| /dragonfly/crypto/openssh/ |
| HD | mux.c | 530 format_forward(u_int ftype, struct Forward *fwd) in format_forward() argument 534 switch (ftype) { in format_forward() 560 fatal_f("unknown forward type %u", ftype); in format_forward() 689 u_int ftype; in mux_master_process_open_fwd() local 696 if ((r = sshbuf_get_u32(m, &ftype)) != 0 || in mux_master_process_open_fwd() 729 (fwd_desc = format_forward(ftype, &fwd))); in mux_master_process_open_fwd() 731 if (ftype != MUX_FWD_LOCAL && ftype != MUX_FWD_REMOTE && in mux_master_process_open_fwd() 732 ftype != MUX_FWD_DYNAMIC) { in mux_master_process_open_fwd() 733 logit_f("invalid forwarding type %u", ftype); in mux_master_process_open_fwd() 741 if (ftype == MUX_FWD_DYNAMIC && fwd.listen_path) { in mux_master_process_open_fwd() [all …]
|
| /dragonfly/sys/platform/pc64/x86_64/ |
| HD | trap.c | 861 vm_prot_t ftype; in trap_pfault() local 873 ftype = -1; in trap_pfault() 889 ftype = -1; in trap_pfault() 935 ftype = VM_PROT_WRITE; in trap_pfault() 937 ftype = VM_PROT_EXECUTE; in trap_pfault() 939 ftype = VM_PROT_READ; in trap_pfault() 956 if (ftype & VM_PROT_WRITE) in trap_pfault() 960 rv = vm_fault(map, va, ftype, fault_flags); in trap_pfault() 963 …%s) map=%p va=%p ftype=%d fault_flags=%d\n", td, td->td_comm, map, (void *)va, ftype, fault_flags); in trap_pfault() 974 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL); in trap_pfault() [all …]
|
| /dragonfly/contrib/gcc-4.7/gcc/cp/ |
| HD | typeck2.c | 764 tree ftype = unlowered_expr_type (init); in check_narrowing() local 784 && TREE_CODE (ftype) == REAL_TYPE) in check_narrowing() 786 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype) in check_narrowing() 789 if (TREE_CODE (ftype) == ENUMERAL_TYPE) in check_narrowing() 791 ftype = ENUM_UNDERLYING_TYPE (ftype); in check_narrowing() 793 TYPE_MAX_VALUE (ftype)) in check_narrowing() 794 || tree_int_cst_lt (TYPE_MIN_VALUE (ftype), in check_narrowing() 800 else if (TREE_CODE (ftype) == REAL_TYPE in check_narrowing() 803 if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype)) in check_narrowing() 819 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype) in check_narrowing() [all …]
|
| /dragonfly/contrib/gcc-8.0/gcc/cp/ |
| HD | typeck2.c | 880 tree ftype = unlowered_expr_type (init); in check_narrowing() local 905 && TREE_CODE (ftype) == REAL_TYPE) in check_narrowing() 907 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype) in check_narrowing() 910 if (TREE_CODE (ftype) == ENUMERAL_TYPE) in check_narrowing() 912 ftype = ENUM_UNDERLYING_TYPE (ftype); in check_narrowing() 914 TYPE_MAX_VALUE (ftype)) in check_narrowing() 915 || tree_int_cst_lt (TYPE_MIN_VALUE (ftype), in check_narrowing() 921 else if (TREE_CODE (ftype) == REAL_TYPE in check_narrowing() 924 if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype)) in check_narrowing() 940 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype) in check_narrowing() [all …]
|
| /dragonfly/sys/platform/vkernel64/x86_64/ |
| HD | trap.c | 789 vm_prot_t ftype; in trap_pfault() local 816 ftype = VM_PROT_READ | VM_PROT_WRITE; in trap_pfault() 818 ftype = VM_PROT_EXECUTE; in trap_pfault() 820 ftype = VM_PROT_READ; in trap_pfault() 849 if (ftype & VM_PROT_WRITE) in trap_pfault() 853 rv = vm_fault(map, va, ftype, fault_flags); in trap_pfault() 860 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL); in trap_pfault()
|
| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | tree.c | 9494 tree tmp, ftype; in build_common_builtin_nodes() local 9500 ftype = build_function_type_list (ptr_type_node, in build_common_builtin_nodes() 9505 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY, in build_common_builtin_nodes() 9508 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE, in build_common_builtin_nodes() 9514 ftype = build_function_type_list (integer_type_node, const_ptr_type_node, in build_common_builtin_nodes() 9517 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP, in build_common_builtin_nodes() 9523 ftype = build_function_type_list (ptr_type_node, in build_common_builtin_nodes() 9526 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET, in build_common_builtin_nodes() 9532 ftype = build_function_type_list (ptr_type_node, in build_common_builtin_nodes() 9534 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA, in build_common_builtin_nodes() [all …]
|
| /dragonfly/sbin/devfsctl/ |
| HD | devfsctl.c | 561 read_config(const char *name, int ftype) in read_config() argument 589 while (process_line(fd, ftype) == 0) in read_config() 603 process_line(FILE* fd, int ftype) in process_line() argument 668 switch (ftype) { in process_line()
|
| /dragonfly/contrib/cvs-1.12/src/ |
| HD | update.c | 2698 char ftype[16]; in special_file_mismatch() local 2699 if (sscanf (n->data, "%15s %lu", ftype, in special_file_mismatch() 2704 if (strcmp (ftype, "character") == 0) in special_file_mismatch() 2706 else if (strcmp (ftype, "block") == 0) in special_file_mismatch() 2710 finfo->file, rev1, ftype); in special_file_mismatch() 2778 char ftype[16]; in special_file_mismatch() local 2779 if (sscanf (n->data, "%15s %lu", ftype, in special_file_mismatch() 2784 if (strcmp (ftype, "character") == 0) in special_file_mismatch() 2786 else if (strcmp (ftype, "block") == 0) in special_file_mismatch() 2790 finfo->file, rev2, ftype); in special_file_mismatch()
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | tree.c | 10148 tree tmp, ftype; in build_common_builtin_nodes() local 10154 ftype = build_function_type (void_type_node, void_list_node); in build_common_builtin_nodes() 10156 local_define_builtin ("__builtin_unreachable", ftype, in build_common_builtin_nodes() 10162 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT, in build_common_builtin_nodes() 10170 ftype = build_function_type_list (ptr_type_node, in build_common_builtin_nodes() 10175 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY, in build_common_builtin_nodes() 10178 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE, in build_common_builtin_nodes() 10184 ftype = build_function_type_list (integer_type_node, const_ptr_type_node, in build_common_builtin_nodes() 10187 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP, in build_common_builtin_nodes() 10193 ftype = build_function_type_list (ptr_type_node, in build_common_builtin_nodes() [all …]
|
| /dragonfly/stand/lib/ |
| HD | nfs.c | 678 n_long ftype, mode; in nfs_stat() local 680 ftype = ntohl(fp->fa.fa_type); in nfs_stat() 682 mode |= nfs_stat_types[ftype & 7]; in nfs_stat()
|
| /dragonfly/usr.sbin/config/ |
| HD | mkmakefile.c | 721 const char *ftype = NULL; in do_rules() local 727 ftype = "NORMAL"; in do_rules() 735 ftype, toupper(och), in do_rules()
|
| /dragonfly/contrib/gcc-4.7/gcc/objc/ |
| HD | objc-gnu-runtime-abi-01.c | 194 tree type, ftype, IMP_type; in gnu_runtime_01_initialize() local 209 ftype = build_varargs_function_type_list (objc_object_type, in gnu_runtime_01_initialize() 214 IMP_type = build_pointer_type (ftype); in gnu_runtime_01_initialize() 678 tree ftype in build_objc_method_call() local 685 ftype = build_type_attribute_variant (ftype, in build_objc_method_call() 689 sender_cast = build_pointer_type (ftype); in build_objc_method_call()
|
| HD | objc-next-runtime-abi-02.c | 1358 tree field, ref, class_name, offset, ftype, expr; in objc_v2_build_ivar_ref() local 1378 ftype = TREE_TYPE (field); in objc_v2_build_ivar_ref() 1388 expr = build_c_cast (input_location, build_pointer_type (ftype), expr); in objc_v2_build_ivar_ref() 1397 TREE_TYPE (ref) = ftype; in objc_v2_build_ivar_ref() 1586 tree ftype = build_function_type_for_method (ret_type, method_prototype, in build_v2_build_objc_method_call() local 1591 ftype = build_type_attribute_variant ( in build_v2_build_objc_method_call() 1592 ftype, METHOD_TYPE_ATTRIBUTES (method_prototype)); in build_v2_build_objc_method_call() 1594 sender_cast = build_pointer_type (ftype); in build_v2_build_objc_method_call() 1597 method_params = objc_copy_to_temp_side_effect_params (ftype, in build_v2_build_objc_method_call()
|
| /dragonfly/contrib/binutils-2.34/binutils/ |
| HD | rdcoff.c | 455 debug_type ftype; in parse_coff_struct_type() local 458 ftype = parse_coff_type (abfd, symbols, types, this_coff_symno, in parse_coff_struct_type() 460 f = debug_make_field (dhandle, bfd_asymbol_name (sym), ftype, in parse_coff_struct_type()
|
| /dragonfly/contrib/binutils-2.27/binutils/ |
| HD | rdcoff.c | 453 debug_type ftype; in parse_coff_struct_type() local 456 ftype = parse_coff_type (abfd, symbols, types, this_coff_symno, in parse_coff_struct_type() 458 f = debug_make_field (dhandle, bfd_asymbol_name (sym), ftype, in parse_coff_struct_type()
|
| HD | ieee.c | 1553 debug_type ftype; in parse_ieee_ty() local 1560 if (! ieee_read_type_index (info, pp, &ftype) in parse_ieee_ty() 1573 ftype, bitpos, bitsize, in parse_ieee_ty() 1694 debug_type ftype; in parse_ieee_ty() local 1707 ftype = ieee_builtin_type (info, ty_code_start, tindx); in parse_ieee_ty() 1719 ftype = t->type; in parse_ieee_ty() 1733 ftype, offset, bitsize, in parse_ieee_ty() 2732 debug_type ftype; in ieee_read_cxx_class() local 2761 ftype = pv->type; in ieee_read_cxx_class() 2765 ftype = ieee_builtin_type (info, start, in ieee_read_cxx_class() [all …]
|
| /dragonfly/include/rpcsvc/ |
| HD | nfs_prot.x | 81 enum ftype { enum 113 ftype type; /* file type */
|
| /dragonfly/contrib/gdb-7/gdb/python/ |
| HD | py-value.c | 584 struct type *ftype = NULL; in valpy_call() local 590 ftype = check_typedef (value_type (function)); in valpy_call() 594 if (TYPE_CODE (ftype) != TYPE_CODE_FUNC) in valpy_call()
|