Home
last modified time | relevance | path

Searched refs:existing (Results 1 – 25 of 752) sorted by relevance

12345678910>>...31

/openbsd-src/gnu/llvm/lld/wasm/
H A DSymbolTable.cpp139 static void reportTypeError(const Symbol *existing, const InputFile *file, in reportTypeError() argument
141 error("symbol type mismatch: " + toString(*existing) + "\n>>> defined as " + in reportTypeError()
142 toString(existing->getWasmType()) + " in " + in reportTypeError()
143 toString(existing->getFile()) + "\n>>> defined as " + toString(type) + in reportTypeError()
150 static bool signatureMatches(FunctionSymbol *existing, in signatureMatches() argument
152 const WasmSignature *oldSig = existing->signature; in signatureMatches()
163 static void checkGlobalType(const Symbol *existing, const InputFile *file, in checkGlobalType() argument
165 if (!isa<GlobalSymbol>(existing)) { in checkGlobalType()
166 reportTypeError(existing, file, WASM_SYMBOL_TYPE_GLOBAL); in checkGlobalType()
170 const WasmGlobalType *oldType = cast<GlobalSymbol>(existing)->getGlobalType(); in checkGlobalType()
[all …]
/openbsd-src/usr.bin/ssh/
H A Dsrclimit.c347 struct penalty *penalty = NULL, *existing = NULL; in srclimit_penalise() local
421 if ((existing = RB_INSERT(penalties_by_addr, by_addr, in srclimit_penalise()
436 existing->active ? "active" : "inactive", t, in srclimit_penalise()
437 addrnetmask, (long long)(existing->expiry - now)); in srclimit_penalise()
439 if (RB_REMOVE(penalties_by_expiry, by_expiry, existing) != existing) in srclimit_penalise()
442 existing->expiry += penalty_secs; in srclimit_penalise()
443 if (existing->expiry - now > penalty_cfg.penalty_max) in srclimit_penalise()
444 existing->expiry = now + penalty_cfg.penalty_max; in srclimit_penalise()
445 if (existing in srclimit_penalise()
[all...]
/openbsd-src/lib/libcrypto/x509/
H A Dx509_lib.c260 X509_EXTENSION *existing; in X509V3_add1_i2d() local
306 if ((existing = sk_X509_EXTENSION_delete(*x509_exts, in X509V3_add1_i2d()
311 X509_EXTENSION_free(existing); in X509V3_add1_i2d()
312 existing = NULL; in X509V3_add1_i2d()
330 existing = sk_X509_EXTENSION_value(*x509_exts, extidx); in X509V3_add1_i2d()
331 X509_EXTENSION_free(existing); in X509V3_add1_i2d()
332 existing = NULL; in X509V3_add1_i2d()
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/EventFacet/
H A DMeta.pm20 my $existing = $self->SUPER::can($name);
21 return $existing if $existing;
/openbsd-src/usr.bin/cvs/
H A Dremove.c31 static int existing = 0; variable
105 if (existing != 0) { in cvs_remove()
106 cvs_log(LP_ERR, (existing == 1) ? in cvs_remove()
108 "%d files exist; remove them first", existing); in cvs_remove()
166 existing++; in cvs_remove_local()
/openbsd-src/sbin/restore/
H A Dutilities.c194 linkit(char *existing, char *new, int type) in linkit() argument
198 if (!Nflag && symlink(existing, new) == -1) { in linkit()
200 new, existing); in linkit()
204 if (!Nflag && linkat(AT_FDCWD, existing, AT_FDCWD, new, 0) in linkit()
207 new, existing); in linkit()
215 type == SYMLINK ? "symbolic" : "hard", new, existing); in linkit()
/openbsd-src/distrib/notes/alpha/
H A Dcontents5 It can be copied to the swap partition of an existing
22 to reinstall from an old OpenBSD setup but the existing
/openbsd-src/gnu/usr.bin/perl/dist/Term-ReadLine/t/
H A DReadLine-STDERR.t16 note q[Removing existing file &STDERR];
17 …unlink q[&STDERR] or die q{Cannot remove existing file &STDERR [probably created from a previous r…
/openbsd-src/gnu/llvm/lld/COFF/
H A DDriverUtils.cpp168 StringRef existing = pair.first->second; in parseMerge() local
169 if (existing != to) in parseMerge()
170 warn(s + ": already merged into " + existing); in parseMerge()
685 Export *existing = pair.first->second; in fixupExports() local
686 if (e == *existing || e.name != existing->name) in fixupExports()
717 std::pair<StringRef, InputFile *> existing = ctx.config.mustMatch[k]; in checkFailIfMismatch() local
718 if (!existing.first.empty() && v != existing.first) { in checkFailIfMismatch()
721 existing.second ? toString(existing.second) : "cmd-line"; in checkFailIfMismatch()
723 existingStr + " has value " + existing.first + "\n>>> " + sourceStr + in checkFailIfMismatch()
/openbsd-src/distrib/notes/sparc64/
H A Dcontents5 It can be copied to the swap partition of an existing
44 requiring a pre-existing working operating system.
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dhv_simple.t56 ok(8, exists($hash{"1"}), "Exist on existing key");
57 ok(9, !exists($hash{"4"}), "Exists on non existing key");
/openbsd-src/gnu/usr.bin/perl/cpan/bignum/t/
H A Doverrides.t14 # For testing that existing CORE::GLOBAL overrides are not clobbered
82 is $hex_called, 1, 'existing hex overrides are called';
85 is $oct_called, 1, 'existing oct overrides are called';
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp329 for (auto const &existing : m_loaded_modules.m_list) { in AddSOEntriesFromRemote() local
330 if (modInfo == existing) { in AddSOEntriesFromRemote()
357 for (auto const &existing : m_loaded_modules.m_list) { in RemoveSOEntriesFromRemote() local
360 if (modInfo == existing) { in RemoveSOEntriesFromRemote()
370 if (!FillSOEntryFromModuleInfo(existing, entry)) in RemoveSOEntriesFromRemote()
/openbsd-src/gnu/usr.bin/perl/dist/Net-Ping/t/
H A D501_ping_icmpv6.t62 my $wrongip = "2001:4860:4860::1234"; # non existing ip
63 # diag "Pinging existing IPv6 ";
/openbsd-src/regress/sys/net/pf_divert/
H A DREADME12 packets. The remote machine can be reached over a non existing
18 is started on the local machine and connects to the non existing
25 with bindany to the non existing address and connects to the local
/openbsd-src/gnu/llvm/lldb/docs/status/
H A Dgoals.rst17 implement its own disassembler, etc. By using the existing libraries vended by
29 * Reuse existing compiler technology where it makes sense
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dcorelist.pl364 my($version, $lines, $existing) = @_;
375 for my $previous (reverse sort { $a <=> $b } keys %$existing) {
380 $existing->{$previous}, \%versions);
/openbsd-src/regress/sys/kern/cmsgsize/
H A DMakefile13 @echo This tests needs a local address and a non existing remote
/openbsd-src/gnu/usr.bin/perl/cpan/Digest-MD5/t/
H A Dbadfile.t16 open(BAR, "no-existing-file.$$");
/openbsd-src/gnu/usr.bin/texinfo/doc/
H A DREADME27 of overwriting existing ones, but this is more complicated. See your TeX
30 If you add files to your TeX installations, not just replace existing
/openbsd-src/gnu/usr.bin/perl/ext/DynaLoader/
H A DREADME31 interface similar to an existing generic type, e.g., dlopen,
47 Refer to DynaLoader.pm, lib/ExtUtils/MakeMaker.pm and any existing
/openbsd-src/distrib/notes/luna88k/
H A Dcontents5 It can be copied to the swap partition of an existing
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/parallelism-groups/
H A Dlit.cfg15 # overwrite an existing group.
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A Dtdtags27 -a Append the tags to an existing tags file.
67 -a Append newly generated tags to those already in an existing
68 tags file. Without ths option, any and all existing tags are
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.hp/gdb.aCC/
H A Dconfigure.in5 dnl any existing configure script.

12345678910>>...31