Home
last modified time | relevance | path

Searched full:ov (Results 1 – 25 of 83) sorted by relevance

1234

/freebsd/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c161 oidvalue_get_float(const struct oidvalue *ov) in oidvalue_get_float() argument
164 switch (ov->type) { in oidvalue_get_float()
166 return (ov->value.s); in oidvalue_get_float()
168 return (ov->value.u); in oidvalue_get_float()
170 return (ov->value.f); in oidvalue_get_float()
178 oidvalue_set_signed(struct oidvalue *ov, intmax_t s) in oidvalue_set_signed() argument
181 ov->type = SIGNED; in oidvalue_set_signed()
182 ov->value.s = s; in oidvalue_set_signed()
187 oidvalue_set_unsigned(struct oidvalue *ov, uintmax_t u) in oidvalue_set_unsigned() argument
190 ov->type = UNSIGNED; in oidvalue_set_unsigned()
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Dflock.c88 OVERLAPPED ov; in rk_flock()
98 ZeroMemory(&ov, sizeof(ov)); in rk_flock()
99 ov.hEvent = NULL; in rk_flock()
100 ov.Offset = FLOCK_OFFSET_LOW; in rk_flock()
101 ov.OffsetHigh = FLOCK_OFFSET_HIGH; in rk_flock()
109 FLOCK_LENGTH_LOW, FLOCK_LENGTH_HIGH, &ov); in rk_flock()
114 FLOCK_LENGTH_LOW, FLOCK_LENGTH_HIGH, &ov); in rk_flock()
120 &ov); in rk_flock()
/freebsd/sys/fs/procfs/
H A Dprocfs_osrel.c44 int ov, osrel, i; in procfs_doosrel() local
61 ov = osrel * 10 + *pp++ - '0'; in procfs_doosrel()
62 if (ov < osrel) in procfs_doosrel()
64 osrel = ov; in procfs_doosrel()
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Ddlg,da9063.yaml15 Using regulator-{uv,ov}-{warn,error,protection}-microvolt requires special
18 UV *and* OV monitoring, both must be set to the same severity and value
133 regulator-ov-protection-microvolt = <0>;
140 regulator-ov-protection-microvolt = <1>;
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp392 uint8_t v = visibility(), ov = other.visibility(); in mergeProperties() local
393 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in mergeProperties()
399 uint8_t v = visibility(), ov = other.visibility(); in resolve() local
400 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve()
581 uint8_t v = visibility(), ov = other.visibility(); in resolve() local
582 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve()
619 uint8_t v = visibility(), ov = other.visibility(); in resolve() local
620 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve()
/freebsd/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/share/man/man9/
H A Dzero_region.964 aiov.iov_base = __DECONST(void *, zero_region);
65 aiov.iov_len = ZERO_REGION_SIZE;
/freebsd/sys/contrib/device-tree/Bindings/power/supply/
H A Dqcom,pmi8998-charger.yaml27 - const: bat-ov
73 interrupt-names = "usb-plugin", "bat-ov", "wdog-bark", "usbin-icl-change";
/freebsd/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, elt, false);
2432 ucl_hash_replace (top->value.ov, found, elt);
[all …]
/freebsd/sys/contrib/device-tree/Bindings/leds/backlight/
H A Dlp855x.txt28 /* 4V OV, 4 output LED0 string enabled */
67 /* 4V OV, 4 output LED string enabled */
H A Dlp855x-backlight.yaml96 /* 4V OV, 4 output LED0 string enabled */
143 /* 4V OV, 4 output LED string enabled */
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dregulator.yaml145 regulator-ov-protection-microvolt:
152 regulator-ov-error-microvolt:
159 regulator-ov-warn-microvolt:
/freebsd/libexec/rtld-elf/
H A Drtld_malloc.c173 void *mem, *ov; in __crt_aligned_alloc_offset() local
185 ov = cp2op((void *)x); in __crt_aligned_alloc_offset()
188 memcpy(ov, &ov1, sizeof(ov1)); in __crt_aligned_alloc_offset()
/freebsd/lib/libc/nls/
H A Dsk_SK.ISO8859-2.msg84 39 Vy�adovan� cie�ov� adresa
142 68 Prive�a pou��vate�ov
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAssumptionCache.cpp144 void AssumptionCache::transferAffectedValuesInCache(Value *OV, Value *NV) { in transferAffectedValuesInCache() argument
146 auto AVI = AffectedValues.find(OV); in transferAffectedValuesInCache()
153 AffectedValues.erase(OV); in transferAffectedValuesInCache()
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dov5647.txt25 ov: camera@36 {
/freebsd/contrib/ntp/tests/libntp/data/
H A Dntp.keys16 2 MD4 oV'8?f+J5`_EOvW!B,R`
/freebsd/stand/powerpc/ofw/
H A Dcas.c57 /* length of ignored OV */
60 /* byte 1 (of any OV) */
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAssumptionCache.h94 /// Move affected values in the cache for OV to be affected values for NV.
95 void transferAffectedValuesInCache(Value *OV, Value *NV);
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dpmi8998.dtsi21 "bat-ov",
/freebsd/bin/pwait/
H A Dpwait.142 .Op Fl ov
/freebsd/lib/libc/i386/string/
H A Dbcopy.S38 * (ov)bcopy (src,dst,cnt)
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1332 OVERLAPPED OV = {};
1337 if (::LockFileEx(File, Flags, 0, MAXDWORD, MAXDWORD, &OV))
1351 OVERLAPPED OV = {};
1353 if (::LockFileEx(File, Flags, 0, MAXDWORD, MAXDWORD, &OV))
1360 OVERLAPPED OV = {};
1362 if (::UnlockFileEx(File, 0, MAXDWORD, MAXDWORD, &OV))
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h1362 OpaqueValueMappingData(const OpaqueValueExpr *ov,
1364 : OpaqueValue(ov), BoundLValue(boundLValue) {}
1380 const OpaqueValueExpr *ov,
1382 if (shouldBindAsLValue(ov))
1383 return bind(CGF, ov, CGF.EmitLValue(e));
1384 return bind(CGF, ov, CGF.EmitAnyExpr(e));
1388 const OpaqueValueExpr *ov,
1390 assert(shouldBindAsLValue(ov));
1391 CGF.OpaqueLValues.insert(std::make_pair(ov, lv));
1392 return OpaqueValueMappingData(ov, true);
[all …]
/freebsd/contrib/libucl/utils/
H A Dobjdump.c58 printf ("%svalue: %p\n", pre, obj->value.ov); in ucl_obj_dump()

1234