Home
last modified time | relevance | path

Searched refs:type (Results 251 – 275 of 9536) sorted by relevance

1...<<11121314151617181920>>...382

/freebsd/sys/net/route/
H A Droute_subscription.c49 enum rib_subscription_type type; member
56 rib_notify(struct rib_head *rnh, enum rib_subscription_type type, in rib_notify() argument
62 if (rs->type == type) in rib_notify()
69 enum rib_subscription_type type, bool waitok) in allocate_subscription() argument
80 rs->type = type; in allocate_subscription()
93 enum rib_subscription_type type, bool waitok) in rib_subscribe() argument
103 return (rib_subscribe_internal(rnh, f, arg, type, waitok)); in rib_subscribe()
108 enum rib_subscription_type type, bool waitok) in rib_subscribe_internal() argument
113 if ((rs = allocate_subscription(f, arg, type, waitok)) == NULL) in rib_subscribe_internal()
128 enum rib_subscription_type type) in rib_subscribe_locked() argument
[all …]
/freebsd/bin/getfacl/
H A Dgetfacl.c105 if (type == ACL_TYPE_DEFAULT) { in print_acl()
110 type = ACL_TYPE_NFS4; in print_acl()
126 acl = acl_get_link_np(path, type); in print_acl()
128 acl = acl_get_file(path, type); in print_acl()
135 if (type == ACL_TYPE_DEFAULT) in print_acl()
178 if (print_acl(pathname, type, hflag, iflag, nflag, in print_acl_from_stdin()
190 acl_type_t type = ACL_TYPE_ACCESS; in main() local
203 type = ACL_TYPE_DEFAULT; in main()
228 error = print_acl_from_stdin(type, hflag, iflag, nflag, in main()
235 error = print_acl_from_stdin(type, hflag, iflag, nflag, in main()
[all …]
/freebsd/contrib/byacc/test/
H A Dbtyacc_demo.y27 Type *type; member
40 Type *type; member
56 %type <expr> expr(<scope>)
57 %type decl(<scope>) declarator_list(<scope>, <type>)
59 %type <code> statement(<scope>) statement_list(<scope>)
61 %type <decl> declarator(<scope>, <type>) formal_arg(<scope>)
62 %type <type> decl_specs(<scope>) decl_spec(<scope>) typename(<scope>)
64 %type <scope> opt_scope(<scope>)
103 $$ = d->type; ]
155 { $$ = make_array($1->type, $3); }
[all …]
/freebsd/usr.sbin/ypserv/
H A Dyp_dnslookup.c116 unsigned long type; member
206 switch (type) { in yp_find_dnsqent()
412 int type; in yp_async_lookup_name() local
415 type = -1; in yp_async_lookup_name()
416 len = sizeof(type); in yp_async_lookup_name()
435 q->prot_type = type; in yp_async_lookup_name()
470 int type, n; in yp_async_lookup_addr() local
473 type = -1; in yp_async_lookup_addr()
474 len = sizeof(type); in yp_async_lookup_addr()
516 q->type = T_PTR; in yp_async_lookup_addr()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-opp-swift.dts418 type = <PCA955X_TYPE_GPIO>;
423 type = <PCA955X_TYPE_GPIO>;
428 type = <PCA955X_TYPE_GPIO>;
433 type = <PCA955X_TYPE_GPIO>;
438 type = <PCA955X_TYPE_GPIO>;
443 type = <PCA955X_TYPE_GPIO>;
448 type = <PCA955X_TYPE_GPIO>;
453 type = <PCA955X_TYPE_GPIO>;
458 type = <PCA955X_TYPE_GPIO>;
463 type = <PCA955X_TYPE_GPIO>;
[all …]
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatCache.cpp54 FormatCache::Entry &FormatCache::GetEntry(ConstString type) { in GetEntry() argument
55 auto i = m_map.find(type), e = m_map.end(); in GetEntry()
58 m_map[type] = FormatCache::Entry(); in GetEntry()
59 return m_map[type]; in GetEntry()
77 bool FormatCache::Get(ConstString type, ImplSP &format_impl_sp) { in Get() argument
79 auto entry = GetEntry(type); in Get()
102 void FormatCache::Set(ConstString type, lldb::TypeFormatImplSP &format_sp) { in Set() argument
104 GetEntry(type).Set(format_sp); in Set()
109 GetEntry(type).Set(summary_sp); in Set()
112 void FormatCache::Set(ConstString type, in Set() argument
[all …]
/freebsd/contrib/ofed/libmlx4/
H A Ddbrec.c55 enum mlx4_db_type type) in __add_page() argument
62 pp = ps / db_size[type]; in __add_page()
79 page->next = context->db_list[type]; in __add_page()
80 context->db_list[type] = page; in __add_page()
87 uint32_t *mlx4_alloc_db(struct mlx4_context *context, enum mlx4_db_type type) in mlx4_alloc_db() argument
95 for (page = context->db_list[type]; page; page = page->next) in mlx4_alloc_db()
99 page = __add_page(context, type); in mlx4_alloc_db()
111 db = page->buf.buf + (i * 8 * sizeof (long) + (j - 1)) * db_size[type]; in mlx4_alloc_db()
127 for (page = context->db_list[type]; page; page = page->next) in mlx4_free_db()
134 i = ((void *) db - page->buf.buf) / db_size[type]; in mlx4_free_db()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_new_delete.cpp33 #define OPERATOR_NEW_BODY(type, nothrow) \ argument
35 void *res = memprof_memalign(0, size, &stack, type); \
39 #define OPERATOR_NEW_BODY_ALIGN(type, nothrow) \ argument
41 void *res = memprof_memalign((uptr)align, size, &stack, type); \
81 #define OPERATOR_DELETE_BODY(type) \ argument
83 memprof_delete(ptr, 0, 0, &stack, type);
85 #define OPERATOR_DELETE_BODY_SIZE(type) \ argument
87 memprof_delete(ptr, size, 0, &stack, type);
89 #define OPERATOR_DELETE_BODY_ALIGN(type) \ argument
91 memprof_delete(ptr, 0, static_cast<uptr>(align), &stack, type);
[all …]
/freebsd/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h127 #define MEMBER_OFFSET(type, member) (PTR_TO_UINT(&((type *)0)->member)) argument
128 #define NCSW_LIST_OBJECT(p_List, type, member) \ argument
129 ((type *)((char *)(p_List)-MEMBER_OFFSET(type, member)))
176 #define NCSW_LIST_FOR_EACH_OBJECT_SAFE(p_Pos, p_Tmp, p_Head, type, member) \ argument
177 for (p_Pos = NCSW_LIST_OBJECT(NCSW_LIST_FIRST(p_Head), type, member), \
178 p_Tmp = NCSW_LIST_OBJECT(NCSW_LIST_FIRST(&p_Pos->member), type, member); \
181 p_Tmp = NCSW_LIST_OBJECT(NCSW_LIST_FIRST(&p_Pos->member), type, member))
196 #define NCSW_LIST_FOR_EACH_OBJECT(p_Pos, type, p_Head, member) \ argument
197 for (p_Pos = NCSW_LIST_OBJECT(NCSW_LIST_FIRST(p_Head), type, member); \
199 p_Pos = NCSW_LIST_OBJECT(NCSW_LIST_FIRST(&(p_Pos->member)), type, member))
/freebsd/contrib/tcpdump/
H A Dprint-forces.c704 type = GET_BE_U_2(tlv->type); in fdatatlv_print()
779 type = GET_BE_U_2(tlv->type); in sdatatlv_print()
808 type = GET_BE_U_2(kdtlv->type); in pkeyitlv_print()
921 type = GET_BE_U_2(pdtlv->type); in pdatacnt_print()
1060 type = GET_BE_U_2(pdtlv->type); in genoptlv_print()
1064 tok2str(ForCES_TLV, NULL, type), type, tlvl); in genoptlv_print()
1116 type = GET_BE_U_2(pdtlv->type); in recpdoptlv_print()
1170 type = GET_BE_U_2(otlv->type); in otlv_print()
1424 type = GET_BE_U_2(tlv->type); in redirect_print()
1512 type = GET_BE_U_2(otlv->type); in lfbselect_print()
[all …]
/freebsd/contrib/ncurses/include/
H A Dnc_alloc.h118 #define typeMalloc(type,elts) (type *)malloc((size_t)(elts)*sizeof(type)) argument
119 #define typeCalloc(type,elts) (type *)calloc((size_t)(elts),sizeof(type)) argument
120 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (size_t)(elts)*sizeof(type)) argument
/freebsd/contrib/diff/lib/
H A Dxalloc.h81 # define NEW(type, var) type *var = xmalloc (sizeof (type)) argument
82 # define XCALLOC(type, n) xcalloc (n, sizeof (type)) argument
83 # define XMALLOC(type, n) xnmalloc (n, sizeof (type)) argument
84 # define XREALLOC(p, type, n) xnrealloc (p, n, sizeof (type)) argument
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dqcom,wcd9335.txt13 Value type: <stringlist>
23 Value type: <u32 u32>
44 Value type: <phandle>
55 Value type: <string>
60 Value type: <phandle>
65 Value type: <phandle>
70 Value type: <phandle>
75 Value type: <phandle>
80 Value type: <phandle>
99 Value type: <int>
[all …]
/freebsd/contrib/bsnmp/lib/
H A Dasn1.c67 *type = *b->asn_cptr; in asn_get_header()
70 *type & ASN_TYPE_MASK); in asn_get_header()
169 type & ASN_TYPE_MASK); in asn_put_header()
175 *b->asn_ptr++ = type; in asn_put_header()
442 u_char type; in asn_get_integer() local
498 u_char type; in asn_get_octetstring() local
550 u_char type; in asn_get_null() local
638 u_char type; in asn_get_objid() local
746 u_char type; in asn_get_sequence() local
795 u_char type; in asn_get_ipaddress() local
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dcopy_cv.h27 using type = _To; member
32 using type = typename add_const<_To>::type;
37 using type = typename add_volatile<_To>::type;
42 using type = typename add_cv<_To>::type;
46 using __copy_cv_t = typename __copy_cv<_From, _To>::type;
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/
H A Dmpic.txt16 Value type: <string>
31 Value type: <empty>
37 Value type: <u32>
39 specifiers do not contain the interrupt-type or type-specific
44 Value type: <u32>
49 Value type: <empty>
62 Value type: <empty>
69 Value type: <empty>
75 Value type: <u32>
194 * type of 2.
[all …]
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DSystemZ.cpp30 RelType getDynRel(RelType type) const override;
85 switch (type) { in getRelExpr()
236 switch (type) { in getImplicitAddend()
271 if (type == R_390_64 || type == R_390_PC64) in getDynRel()
272 return type; in getDynRel()
300 if (type == R_390_TLS_GDCALL || type == R_390_TLS_LDCALL) in getTlsGdRelaxSkip()
326 switch (rel.type) { in relaxTlsGdToIe()
361 switch (rel.type) { in relaxTlsGdToLe()
401 switch (rel.type) { in relaxTlsLdToLe()
450 sec->file, rel.type, rel.addend, in relaxOnce()
[all …]
H A DAArch64.cpp95 switch (type) { in getRelExpr()
189 switch (type) { in usesOnlyLowPageBits()
207 if (type == R_AARCH64_ABS64) in getDynRel()
208 return type; in getDynRel()
213 switch (type) { in getImplicitAddend()
294 if (type != R_AARCH64_CALL26 && type != R_AARCH64_JUMP26 && in needsThunk()
295 type != R_AARCH64_PLT32) in needsThunk()
309 if (type != R_AARCH64_CALL26 && type != R_AARCH64_JUMP26 && in inBranchRange()
367 switch (rel.type) { in relocate()
554 switch (rel.type) { in relaxTlsGdToLe()
[all …]
/freebsd/sys/dev/e1000/
H A De1000_api.c159 mac->type = e1000_82542; in e1000_set_mac_type()
163 mac->type = e1000_82543; in e1000_set_mac_type()
169 mac->type = e1000_82544; in e1000_set_mac_type()
176 mac->type = e1000_82540; in e1000_set_mac_type()
180 mac->type = e1000_82545; in e1000_set_mac_type()
190 mac->type = e1000_82546; in e1000_set_mac_type()
203 mac->type = e1000_82541; in e1000_set_mac_type()
213 mac->type = e1000_82547; in e1000_set_mac_type()
227 mac->type = e1000_82571; in e1000_set_mac_type()
399 mac->type = e1000_i350; in e1000_set_mac_type()
[all …]
/freebsd/crypto/heimdal/lib/asn1/
H A Dgen_template.c159 enum typetype type; member
201 if (t->type == types[i].type) in is_supported_type_p()
218 if (t->type == types[i].type) in symbol_name()
442 if (t->type == TSequence || t->type == TSet || t->type == TChoice) in is_struct()
448 if (t->type == types[i].type) { in is_struct()
472 if (optional && t->type != TTag && t->type != TType) in template_members()
477 switch (t->type) { in template_members()
673 if (t->type == TSetOf) type = "A1_OP_SETOF"; in template_members()
674 else if (t->type == TSequenceOf) type = "A1_OP_SEQOF"; in template_members()
806 Type *type, in generate_template_type() argument
[all …]
/freebsd/sys/contrib/ck/include/
H A Dck_queue.h126 #define CK_SLIST_HEAD(name, type) \ argument
134 #define CK_SLIST_ENTRY(type) \ argument
136 struct type *csle_next; /* next element */ \
203 struct type *curelm = (head)->cslh_first; \
226 #define CK_SLIST_SWAP(a, b, type) do { \ argument
227 struct type *swap_first = (a)->cslh_first; \
235 #define CK_STAILQ_HEAD(name, type) \ argument
244 #define CK_STAILQ_ENTRY(type) \ argument
364 #define CK_LIST_HEAD(name, type) \ argument
372 #define CK_LIST_ENTRY(type) \ argument
[all …]
/freebsd/sys/contrib/device-tree/Bindings/soc/rockchip/
H A Dpower_domain.txt26 "include/dt-bindings/power/px30-power.h" - for PX30 type power domain.
27 "include/dt-bindings/power/rk3036-power.h" - for RK3036 type power domain.
28 "include/dt-bindings/power/rk3066-power.h" - for RK3066 type power domain.
29 "include/dt-bindings/power/rk3128-power.h" - for RK3128 type power domain.
30 "include/dt-bindings/power/rk3188-power.h" - for RK3188 type power domain.
31 "include/dt-bindings/power/rk3228-power.h" - for RK3228 type power domain.
32 "include/dt-bindings/power/rk3288-power.h" - for RK3288 type power domain.
33 "include/dt-bindings/power/rk3328-power.h" - for RK3328 type power domain.
34 "include/dt-bindings/power/rk3366-power.h" - for RK3366 type power domain.
35 "include/dt-bindings/power/rk3368-power.h" - for RK3368 type power domain.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dpincfg-node.yaml22 type: boolean
26 type: boolean
30 type: boolean
71 type: boolean
82 type: boolean
87 type: boolean
92 type: boolean
96 type: boolean
109 type: boolean
113 type: boolean
[all …]
/freebsd/usr.sbin/iovctl/
H A Dparse.c50 ucl_object_tostring(obj), key, type); in report_config_error()
89 const char *type, uint64_t max) in add_uint_config() argument
96 report_config_error(key, obj, type); in add_uint_config()
99 report_config_error(key, obj, type); in add_uint_config()
103 report_config_error(key, obj, type); in add_uint_config()
171 const char *type; in add_config() local
175 if (strcasecmp(type, "bool") == 0) in add_config()
177 else if (strcasecmp(type, "string") == 0) in add_config()
179 else if (strcasecmp(type, "uint8_t") == 0) in add_config()
181 else if (strcasecmp(type, "uint16_t") == 0) in add_config()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp69 bool TypeSystem::IsAnonymousType(lldb::opaque_compiler_type_t type) { in IsAnonymousType() argument
73 CompilerType TypeSystem::GetArrayType(lldb::opaque_compiler_type_t type, in GetArrayType() argument
79 TypeSystem::GetLValueReferenceType(lldb::opaque_compiler_type_t type) { in GetLValueReferenceType() argument
84 TypeSystem::GetRValueReferenceType(lldb::opaque_compiler_type_t type) { in GetRValueReferenceType() argument
97 TypeSystem::AddVolatileModifier(lldb::opaque_compiler_type_t type) { in AddVolatileModifier() argument
102 TypeSystem::AddRestrictModifier(lldb::opaque_compiler_type_t type) { in AddRestrictModifier() argument
117 CompilerType TypeSystem::GetTypeForFormatters(void *type) { in GetTypeForFormatters() argument
118 return CompilerType(weak_from_this(), type); in GetTypeForFormatters()
121 bool TypeSystem::IsTemplateType(lldb::opaque_compiler_type_t type) { in IsTemplateType() argument
151 bool TypeSystem::IsMeaninglessWithoutDynamicResolution(void *type) { in IsMeaninglessWithoutDynamicResolution() argument
[all …]

1...<<11121314151617181920>>...382