Home
last modified time | relevance | path

Searched refs:comps (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/dev/iser/
H A Diser_verbs.c213 device->comps = malloc(device->comps_used * sizeof(*device->comps), in iser_create_device_ib_res()
227 struct iser_comp *comp = &device->comps[i]; in iser_create_device_ib_res()
268 struct iser_comp *comp = &device->comps[i]; in iser_create_device_ib_res()
274 struct iser_comp *comp = &device->comps[i]; in iser_create_device_ib_res()
280 free(device->comps, M_ISER_VERBS); in iser_create_device_ib_res()
295 struct iser_comp *comp = &device->comps[i]; in iser_free_device_ib_res()
305 free(device->comps, M_ISER_VERBS); in iser_free_device_ib_res()
306 device->comps = NULL; in iser_free_device_ib_res()
435 if (device->comps[index].active_qps < in iser_create_ib_conn_res()
436 device->comps[min_index].active_qps) in iser_create_ib_conn_res()
[all …]
H A Dicl_iser.h358 struct iser_comp *comps; member
/freebsd/sbin/pfctl/
H A Dpfctl_optimize.c1219 } comps[] = PF_SKIP_COMPARITORS; in skip_init() local
1223 for (i = 0; i < sizeof(comps)/sizeof(*comps); i++) in skip_init()
1224 if (comps[i].skipnum == skipnum) { in skip_init()
1225 skip_comparitors[skipnum] = comps[i].func; in skip_init()
1226 skip_comparitors_names[skipnum] = comps[i].name; in skip_init()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1660 ArrayRef<OffsetOfNode> comps, in Create() argument
1664 totalSizeToAlloc<OffsetOfNode, Expr *>(comps.size(), exprs.size())); in Create()
1666 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs, in Create()
1679 ArrayRef<OffsetOfNode> comps, ArrayRef<Expr *> exprs, in OffsetOfExpr() argument
1683 NumComps(comps.size()), NumExprs(exprs.size()) { in OffsetOfExpr()
1684 for (unsigned i = 0; i != comps.size(); ++i) in OffsetOfExpr()
1685 setComponent(i, comps[i]); in OffsetOfExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2490 ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs,
2501 ArrayRef<OffsetOfNode> comps,