Home
last modified time | relevance | path

Searched refs:other (Results 1 – 23 of 23) sorted by relevance

/crypto/test/
A Dfile_util.h53 ScopedFD(ScopedFD &&other) { *this = std::move(other); } in ScopedFD() argument
54 ScopedFD &operator=(ScopedFD other) {
55 reset(other.release());
88 TemporaryFile(TemporaryFile &other) { *this = std::move(other); } in TemporaryFile() argument
89 TemporaryFile& operator=(TemporaryFile&&other) {
91 path_ = std::exchange(other.path_, {});
122 TemporaryDirectory(TemporaryDirectory &other) { *this = std::move(other); } in TemporaryDirectory() argument
123 TemporaryDirectory& operator=(TemporaryDirectory&&other) {
125 path_ = std::exchange(other.path_, {});
126 files_ = std::exchange(other.files_, {});
/crypto/
A Dmem_internal.h92 Array(Array &&other) { *this = std::move(other); }
97 Array &operator=(Array &&other) {
99 other.Release(&data_, &size_);
234 Vector(Vector &&other) { *this = std::move(other); }
240 std::swap(data_, other.data_);
381 InplaceVector(const InplaceVector &other) { *this = other; }
382 InplaceVector(InplaceVector &&other) { *this = std::move(other); }
385 if (this != &other) {
386 CopyFrom(other);
392 std::uninitialized_move(other.begin(), other.end(), data());
[all …]
A Dmem_test.cc321 NoSelfMove(NoSelfMove &&other) { *this = std::move(other); } in TEST() argument
322 NoSelfMove &operator=(NoSelfMove &&other) { in TEST() argument
323 BSSL_CHECK(this != &other); in TEST()
324 v_ = std::move(other.v_); in TEST()
/crypto/spake2plus/
A Dspake2plus_test.cc83 bool operator==(const CacheKey &other) const { in operator ==()
85 std::tie(other.id_prover, other.id_verifier, other.password); in operator ==()
/crypto/perlasm/
A Dreadme56 j+=other(data[i]);
67 &external_label("other");
86 &call( "other");
/crypto/rand/
A Durandom_test.cc86 bool operator==(const Event &other) const { in operator ==()
87 return type == other.type && // in operator ==()
88 length == other.length && // in operator ==()
89 flags == other.flags && // in operator ==()
90 filename == other.filename; in operator ==()
/crypto/fipsmodule/
A DFIPS.md86 …ck is used to stop all other threads from using the RNG once this process has begun. Thus the main…
104 … and end of the text and rodata sections. The linker script also discards other types of data sect…
108 Once the partially-linked result is linked again, with other parts of libcrypto, to produce `libcry…
120 …utside of the module. Most obviously these include `malloc`, `memcpy` and other libc functions, bu…
142 The script performs a number of other transformations which are worth noting but do not warrant the…
/crypto/bio/
A Dbio_test.cc70 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() argument
72 OwnedSocket &operator=(OwnedSocket &&other) { in operator =() argument
73 reset(other.release()); in operator =()
/crypto/fipsmodule/rand/
A Drand.cc.inc195 // obtained via a method other than from the kernel. In these cases entropy
304 // If we used something other than system entropy then also
345 // Intel chips have fast RDRAND instructions while, in other cases, RDRAND can
/crypto/fipsmodule/slhdsa/
A Dmerkle.cc.inc124 // All other layers
/crypto/fipsmodule/bn/
A Dcmp.cc.inc144 // If |a| or |b| has more words than the other, all those words must be zero.
A Ddiv.cc.inc162 // cache side channels. Division with secret inputs should use other
A Dexponentiation.cc.inc568 // and its interaction with other parts of the project. Determine whether this
/crypto/fipsmodule/aes/
A Dgcm.cc.inc35 // trashing effect. In other words idea is to hash data while it's
343 // The caller must have finished the AAD before providing other input.
/crypto/x509/
A Dv3_cpols.cc82 ASN1_ADB_TEMPLATE(policydefault) = ASN1_SIMPLE(POLICYQUALINFO, d.other,
/crypto/fipsmodule/rsa/
A Drsa.cc.inc651 // Check that no other information follows the hash value (FIPS 186-4 Section
795 // may be unreduced because other implementations use the Euler totient. We
A Drsa_impl.cc.inc147 // exponents with correct widths. Note that other threads may concurrently
370 // for other threads to use.
/crypto/fipsmodule/mldsa/
A Dmldsa.cc.inc945 // of the other bits may be set. First, select all the MSBs.
947 // For each nibble where the MSB is set, form a mask of all the other bits.
977 // be >= 5. So if the MSB of any triple is set, none of the other bits may
980 // For each triple where the MSB is set, form a mask of all the other bits.
1170 // independent of each other and the original seed, so leaking information
/crypto/fipsmodule/ec/
A Dp256.cc.inc341 // do other additions every 5 doublings
A Dp256-nistz.cc.inc312 // not stored. All other values are actually stored with an offset of -1 in
A Dec.cc.inc958 // returns NULL, so return some other garbage pointer.
/crypto/fipsmodule/mlkem/
A Dmlkem.cc.inc583 // numbers close to each other together. The formula used is
/crypto/obj/
A Dobjects.txt564 # other names

Completed in 30 milliseconds