Home
last modified time | relevance | path

Searched refs:roots (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/crypto/openssl/test/
H A Dcrltest.c344 STACK_OF(X509) *roots = sk_X509_new_null(); in verify()
350 || !TEST_ptr(roots)) in verify()
356 if (!TEST_true(sk_X509_push(roots, root))) { in verify()
362 X509_STORE_CTX_set0_trusted_stack(ctx, roots); in verify()
377 OSSL_STACK_OF_X509_free(roots); in verify()
573 STACK_OF(X509) *roots = sk_X509_new_null(); in test_get_crl_fn_score()
580 || !TEST_ptr(roots)) in test_get_crl_fn_score()
586 if (!TEST_true(sk_X509_push(roots, test_root))) { in test_get_crl_fn_score()
593 X509_STORE_CTX_set0_trusted_stack(ctx, roots); in test_get_crl_fn_score()
611 OSSL_STACK_OF_X509_free(roots); in test_get_crl_fn_score()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTraceDumper.cpp714 std::vector<TraceDumper::FunctionCallUP> &roots) { in AppendReturnedInstructionToFunctionCallForest() argument
737 new_root->SetUntracedPrefixSegment(std::move(roots.back())); in AppendReturnedInstructionToFunctionCallForest()
738 roots.pop_back(); in AppendReturnedInstructionToFunctionCallForest()
740 roots.emplace_back(std::move(new_root)); in AppendReturnedInstructionToFunctionCallForest()
741 return *roots.back(); in AppendReturnedInstructionToFunctionCallForest()
774 std::vector<TraceDumper::FunctionCallUP> &roots) { in AppendInstructionToFunctionCallForest() argument
777 roots.emplace_back( in AppendInstructionToFunctionCallForest()
779 return *roots.back(); in AppendInstructionToFunctionCallForest()
823 *last_function_call, symbol_info, cursor_sp, roots); in AppendInstructionToFunctionCallForest()
834 *last_function_call, symbol_info, cursor_sp, roots); in AppendInstructionToFunctionCallForest()
[all …]
/freebsd/crypto/openssl/crypto/slh_dsa/
H A Dslh_fors.c224 uint8_t roots[SLH_MAX_ROOTS]; in ossl_slh_fors_pk_from_sig() local
237 if (!WPACKET_init_static_len(wroot_pkt, roots, sizeof(roots), 0)) in ossl_slh_fors_pk_from_sig()
287 ret = hashf->T(ctx, pk_seed, pk_adrs, roots, roots_len, pk_out, pk_out_len); in ossl_slh_fors_pk_from_sig()
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriver.cpp163 const std::vector<StringRef> &roots, in getSearchPaths() argument
171 for (StringRef root : roots) { in getSearchPaths()
190 for (const StringRef &root : roots) { in getSearchPaths()
201 std::vector<StringRef> roots; in getSystemLibraryRoots() local
203 roots.push_back(arg->getValue()); in getSystemLibraryRoots()
205 if (!roots.empty() && roots.back() == "/") in getSystemLibraryRoots()
206 roots.clear(); in getSystemLibraryRoots()
209 if (roots.empty()) in getSystemLibraryRoots()
210 roots.emplace_back(""); in getSystemLibraryRoots()
211 return roots; in getSystemLibraryRoots()
[all …]
H A DDriver.h61 const std::vector<llvm::StringRef> &roots,
H A DDriverUtils.cpp274 const std::vector<StringRef> &roots, in findPathCombination() argument
277 for (StringRef dir : roots) { in findPathCombination()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDag.h
H A DGIMatchTree.cpp
/freebsd/usr.bin/dtc/
H A Dfdt.cc1610 std::vector<node_ptr> &roots, in parse_file() argument
1719 roots.push_back(std::move(n)); in parse_file()
2017 std::vector<node_ptr> roots; in parse_dts() local
2030 parse_file(input, roots, read_header); in parse_dts()
2031 switch (roots.size()) in parse_dts()
2038 root = generate_root(roots[0], fragnum); in parse_dts()
2048 root = generate_root(roots[0], fragnum); in parse_dts()
2055 for (auto i=++(roots.begin()), e=roots.end() ; i!=e ; ++i) in parse_dts()
H A Dfdt.hh917 std::vector<node_ptr> &roots,
/freebsd/crypto/openssl/crypto/ml_kem/
H A Dml_kem.c837 const uint16_t *roots = kNTTRoots; in scalar_ntt() local
846 uint32_t zeta = *++roots; in scalar_ntt()
869 const uint16_t *roots = kInverseNTTRoots; in scalar_inverse_ntt() local
878 uint32_t zeta = *++roots; in scalar_inverse_ntt()
926 const uint16_t *roots = kModRoots; in scalar_mult() local
931 uint32_t zetapow = *roots++; in scalar_mult()
944 const uint16_t *roots = kModRoots; in scalar_mult_add() local
951 uint32_t zetapow = *roots++; in scalar_mult_add()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyDivergentExitNodes.cpp216 PDT.roots(), [&](auto BB) { return !isUniformlyReached(UA, *BB); }); in run()
218 for (BasicBlock *BB : PDT.roots()) { in run()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_omp.h74 addr_and_size_t roots; // Pointer to __kmp_root. member
/freebsd/contrib/lyaml/build-aux/
H A Dluke580 local function str(x,roots)roots=roots or{}local function stop_roots(x)return roots[x]or str(x,copy…
583 local buf={'{'}roots[x]=tostring(x)local n,keys=1,{}for k in next,x do
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGICombinerEmitter.cpp
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTree.h318 iterator_range<root_iterator> roots() {
321 iterator_range<const_root_iterator> roots() const {
/freebsd/crypto/openssl/doc/man3/
H A DX509_STORE_add_cert.pod51 and validating chains of certificates terminating in trusted roots.
/freebsd/contrib/unbound/doc/
H A Dunbound-anchor.rst177 unbound-anchor goes to the network itself for these roots, to resolve
/freebsd/usr.bin/m4/TEST/
H A Dtest.m4108 # some square roots.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp900 AnyUnreachableExit = any_of(PDT.roots(), [](const BasicBlock *E) { in DSEState()
1660 for (BasicBlock *R : PDT.roots()) { in getDomMemoryDef()
/freebsd/contrib/dialog/
H A DCOPYING183 (For example, a function in a library to compute square roots has
188 root function must still compute square roots.)
/freebsd/lib/libc++/
H A DMakefile901 MAT_HEADERS+= roots.h
/freebsd/contrib/kyua/
H A DNEWS.md443 directory than where the `Kyuafile` scripts live. See the *Build roots*
/freebsd/crypto/heimdal/doc/
H A Dhx509.texi264 technology advancements saw the inclusion of multiple policy roots,
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetSelectionDAG.td2041 list<SDNode> roots = [], list<SDNodeProperty> props = [],
2046 list<SDNode> RootNodes = roots;

12