Searched refs:finish (Results 26 - 50 of 205) sorted by relevance

123456789

/freebsd-current/crypto/openssl/crypto/ec/
H A Dec_kmeth.c65 void (*finish)(EC_KEY *key) = key->meth->finish;
67 if (finish != NULL)
68 finish(key);
202 void (*finish)(EC_KEY *key),
211 meth->finish = finish;
280 *pfinish = meth->finish;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchELFStreamer.cpp37 void LoongArchTargetELFStreamer::finish() { function in class:LoongArchTargetELFStreamer
38 LoongArchTargetStreamer::finish();
/freebsd-current/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFEmitterImpl.h61 void finish() { MS->finish(); } function in class:llvm::dwarf_linker::parallel::DwarfEmitterImpl
/freebsd-current/sys/dev/ath/
H A Dif_ath_sysctl.c121 goto finish;
125 finish:
147 goto finish;
151 finish:
173 goto finish;
177 finish:
264 goto finish;
275 finish:
321 goto finish;
324 goto finish;
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DFunctionPropertiesAnalysis.h174 void finish(FunctionAnalysisManager &FAM) const;
176 finish(FAM);
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dtest_read_format_gtar_lzma.c62 goto finish;
71 finish:
/freebsd-current/crypto/openssl/crypto/dsa/
H A Ddsa_local.h60 int (*finish) (DSA *dsa); member in struct:dsa_method
H A Ddsa_lib.c114 if (mtmp->finish)
115 mtmp->finish(dsa);
223 if (r->meth != NULL && r->meth->finish != NULL)
224 r->meth->finish(r);
/freebsd-current/crypto/openssl/crypto/rsa/
H A Drsa_meth.c220 return meth->finish;
223 int RSA_meth_set_finish(RSA_METHOD *meth, int (*finish) (RSA *rsa))
225 meth->finish = finish;
/freebsd-current/crypto/openssl/crypto/dh/
H A Ddh_lib.c40 if (mtmp->finish)
41 mtmp->finish(dh);
146 if (r->meth != NULL && r->meth->finish != NULL)
147 r->meth->finish(r);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DSpillPlacement.h13 // finish() which are called by the register allocator.
142 /// finish - Compute the optimal spill code placement given the
149 bool finish();
/freebsd-current/sbin/shutdown/
H A Dshutdown.c87 static void finish(int);
422 finish(0);
552 (void)signal(SIGINT, finish);
553 (void)signal(SIGHUP, finish);
554 (void)signal(SIGQUIT, finish);
555 (void)signal(SIGTERM, finish);
568 finish(int signo __unused) function
/freebsd-current/crypto/openssl/crypto/conf/
H A Dconf_mod.c45 conf_finish_func *finish; local
349 tmod->finish = ffunc;
462 /* We've started the module so we'd better finish it */
463 if (pmod->finish && init_called)
464 pmod->finish(imod);
521 /* finish and free up all modules instances */
552 /* finish a module instance */
558 if (imod->pmod->finish)
559 imod->pmod->finish(imod);
/freebsd-current/usr.sbin/nscd/
H A Dconfig.c394 cache_entry **start, cache_entry **finish)
409 *finish = result + 1;
418 while (*finish != config_entry->mp_cache_entries +
422 mp_name, *finish) == 0)
423 *finish = *finish + 1;
392 configuration_entry_find_mp_cache_entries( struct configuration_entry *config_entry, const char *mp_name, cache_entry **start, cache_entry **finish) argument
/freebsd-current/crypto/openssl/test/
H A Dbio_callback_test.c186 goto finish;
189 goto finish;
194 finish:
337 goto finish;
340 goto finish;
345 finish:
/freebsd-current/lib/libc/stdio/
H A Dfreopen.c121 goto finish;
160 finish:
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zlib.c84 zlib_inflate(z_stream *stream, int finish) argument
86 return (inflate(stream, finish));
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.h127 void finish() override;
182 void finish() override;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVELFStreamer.cpp88 void RISCVTargetELFStreamer::finish() { function in class:RISCVTargetELFStreamer
89 RISCVTargetStreamer::finish();
/freebsd-current/contrib/libedit/
H A Dtokenizer.c97 static void FUN(tok,finish)(TYPE(Tokenizer) *);
100 /* FUN(tok,finish)():
104 FUN(tok,finish)(TYPE(Tokenizer) *tok)
378 FUN(tok,finish)(tok);
446 FUN(tok,finish)(tok);
/freebsd-current/contrib/llvm-project/clang/lib/Index/
H A DIndexingAction.cpp141 DataConsumer->finish();
270 DataConsumer.finish();
287 DataConsumer.finish();
311 DataConsumer.finish();
/freebsd-current/sys/contrib/xz-embedded/linux/include/linux/
H A Dxz.h234 * @finish: This is an int instead of bool to avoid requiring stdbool.h.
235 * As long as more input might be coming, finish must be false.
237 * the decoder (some possibly still in b->in), it must set finish
238 * to true. Only when finish is true can this function return
240 * file. In single-call mode (XZ_SINGLE) finish is assumed to
249 * When finish is false and b->in_pos == b->in_size, it is possible that
252 * reasonable caller will attempt to provide more input or set finish to
265 int finish);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYTargetStreamer.h74 void finish() override;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64TargetStreamer.cpp54 // finish() - write out any non-empty assembler constant pools and
56 void AArch64TargetStreamer::finish() { function in class:AArch64TargetStreamer
/freebsd-current/contrib/llvm-project/clang/include/clang/ARCMigrate/
H A DARCMT.h115 virtual void finish() { } function in class:clang::arcmt::MigrationProcess::RewriteListener

Completed in 394 milliseconds

123456789