Home
last modified time | relevance | path

Searched refs:stores (Results 1 – 25 of 252) sorted by relevance

1234567891011

/freebsd/stand/libsa/
H A Dnvstore.c50 nvstore_list_t stores = STAILQ_HEAD_INITIALIZER(stores);
59 STAILQ_FOREACH(st, &stores, nvs_next) { in nvstore_get_store()
87 STAILQ_INSERT_TAIL(&stores, st, nvs_next); in nvstore_init()
100 STAILQ_REMOVE(&stores, st, nvstore, nvs_next); in nvstore_fini()
H A Dnvstore.h39 extern nvstore_list_t stores;
/freebsd/crypto/openssl/doc/man3/
H A DBN_bn2bin.pod38 and stores it at B<to>. B<to> must point to BN_num_bytes(B<a>) bytes of
42 and stores it at B<to>. B<tolen> indicates the length of the output buffer
66 stores it in **B<a>. If *B<a> is NULL, a new B<BIGNUM> is created. If
81 BN_bn2mpi() stores the representation of B<a> at B<to>, where B<to>
86 a B<BIGNUM> and stores it at B<ret>, or in a newly allocated B<BIGNUM>
H A DDH_generate_key.pod40 in B<dh> and the other party's public value in B<pub_key> and stores
46 DH_compute_key_padded() is similar but stores a fixed number of bytes.
H A DOSSL_PARAM_int.pod227 OSSL_PARAM_set_TYPE() stores a value I<val> of type B<I<TYPE>> into the
237 OSSL_PARAM_set_BN() stores the BIGNUM I<val> into the parameter I<p>.
277 referenced by I<p> and stores it in I<*val>.
283 referenced by I<p> and stores it in I<*val>.
291 the parameter pointed to by I<p>, and stores that pointer in I<*val>.
296 from the parameter pointed to by I<p>, and stores that pointer in I<*val>,
H A DRSA_generate_key.pod37 RSA_generate_key_ex() generates a 2-prime RSA key pair and stores it in the
40 RSA_generate_multi_prime_key() generates a multi-prime RSA key pair and stores
H A DRSA_public_encrypt.pod29 session key) using the public key B<rsa> and stores the ciphertext in
67 private key B<rsa> and stores the plaintext in B<to>. B<flen> should
/freebsd/stand/common/
H A Dnvstore.c87 if (STAILQ_EMPTY(&stores)) { in command_nvstore()
92 STAILQ_FOREACH(st, &stores, nvs_next) { in command_nvstore()
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A D88pm860x.txt13 - marvell,88pm860x-slave-addr: 88pm860x are two chips solution. <reg> stores the I2C address
14 of one chip, and this property stores the I2C address of
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp417 if (Summary.stores == 1 && SafeToMoveToSlot0) in restrictStoreLoadOrder()
420 else if (Summary.stores >= 1) { in restrictStoreLoadOrder()
432 if (Summary.store1 && Summary.stores > 1) { in restrictStoreLoadOrder()
516 ++Summary.stores; in GetPacketSummary()
524 ++Summary.stores; in GetPacketSummary()
544 ++Summary.stores; in GetPacketSummary()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600InstrInfo.td17 // Force dependencies for vector trunc stores
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrAtomics.td156 // Atomic stores
177 // 8-bit stores
195 // 16-bit stores
213 // 32-bit stores
231 // 64-bit stores
249 // FP 32-bit stores
265 // FP 64-bit stores
562 // STL1 stores
593 // Store-Release Register unscaled stores
/freebsd/sys/contrib/device-tree/Bindings/power/reset/
H A Dnvmem-reboot-mode.txt4 and stores it in a NVMEM cell named "reboot-mode". Then the bootloader
H A Dnvmem-reboot-mode.yaml14 and stores it in the NVMEM cell named "reboot-mode". The bootloader can
H A Dsyscon-reboot-mode.yaml14 and stores it in a SYSCON mapped register. Then the bootloader
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_flags.inc34 "Like malloc_context_size, but for uninit stores.")
/freebsd/crypto/openssl/apps/
H A Dlist.c1170 STACK_OF(OSSL_STORE_LOADER) *stores = sk_OSSL_STORE_LOADER_new(store_cmp); in list_store_loaders()
1173 if (stores == NULL) { in list_store_loaders()
1179 stores); in list_store_loaders()
1180 sk_OSSL_STORE_LOADER_sort(stores); in list_store_loaders()
1181 for (i = 0; i < sk_OSSL_STORE_LOADER_num(stores); i++) { in list_store_loaders()
1182 const OSSL_STORE_LOADER *m = sk_OSSL_STORE_LOADER_value(stores, i); in list_store_loaders()
1199 sk_OSSL_STORE_LOADER_pop_free(stores, OSSL_STORE_LOADER_free); in list_store_loaders()
/freebsd/contrib/expat/
H A Dexpat_config.h.in72 /* Define to the sub-directory where libtool stores uninstalled libraries. */
104 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_cmp_X509_STORE_add1_certs.pod7 - functions manipulating stores of certificates
H A Dx509v3_cache_extensions.pod20 and property query string and stores the result in x->sha1_hash,
/freebsd/sys/contrib/device-tree/Bindings/mtd/partitions/
H A Du-boot.yaml27 Broadcom stores environment variables inside a U-Boot partition. They
/freebsd/sys/contrib/device-tree/Bindings/powerpc/4xx/
H A Dakebono.txt36 The Akebono board stores some board information such as the revision
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1056 void ScheduleDAGInstrs::reduceHugeMemNodeMaps(Value2SUsMap &stores, in reduceHugeMemNodeMaps() argument
1058 LLVM_DEBUG(dbgs() << "Before reduction:\nStoring SUnits:\n"; stores.dump(); in reduceHugeMemNodeMaps()
1063 NodeNums.reserve(stores.size() + loads.size()); in reduceHugeMemNodeMaps()
1064 for (const auto &[V, SUs] : stores) { in reduceHugeMemNodeMaps()
1099 insertBarrierChain(stores); in reduceHugeMemNodeMaps()
1102 LLVM_DEBUG(dbgs() << "After reduction:\nStoring SUnits:\n"; stores.dump(); in reduceHugeMemNodeMaps()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrAtomics.td184 // Atomic stores
212 // Truncating stores.
219 // Fragments for truncating stores.
222 // instructions, we just need to match bare atomic stores. On the other hand,
223 // truncating stores from i64 values are once truncated to i32 first.
231 // Truncating stores with no constant offset
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DSelectionDAGCompat.td28 // stores this information in the MachineMemoryOperand.
215 // G_STORE handles both atomic and non-atomic stores where as SelectionDAG had
216 // separate nodes for them. This GINodeEquiv maps the non-atomic stores to

1234567891011