/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | TraceDumper.cpp | 713 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 D | verify.c | 110 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 D | callbackfailures.c | 120 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 D | expirecallback.c | 119 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 D | callback.c | 115 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 D | Makefile | 28 perl ${.CURDIR}/make-dir-roots.pl ${.CURDIR}/../certs .
|
/openbsd/regress/lib/libcrypto/x509/bettertls/ |
H A D | verify.c | 104 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 D | verify_test.go | 77 roots := x509.NewCertPool() 78 if !roots.AppendCertsFromPEM(rootsPEM) { 89 Roots: roots,
|
/openbsd/sys/dev/pci/drm/ |
H A D | drm_buddy.c | 141 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 D | ggc-common.c | 63 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 D | x509_verify.c | 283 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 D | x509_verify.h | 25 X509_VERIFY_CTX *x509_verify_ctx_new(STACK_OF(X509) *roots);
|
H A D | x509_internal.h | 74 STACK_OF(X509) *roots; /* Trusted roots for this validation */
|
/openbsd/gnu/llvm/lld/MachO/ |
H A D | Driver.cpp | 157 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 D | Driver.h | 59 const std::vector<llvm::StringRef> &roots,
|
H A D | DriverUtils.cpp | 260 const std::vector<StringRef> &roots, in findPathCombination() argument 263 for (StringRef dir : roots) { in findPathCombination()
|
/openbsd/regress/lib/libcrypto/x509/policy/ |
H A D | policy.c | 124 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 D | GarbageCollection.rst | 173 * 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 D | Lexicon.rst | 264 .. _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 D | GitBisecting.rst | 13 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 D | GIMatchDag.h | 108 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 D | AMDGPUUnifyDivergentExitNodes.cpp | 216 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 D | drm_buddy.h | 75 struct drm_buddy_block **roots; member
|
/openbsd/gnu/llvm/llvm/utils/TableGen/ |
H A D | GICombinerEmitter.cpp | 212 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 D | gty.texi | 70 * 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
|