Searched refs:ov (Results 1 - 20 of 20) sorted by relevance

/freebsd-current/crypto/heimdal/lib/roken/
H A Dflock.c88 OVERLAPPED ov;
98 ZeroMemory(&ov, sizeof(ov));
99 ov.hEvent = NULL;
100 ov.Offset = FLOCK_OFFSET_LOW;
101 ov.OffsetHigh = FLOCK_OFFSET_HIGH;
109 FLOCK_LENGTH_LOW, FLOCK_LENGTH_HIGH, &ov);
114 FLOCK_LENGTH_LOW, FLOCK_LENGTH_HIGH, &ov);
120 &ov);
/freebsd-current/sys/fs/procfs/
H A Dprocfs_osrel.c44 int ov, osrel, i; local
61 ov = osrel * 10 + *pp++ - '0';
62 if (ov < osrel)
64 osrel = ov;
/freebsd-current/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c161 oidvalue_get_float(const struct oidvalue *ov) argument
164 switch (ov->type) {
166 return (ov->value.s);
168 return (ov->value.u);
170 return (ov->value.f);
178 oidvalue_set_signed(struct oidvalue *ov, intmax_t s) argument
181 ov->type = SIGNED;
182 ov->value.s = s;
187 oidvalue_set_unsigned(struct oidvalue *ov, uintmax_t u) argument
190 ov
196 oidvalue_set_float(struct oidvalue *ov, double f) argument
205 oidvalue_print(const struct oidvalue *ov, FILE *fp) argument
236 oid_get_value(const struct oid *o, const struct oidformat *of, struct oidvalue *ov) argument
494 struct oidvalue ov; local
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp392 uint8_t v = visibility(), ov = other.visibility(); local
393 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov));
399 uint8_t v = visibility(), ov = other.visibility(); local
400 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov));
581 uint8_t v = visibility(), ov = other.visibility(); local
582 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov));
619 uint8_t v = visibility(), ov local
[all...]
/freebsd-current/libexec/rtld-elf/
H A Drtld_malloc.c173 void *mem, *ov; local
185 ov = cp2op((void *)x);
188 memcpy(ov, &ov1, sizeof(ov1));
/freebsd-current/tests/sys/netinet6/frag6/
H A Dfrag6_05.sh424 ov=`sysctl -n net.inet6.ip6.maxfrags`
425 echo "${ov}" > ${HOME}/sysctl-$(atf_get ident).txt
437 ov=`cat ${HOME}/sysctl-$(atf_get ident).txt`
439 sysctl net.inet6.ip6.maxfrags=${ov}
451 ov=`sysctl -n net.inet6.ip6.maxfrags`
452 echo "${ov}" > ${HOME}/sysctl-$(atf_get ident).txt
464 ov=`cat ${HOME}/sysctl-$(atf_get ident).txt`
466 sysctl net.inet6.ip6.maxfrags=${ov}
/freebsd-current/contrib/libucl/src/
H A Ducl_util.c280 if (obj->value.ov != NULL) {
281 ucl_hash_destroy (obj->value.ov, (ucl_hash_free_func)dtor);
283 obj->value.ov = NULL;
1189 container = parser->stack->obj->value.ov;
1318 parser->stack->obj->value.ov = container;
2390 if (top->value.ov == NULL) {
2391 top->value.ov = ucl_hash_create (false);
2421 found = __DECONST (ucl_object_t *, ucl_hash_search_obj (top->value.ov, elt));
2424 top->value.ov = ucl_hash_insert_object (top->value.ov, el
[all...]
H A Ducl_parser.c662 if (nobj->value.ov == NULL) {
663 nobj->value.ov = ucl_hash_create (parser->flags & UCL_PARSER_KEY_LOWERCASE);
664 if (nobj->value.ov == NULL) {
1175 container = parser->stack->obj->value.ov;
1178 tobj = __DECONST (ucl_object_t *, ucl_hash_search_obj (cur->value.ov, nobj));
1275 parser->stack->obj->value.ov = container;
H A Ducl_emitter.c319 while ((cur = ucl_hash_iterate (obj->value.ov, &it))) {
H A Ducl_hash.c633 ucl_hash_sort (hashlin->ar.a[i]->value.ov, fl);
/freebsd-current/contrib/libucl/utils/
H A Dobjdump.c58 printf ("%svalue: %p\n", pre, obj->value.ov);
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dconfigfile.c156 const tOptionValue * ov = *(poptv++); local
157 const tOptionValue * rv = optionGetValue(ov, name);
163 res = ov;
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h1274 OpaqueValueMappingData(const OpaqueValueExpr *ov, argument
1276 : OpaqueValue(ov), BoundLValue(boundLValue) {}
1292 const OpaqueValueExpr *ov,
1294 if (shouldBindAsLValue(ov))
1295 return bind(CGF, ov, CGF.EmitLValue(e));
1296 return bind(CGF, ov, CGF.EmitAnyExpr(e));
1300 const OpaqueValueExpr *ov,
1302 assert(shouldBindAsLValue(ov));
1303 CGF.OpaqueLValues.insert(std::make_pair(ov, lv));
1304 return OpaqueValueMappingData(ov, tru
1291 bind(CodeGenFunction &CGF, const OpaqueValueExpr *ov, const Expr *e) argument
1299 bind(CodeGenFunction &CGF, const OpaqueValueExpr *ov, const LValue &lv) argument
1307 bind(CodeGenFunction &CGF, const OpaqueValueExpr *ov, const RValue &rv) argument
[all...]
H A DCGExpr.cpp6061 if (const auto *ov = dyn_cast<OpaqueValueExpr>(semantic)) {
6063 if (ov->isUnique()) {
6064 assert(ov != resultExpr &&
6073 if (ov == resultExpr && ov->isPRValue() && !forLValue &&
6074 CodeGenFunction::hasAggregateEvaluationKind(ov->getType())) {
6075 CGF.EmitAggExpr(ov->getSourceExpr(), slot);
6076 LValue LV = CGF.MakeAddrLValue(slot.getAddress(), ov->getType(),
6078 opaqueData = OVMA::bind(CGF, ov, LV);
6083 opaqueData = OVMA::bind(CGF, ov, o
[all...]
H A DCGObjC.cpp3146 if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) {
3152 if (ov == resultExpr) {
3153 assert(!OVMA::shouldBindAsLValue(ov));
3154 result = asImpl().visit(ov->getSourceExpr());
3155 opaqueData = OVMA::bind(CGF, ov,
3160 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr());
/freebsd-current/sys/netpfil/pf/
H A Dpf_norm.c1479 u_int16_t ov, nv; local
1481 ov = *(u_int16_t *)(&th->th_ack + 1);
1486 th->th_sum = pf_proto_cksum_fixup(m, th->th_sum, ov, nv, 0);
2300 u_int16_t ov, nv; local
2302 ov = *(u_int16_t *)h;
2306 h->ip_sum = pf_cksum_fixup(h->ip_sum, ov, nv, 0);
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_gpsdjson.c1874 int ov; local
1911 ov = 1;
1913 (void *)&ov, sizeof(ov));
/freebsd-current/contrib/libucl/include/
H A Ducl.h229 void *ov; /**< Object */ member in union:ucl_object_s::__anon1172
/freebsd-current/sys/contrib/dev/rtw89/
H A Drtw8852a.c1798 u32 ov = cur & ~B_AX_TXAGC_BT_MASK; local
1801 return ov | iv | B_AX_TXAGC_BT_EN;
/freebsd-current/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh4088 ov+0kOi3hUN/Syj0Iwf4v/zpz/M7FWJdvA0bX8LW9tYpiRWtG8jS06rh6vg/REQf
4106 6v/pl+bd7/ov/3odITvMCJTw5Eb7PBqHaxAjPDJB1P6O0GZ6xqgPPhNg1ieXaXTo
4705 ov+UPlcwuDTa1ANX5HVVWHdCDYTWAOHtos3znlm+e1CudqHgayOCq1cnnXWLinCz

Completed in 266 milliseconds