| /freebsd/usr.sbin/prometheus_sysctl_exporter/ |
| H A D | prometheus_sysctl_exporter.c | 161 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 D | flock.c | 88 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 D | procfs_osrel.c | 44 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/contrib/llvm-project/lld/ELF/ |
| H A D | Symbols.cpp | 391 uint8_t v = visibility(), ov = other.visibility(); in mergeProperties() local 392 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in mergeProperties() 398 uint8_t v = visibility(), ov = other.visibility(); in resolve() local 399 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve() 576 uint8_t v = visibility(), ov = other.visibility(); in resolve() local 577 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve() 612 uint8_t v = visibility(), ov = other.visibility(); in resolve() local 613 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenFunction.h | 151 OpaqueValueMappingData(const OpaqueValueExpr *ov, bool boundLValue) in OpaqueValueMappingData() argument 152 : opaqueValue(ov), boundLValue(boundLValue) {} in OpaqueValueMappingData() 168 bind(CIRGenFunction &cgf, const OpaqueValueExpr *ov, const Expr *e) { in bind() argument 169 if (shouldBindAsLValue(ov)) in bind() 170 return bind(cgf, ov, cgf.emitLValue(e)); in bind() 171 return bind(cgf, ov, cgf.emitAnyExpr(e)); in bind() 175 bind(CIRGenFunction &cgf, const OpaqueValueExpr *ov, const LValue &lv) { in bind() argument 176 assert(shouldBindAsLValue(ov)); in bind() 177 cgf.opaqueLValues.insert(std::make_pair(ov, lv)); in bind() 178 return OpaqueValueMappingData(ov, true); in bind() [all …]
|
| /freebsd/tests/sys/netinet6/frag6/ |
| H A D | frag6_05.sh | 424 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/libexec/rtld-elf/ |
| H A D | rtld_malloc.c | 173 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/contrib/libucl/src/ |
| H A D | ucl_util.c | 277 if (obj->value.ov != NULL) { 278 ucl_hash_destroy(obj->value.ov, (ucl_hash_free_func) dtor); 280 obj->value.ov = NULL; 1212 container = parser->stack->obj->value.ov; 1343 parser->stack->obj->value.ov = container; 2402 if (top->value.ov == NULL) { 2403 top->value.ov = ucl_hash_create(false); 2433 found = __DECONST(ucl_object_t *, ucl_hash_search_obj(top->value.ov, elt)); 2436 top->value.ov = ucl_hash_insert_object(top->value.ov, elt, false); 2444 ucl_hash_replace(top->value.ov, found, elt); [all …]
|
| H A D | ucl_parser.c | 689 if (nobj->value.ov == NULL) { in ucl_parser_add_container() 690 nobj->value.ov = ucl_hash_create(parser->flags & UCL_PARSER_KEY_LOWERCASE); in ucl_parser_add_container() 691 if (nobj->value.ov == NULL) { in ucl_parser_add_container() 1248 container = parser->stack->obj->value.ov; in ucl_parser_process_object_element() 1253 tobj = __DECONST(ucl_object_t *, ucl_hash_search_obj(cur->value.ov, nobj)); in ucl_parser_process_object_element() 1261 if (cur->value.ov != container) { in ucl_parser_process_object_element() 1360 parser->stack->obj->value.ov = container; in ucl_parser_process_object_element()
|
| /freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
| H A D | ov5647.txt | 25 ov: camera@36 {
|
| /freebsd/crypto/openssl/test/recipes/15-test_ml_kem_codecs_data/ |
| H A D | prv-1024-priv-only.pem | 18 ov+6EwKyErgDctjpBJ22mjoSYdCihZqbTVeJngukFgehtnp8DhKSNon4xjlTd9lw
|
| H A D | prv-1024-oqskeypair.pem | 18 ov+6EwKyErgDctjpBJ22mjoSYdCihZqbTVeJngukFgehtnp8DhKSNon4xjlTd9lw
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | pmi8998.dtsi | 21 "bat-ov",
|
| H A D | pm660.dtsi | 84 interrupt-names = "usb-plugin", "bat-ov", "wdog-bark", "usbin-icl-change";
|
| /freebsd/contrib/ntp/sntp/libopts/ |
| H A D | configfile.c | 156 const tOptionValue * ov = *(poptv++); in optionFindValue() local 157 const tOptionValue * rv = optionGetValue(ov, name); in optionFindValue() 163 res = ov; in optionFindValue()
|
| /freebsd/lib/libc/nls/ |
| H A D | sk_SK.ISO8859-2.msg | 84 39 Vy�adovan� cie�ov� adresa 142 68 Prive�a pou��vate�ov
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.h | 1397 OpaqueValueMappingData(const OpaqueValueExpr *ov, bool boundLValue) 1398 : OpaqueValue(ov), BoundLValue(boundLValue) {} 1414 bind(CodeGenFunction &CGF, const OpaqueValueExpr *ov, const Expr *e) { 1415 if (shouldBindAsLValue(ov)) 1416 return bind(CGF, ov, CGF.EmitLValue(e)); 1417 return bind(CGF, ov, CGF.EmitAnyExpr(e)); 1421 bind(CodeGenFunction &CGF, const OpaqueValueExpr *ov, const LValue &lv) { 1422 assert(shouldBindAsLValue(ov)); 1423 CGF.OpaqueLValues.insert(std::make_pair(ov, lv)); 1424 return OpaqueValueMappingData(ov, true); [all …]
|
| H A D | CGExpr.cpp | 6620 if (const auto *ov = dyn_cast<OpaqueValueExpr>(semantic)) { in emitPseudoObjectExpr() local 6622 if (ov->isUnique()) { in emitPseudoObjectExpr() 6623 assert(ov != resultExpr && in emitPseudoObjectExpr() 6632 if (ov == resultExpr && ov->isPRValue() && !forLValue && in emitPseudoObjectExpr() 6633 CodeGenFunction::hasAggregateEvaluationKind(ov->getType())) { in emitPseudoObjectExpr() 6634 CGF.EmitAggExpr(ov->getSourceExpr(), slot); in emitPseudoObjectExpr() 6635 LValue LV = CGF.MakeAddrLValue(slot.getAddress(), ov->getType(), in emitPseudoObjectExpr() 6637 opaqueData = OVMA::bind(CGF, ov, LV); in emitPseudoObjectExpr() 6642 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr()); in emitPseudoObjectExpr() 6645 if (ov == resultExpr) { in emitPseudoObjectExpr() [all …]
|
| H A D | CGObjC.cpp | 3190 if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) { in visitPseudoObjectExpr() local 3196 if (ov == resultExpr) { in visitPseudoObjectExpr() 3197 assert(!OVMA::shouldBindAsLValue(ov)); in visitPseudoObjectExpr() 3198 result = asImpl().visit(ov->getSourceExpr()); in visitPseudoObjectExpr() 3199 opaqueData = OVMA::bind(CGF, ov, in visitPseudoObjectExpr() 3204 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr()); in visitPseudoObjectExpr()
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | refclock_gpsdjson.c | 1874 int ov; in gpsd_init_socket() local 1911 ov = 1; in gpsd_init_socket() 1913 (void *)&ov, sizeof(ov)); in gpsd_init_socket()
|
| /freebsd/contrib/less/ |
| H A D | line.c | 850 int ov; in store_char() local 853 ov = (a & (AT_UNDERLINE|AT_BOLD)); in store_char() 854 if (ov != AT_NORMAL) in store_char() 855 last_overstrike = ov; in store_char()
|
| /freebsd/sys/netpfil/pf/ |
| H A D | pf_norm.c | 1482 u_int16_t ov, nv; in pf_normalize_tcp() local 1484 ov = *(u_int16_t *)(&th->th_ack + 1); in pf_normalize_tcp() 1489 th->th_sum = pf_proto_cksum_fixup(pd->m, th->th_sum, ov, nv, 0); in pf_normalize_tcp() 2260 u_int16_t ov, nv; in pf_scrub() local 2262 ov = *(u_int16_t *)h; in pf_scrub() 2267 h->ip_sum = pf_cksum_fixup(h->ip_sum, ov, nv, 0); in pf_scrub()
|
| /freebsd/contrib/libcbor/ |
| H A D | README.md | 38 Also, thank you for the shout out in <https://github.com/oz123/awesome-c?tab=readme-ov-file#others>!
|
| /freebsd/secure/caroot/trusted/ |
| H A D | Hongkong_Post_Root_CA_3.pem | 127 gZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov+BS5gLNdTaqX4fnk
|
| /freebsd/contrib/libucl/include/ |
| H A D | ucl.h | 242 void *ov; /**< Object */ member
|