Searched refs:func_type (Results 1 - 17 of 17) sorted by relevance

/freebsd-10-stable/contrib/tcpdump/
H A Dprint-atm.c361 u_int8_t cell_type, func_type, payload, clp; local
371 func_type = (*(p+ATM_HDR_LEN_NOHEC+hec)) & 0x0f;
393 printf(", func-type unknown (%u)", func_type);
396 tok2str(oam_functype_values[cell_type],"none",func_type),
397 func_type);
401 switch (cell_type << 4 | func_type) {
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBFunction.cpp113 Type *func_type = m_opaque_ptr->GetType(); local
114 if (func_type)
115 s.Printf(", type = %s", func_type->GetName().AsCString());
H A DSBType.cpp240 ClangASTType func_type(m_opaque_sp->GetClangASTType(true));
241 size_t count = func_type.GetNumberOfFunctionArguments();
246 sb_type_list.Append(SBType(func_type.GetFunctionArgumentAtIndex(i)));
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DFunction.h356 /// @param[in] func_type
370 Type * func_type,
395 /// @param[in] func_type
409 Type * func_type,
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
H A DFunction.cpp341 Type* func_type = GetType(); local
342 const char *name = func_type ? func_type->GetName().AsCString() : "<unknown>";
H A DSymbolContext.cpp259 Type *func_type = function->GetType(); local
260 if (func_type)
263 func_type->GetDescription (s, level, false);
349 Type* func_type = function->GetType(); local
350 if (func_type)
353 func_type->Dump (s, false);
H A DBlock.cpp406 Type *func_type = function->GetType(); local
408 const Declaration &func_decl = func_type->GetDeclaration();
/freebsd-10-stable/contrib/gcc/config/arm/
H A Darm.c1467 if (ARM_FUNC_TYPE (cfun->machine->func_type) == ARM_FT_UNKNOWN)
1468 cfun->machine->func_type = arm_compute_func_type ();
1470 return cfun->machine->func_type;
1482 unsigned int func_type;
1491 func_type = arm_current_func_type ();
1495 if (func_type & (ARM_FT_VOLATILE | ARM_FT_NAKED))
1499 if (IS_INTERRUPT (func_type) && frame_pointer_needed)
9294 unsigned long func_type = arm_current_func_type ();
9298 if (IS_INTERRUPT (func_type))
9307 if (ARM_FUNC_TYPE (func_type)
1477 unsigned int func_type; local
9278 unsigned long func_type = arm_current_func_type (); local
9362 unsigned long func_type = arm_current_func_type (); local
9534 unsigned long func_type; local
9772 unsigned long func_type; local
9840 unsigned long func_type; local
10491 unsigned long func_type; local
10684 unsigned long func_type; local
13713 unsigned long func_type; local
[all...]
H A Darm.h957 (! IS_INTERRUPT (cfun->machine->func_type) || \
1356 machine_function structure is initialized (to zero) func_type will
1414 unsigned long func_type;
1408 unsigned long func_type; local
/freebsd-10-stable/contrib/gdb/gdb/
H A Dstabsread.c1701 struct type *func_type
1734 TYPE_FIELDS (func_type)
1735 = (struct field *) TYPE_ALLOC (func_type,
1737 memset (TYPE_FIELDS (func_type), 0, num_args * sizeof (struct field));
1746 TYPE_FIELD_TYPE (func_type, i) = t->type;
1748 TYPE_NFIELDS (func_type) = num_args;
1749 TYPE_FLAGS (func_type) |= TYPE_FLAG_PROTOTYPED;
1751 type = func_type;
1697 struct type *func_type local
H A Dada-lang.c2408 struct type *func_type = SYMBOL_TYPE (func);
2411 TYPE_CODE (func_type) == TYPE_CODE_ENUM)
2413 else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC)
2416 if (TYPE_NFIELDS (func_type) != n_actuals)
2421 struct type *ftype = check_typedef (TYPE_FIELD_TYPE (func_type, i));
2424 if (!ada_type_match (TYPE_FIELD_TYPE (func_type, i),
2437 return_match (struct type *func_type, struct type *context_type)
2441 if (func_type == NULL)
2445 /* if (TYPE_CODE (func_type)
2403 struct type *func_type = SYMBOL_TYPE (func); local
2432 return_match(struct type *func_type, struct type *context_type) argument
[all...]
/freebsd-10-stable/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c93 int func_type; member in struct:cpp_demangle_data
576 d->func_type = 0;
1463 ++ddata->func_type;
2106 p_func_type = ddata->func_type;
2110 if (p_func_type == ddata->func_type) {
/freebsd-10-stable/contrib/gcc/
H A Dc-common.c7011 tree func_type;
7017 func_type =
7023 block_object_assign_decl = builtin_function ("_Block_object_assign", func_type,
7049 tree func_type;
7055 func_type =
7060 block_object_dispose_func_decl = builtin_function ("_Block_object_dispose", func_type,
6991 tree func_type; local
7029 tree func_type; local
H A Dc-decl.c3766 tree func_type =
3773 func_type);
3786 tree func_type =
3791 func_type);
3750 tree func_type = local
3770 tree func_type = local
H A Ddwarf2out.c10962 add_prototyped_attribute (dw_die_ref die, tree func_type)
10965 && TYPE_ARG_TYPES (func_type) != NULL)
10949 add_prototyped_attribute(dw_die_ref die, tree func_type) argument
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1080 Type *func_type = m_die_to_type.lookup (die); local
1082 assert(func_type == NULL || func_type != DIE_IS_BEING_PARSED);
1091 func_type,
6561 Type *func_type = NULL; local
6564 func_type = ResolveTypeUID(type_die_offset);
6566 if (func_type)
6567 return_clang_type = func_type->GetClangForwardType();
/freebsd-10-stable/contrib/gcc/cp/
H A Ddecl.c5506 tree func_type;
5509 func_type =
5516 func_type);
5529 tree func_type;
5533 func_type =
5538 func_type);
5495 tree func_type; local
5518 tree func_type; local

Completed in 419 milliseconds