Searched refs:store (Results 276 - 300 of 379) sorted by relevance

<<111213141516

/freebsd-current/crypto/openssl/apps/
H A Dstoreutl.c16 #include <openssl/store.h>
66 {"uri", 0, 0, "URI of the store object"},
376 "%s: the store scheme doesn't support the given search criteria.\n",
/freebsd-current/contrib/libevent/build-aux/
H A Ddepcomp44 DEPDIR directory where to store dependencies.
/freebsd-current/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c1747 dma_pool_obj_import(void *arg, void **store, int count, int domain __unused, argument
1766 store[i] = obj;
1773 dma_pool_obj_release(void *arg, void **store, int count) argument
1780 obj = store[i];
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp524 Store store,
523 HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R, SVal val) argument
/freebsd-current/contrib/llvm-project/lld/ELF/Arch/
H A DSystemZ.cpp214 in.got->hasGotOffRel.store(true, std::memory_order_relaxed);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h140 module_sp->m_did_load_objfile.store(true, std::memory_order_relaxed);
1051 /// We store a symbol table parse time duration here because we might have
1055 /// We store a symbol named index time duration here because we might have
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFoldTables.cpp113 FoldTablesChecked.store(true, std::memory_order_relaxed);
158 // Index 0, folded load and store, no alignment requirement.
/freebsd-current/contrib/unbound/util/
H A Dnet_help.c529 /** store port number into sockaddr structure */
1286 /* For windows, the CA trust store is not read by openssl.
1287 Add code to open the trust store using wincrypt API and add
1288 the root certs into openssl trust store */
1294 X509_STORE* store; local
1296 verbose(VERB_ALGO, "Adding Windows certificates from system root store to CA store");
1303 /* Call wincrypt's CertOpenStore to open the CA root store. */
1317 store = SSL_CTX_get_cert_store(tls_ctx);
1318 if (!store)
[all...]
/freebsd-current/sys/kern/
H A Dsubr_vmem.c548 qc_import(void *arg, void **store, int cnt, int domain, int flags) argument
561 store[i] = (void *)addr;
570 qc_release(void *arg, void **store, int cnt) argument
577 vmem_xfree(qc->qc_vmem, (vmem_addr_t)store[i], qc->qc_size);
/freebsd-current/contrib/openbsm/config/
H A Ddepcomp44 DEPDIR directory where to store dependencies.
/freebsd-current/contrib/bearssl/inc/
H A Dbearssl_ssl.h1856 * asymmetric private key that you also store on the system) AND a
3169 * callback shall multiply it with its private key, and store
3358 unsigned char *store; member in struct:__anon38
3375 * \param store storage space for cached entries.
3379 unsigned char *store, size_t store_len);
/freebsd-current/crypto/openssl/crypto/cmp/
H A Dcmp_ctx.c24 * Get current certificate store containing trusted root CA certs
36 * Set certificate store containing trusted (root) CA certs and possibly CRLs
38 * Any already existing store entry is freed. Given NULL, the entry is reset.
40 int OSSL_CMP_CTX_set0_trustedStore(OSSL_CMP_CTX *ctx, X509_STORE *store) argument
47 ctx->trusted = store;
/freebsd-current/crypto/openssl/include/openssl/
H A Dcms.h263 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
267 X509_STORE *store, unsigned int flags);
/freebsd-current/sys/dev/ixgbe/
H A Dixgbe_x550.c2208 u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 }; local
2214 rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_PHY_SW_RESET, &store);
2217 memset(store, 0, sizeof(store));
2219 rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_INIT_PHY, &store);
2232 u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 }; local
2235 rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &store);
2239 if (store[0] & FW_PHY_ACT_GET_LINK_INFO_TEMP) {
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCOFFPlatform.cpp400 Bootstrapping.store(true);
461 Bootstrapping.store(false);
/freebsd-current/contrib/unbound/cachedb/
H A Dcachedb.c393 /* do not store failures like SERVFAIL in the cachedb, this avoids
402 /* We don't store the reply if its TTL is 0 unless serve-expired is
426 * store that, we also store the smallest ttl in the packet+time(0)
587 /* allocate space and store the error string and it's size */
640 * Lookup the qstate.qinfo in extcache, store in qstate.return_msg.
682 (*ie->backend->store)(qstate->env, ie, key,
822 /* store this result in internal cache */
884 /* do not store the item in the external cache */
889 /* store th
[all...]
/freebsd-current/sys/netinet/
H A Dsctputil.c996 * will get more gobbled gook in the random store which is what we
1036 /* Refill the random store */
2951 /* store the current RTT in us */
4684 sctp_recover_scope(struct sockaddr_in6 *addr, struct sockaddr_in6 *store) argument
4690 *store = *addr;
4691 if (!sa6_recoverscope(store)) {
4693 addr = store;
5977 union sctp_sockstore store; local
5984 store.sin6 = control->whoFrom->ro._l_addr.sin6;
5985 store
[all...]
H A Dsctp_auth.c925 /* can't do HMAC with empty key or text or digest store */
985 /* can't do HMAC with empty key or text or digest store */
1065 /* can't do HMAC with empty key or text or digest store */
1099 /* can't do HMAC with empty key or text or digest store */
1826 uint8_t store[SCTP_PARAM_BUFFER_SIZE]; local
1829 if (plen > sizeof(store)) {
1833 (struct sctp_paramhdr *)store,
/freebsd-current/contrib/unbound/services/
H A Doutside_network.c1245 rbtree_type store; local
1246 store = pend->reuse.tree_by_id;
1252 if(store.root != NULL && store.root != RBTREE_NULL) {
1253 traverse_postorder(&store, &mark_for_cb_and_decommission, NULL);
1255 reuse_cb_readwait_for_failure(&store, error);
1256 reuse_del_readwait(&store);
2443 /* allocate space to store query */
2482 /* store query in tree by id */
2483 verbose(VERB_CLIENT, "pending_tcp_query: reuse, store");
[all...]
/freebsd-current/sys/crypto/openssl/arm/
H A Dpoly1305-armv4.S272 stmia r0,{r4,r5,r6,r7,r8} @ store the result
1071 @ store hash value
1145 str r3,[r1,#0] @ store the result
/freebsd-current/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-armv8.pl180 stp $h0,$h1,[$ctx] // store hash value
370 stp w10,w11,[$ctx] // store hash value base 2^26
377 stp $h0,$h1,[$ctx] // store hash value base 2^64
/freebsd-current/contrib/kyua/cli/
H A Dcommon_test.cpp40 #include "store/layout.hpp"
59 namespace layout = store::layout;
234 atf::utils::create_file("homedir/.kyua/store.db", "fake store");
236 ATF_REQUIRE_EQ(fs::path("homedir/.kyua/store.db").to_absolute(),
281 atf::utils::create_file("homedir/.kyua/store.db", "fake store");
283 ATF_REQUIRE_EQ(fs::path("homedir/.kyua/store.db").to_absolute(),
/freebsd-current/sys/contrib/ck/include/gcc/x86_64/
H A Dck_pr.h88 CK_PR_FENCE(store, "sfence")
95 * Provides load-store and store-store ordering. However, Intel specifies that
104 * Provides load-load and load-store ordering. The lfence instruction ensures
138 * Atomic fetch-and-store operations.
243 * Atomic store-to-memory operations.
317 * Atomic store-only unary operations.
375 * Atomic store-only binary operations.
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dkrb5.h481 krb5_error_code (KRB5_CALLCONV * store)(krb5_context, krb5_ccache, krb5_creds*); member in struct:krb5_cc_ops
/freebsd-current/crypto/openssl/crypto/md5/asm/
H A Dmd5-sparcv9.pl261 sta %f0, [%o0 + %g0]0x88 ! store context

Completed in 294 milliseconds

<<111213141516