Home
last modified time | relevance | path

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

1234

/openbsd/gnu/llvm/lldb/source/Target/
H A DTraceDumper.cpp713 std::vector<TraceDumper::FunctionCallUP> &roots) { in AppendReturnedInstructionToFunctionCallForest() argument
737 roots.pop_back(); in AppendReturnedInstructionToFunctionCallForest()
739 roots.emplace_back(std::move(new_root)); in AppendReturnedInstructionToFunctionCallForest()
740 return *roots.back(); in AppendReturnedInstructionToFunctionCallForest()
773 std::vector<TraceDumper::FunctionCallUP> &roots) { in AppendInstructionToFunctionCallForest() argument
776 roots.emplace_back( in AppendInstructionToFunctionCallForest()
778 return *roots.back(); in AppendInstructionToFunctionCallForest()
868 return *roots.back(); in AppendErrorToFunctionCallForest()
876 std::vector<TraceDumper::FunctionCallUP> roots; in CreateFunctionCallForest() local
892 roots); in CreateFunctionCallForest()
[all …]
/openbsd/regress/lib/libcrypto/x509/
H A Dverify.c110 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
123 if (!use_dir && !certs_from_file(roots_file, &roots)) in verify_cert()
152 X509_STORE_CTX_set0_trusted_stack(xsc, roots); in verify_cert()
171 sk_X509_pop_free(roots, X509_free); in verify_cert()
181 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert_new()
188 if (!certs_from_file(roots_file, &roots)) in verify_cert_new()
205 if ((ctx = x509_verify_ctx_new(roots)) == NULL) in verify_cert_new()
232 sk_X509_pop_free(roots, X509_free); in verify_cert_new()
H A Dcallbackfailures.c120 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
129 if (!use_dir && !certs_from_file(roots_file, &roots, 1)) in verify_cert()
161 X509_STORE_CTX_set0_trusted_stack(xsc, roots); in verify_cert()
177 sk_X509_pop_free(roots, X509_free); in verify_cert()
H A Dexpirecallback.c119 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
132 if (!use_dir && !certs_from_file(roots_file, &roots)) in verify_cert()
162 X509_STORE_CTX_set0_trusted_stack(xsc, roots); in verify_cert()
181 sk_X509_pop_free(roots, X509_free); in verify_cert()
H A Dcallback.c115 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
124 if (!use_dir && !certs_from_file(roots_file, &roots)) in verify_cert()
153 X509_STORE_CTX_set0_trusted_stack(xsc, roots); in verify_cert()
168 sk_X509_pop_free(roots, X509_free); in verify_cert()
H A DMakefile28 perl ${.CURDIR}/make-dir-roots.pl ${.CURDIR}/../certs .
/openbsd/regress/lib/libcrypto/x509/bettertls/
H A Dverify.c104 STACK_OF(X509) *roots = NULL, *bundle = NULL, *cert = NULL; in verify_cert()
114 if (!certs_from_file(roots_file, &roots)) in verify_cert()
145 X509_STORE_CTX_set0_trusted_stack(xsc, roots); in verify_cert()
175 X509_STORE_CTX_set0_trusted_stack(xscip, roots); in verify_cert()
185 sk_X509_pop_free(roots, X509_free); in verify_cert()
/openbsd/regress/lib/libcrypto/certs/
H A Dverify_test.go77 roots := x509.NewCertPool()
78 if !roots.AppendCertsFromPEM(rootsPEM) {
89 Roots: roots,
/openbsd/sys/dev/pci/drm/
H A Ddrm_buddy.c141 mm->roots = kmalloc_array(mm->n_roots, in drm_buddy_init()
144 if (!mm->roots) in drm_buddy_init()
171 mm->roots[i] = root; in drm_buddy_init()
182 drm_block_free(mm, mm->roots[i]); in drm_buddy_init()
183 kfree(mm->roots); in drm_buddy_init()
202 WARN_ON(!drm_buddy_block_is_free(mm->roots[i])); in drm_buddy_fini()
203 drm_block_free(mm, mm->roots[i]); in drm_buddy_fini()
208 kfree(mm->roots); in drm_buddy_fini()
355 list_add_tail(&mm->roots[i]->tmp_link, &dfs); in alloc_range_bias()
587 list_add_tail(&mm->roots[i]->tmp_link, &dfs); in __drm_buddy_alloc_range()
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dggc-common.c63 static struct ggc_root *roots; variable
79 x->next = roots;
85 roots = x;
126 for (x = roots; x != NULL; x = x->next) in ggc_mark_roots()
/openbsd/lib/libcrypto/x509/
H A Dx509_verify.c283 for (i = 0; i < sk_X509_num(ctx->roots); i++) { in x509_verify_ctx_cert_is_root()
284 if (X509_cmp(sk_X509_value(ctx->roots, i), cert) == 0) in x509_verify_ctx_cert_is_root()
712 for (i = 0; i < sk_X509_num(ctx->roots); i++) { in x509_verify_build_chains()
713 candidate = sk_X509_value(ctx->roots, i); in x509_verify_build_chains()
989 x509_verify_ctx_new(STACK_OF(X509) *roots) in x509_verify_ctx_new() argument
996 if (roots != NULL) { in x509_verify_ctx_new()
997 if ((ctx->roots = X509_chain_up_ref(roots)) == NULL) in x509_verify_ctx_new()
1000 if ((ctx->roots = sk_X509_new_null()) == NULL) in x509_verify_ctx_new()
1023 sk_X509_pop_free(ctx->roots, X509_free); in x509_verify_ctx_free()
1099 if (ctx->roots == NULL || ctx->max_depth == 0) { in x509_verify()
H A Dx509_verify.h25 X509_VERIFY_CTX *x509_verify_ctx_new(STACK_OF(X509) *roots);
H A Dx509_internal.h74 STACK_OF(X509) *roots; /* Trusted roots for this validation */
/openbsd/gnu/llvm/lld/MachO/
H A DDriver.cpp157 const std::vector<StringRef> &roots, in getSearchPaths() argument
165 for (StringRef root : roots) { in getSearchPaths()
184 for (const StringRef &root : roots) { in getSearchPaths()
195 std::vector<StringRef> roots; in getSystemLibraryRoots() local
197 roots.push_back(arg->getValue()); in getSystemLibraryRoots()
199 if (!roots.empty() && roots.back() == "/") in getSystemLibraryRoots()
200 roots.clear(); in getSystemLibraryRoots()
203 if (roots.empty()) in getSystemLibraryRoots()
204 roots.emplace_back(""); in getSystemLibraryRoots()
205 return roots; in getSystemLibraryRoots()
[all …]
H A DDriver.h59 const std::vector<llvm::StringRef> &roots,
H A DDriverUtils.cpp260 const std::vector<StringRef> &roots, in findPathCombination() argument
263 for (StringRef dir : roots) { in findPathCombination()
/openbsd/regress/lib/libcrypto/x509/policy/
H A Dpolicy.c124 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
134 if (!certs_from_file(roots_file, &roots)) in verify_cert()
161 X509_STORE_CTX_set0_trusted_stack(xsc, roots); in verify_cert()
191 sk_X509_pop_free(roots, X509_free); in verify_cert()
/openbsd/gnu/llvm/llvm/docs/
H A DGarbageCollection.rst173 * Registration of global roots with the runtime.
225 Identifying GC roots on the stack
442 int32_t NumRoots; //< Number of roots in stack frame.
452 void *Roots[0]; //< Stack roots (in-place array).
477 // For roots [NumMeta, NumRoots), the metadata pointer is null.
746 The mutator carefully maintains a linked list of stack roots.
811 * ``roots_size()``: The count of roots in the function.
836 .. _init-roots:
838 Initializing roots to null
852 For GCs which use barriers or unusual treatment of stack roots, the
[all …]
H A DLexicon.rst264 .. _stack roots:
281 In garbage collection, it is necessary to identify `stack roots`_ so that
286 pointers`_ must be reloaded from stack roots.
317 identifies `roots`_ within the stack frame of an executing function.
H A DGitBisecting.rst13 LLVM repository has multiple roots: One "normal" root, and then one for each
78 Bisecting across multiple roots
/openbsd/gnu/llvm/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDag.h108 iterator_range<std::vector<GIMatchDagInstr *>::iterator> roots() { in roots() function
111 iterator_range<std::vector<GIMatchDagInstr *>::const_iterator> roots() const { in roots() function
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyDivergentExitNodes.cpp216 PDT.roots(), [&](auto BB) { return !isUniformlyReached(DA, *BB); }); in runOnFunction()
218 for (BasicBlock *BB : PDT.roots()) { in runOnFunction()
/openbsd/sys/dev/pci/drm/include/drm/
H A Ddrm_buddy.h75 struct drm_buddy_block **roots; member
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DGICombinerEmitter.cpp212 iterator_range<const_root_iterator> roots() const { in roots() function in __anon63868bc10111::CombineRule
235 for (auto &I : MatchDag.roots()) { in reorientToRoots()
892 for (const auto &Root : enumerate(Rule->getMatchDag().roots())) { in run()
/openbsd/gnu/gcc/gcc/doc/
H A Dgty.texi70 * GGC Roots:: Making global variables GGC roots.
353 @cindex roots, marking
354 @cindex marking roots
357 the global variables (@dfn{roots}) that the garbage collector starts

1234