Home
last modified time | relevance | path

Searched refs:destruct (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/bc/src/
H A Dlibrary.c809 bcl_bigdig_helper(BclNumber n, BclBigDig* result, bool destruct) in bcl_bigdig_helper() argument
833 if (destruct) in bcl_bigdig_helper()
887 * @param destruct True if the parameters should be consumed, false otherwise.
892 const BcNumBinaryOpReq req, bool destruct) in bcl_binary() argument
928 if (destruct) in bcl_binary()
1038 bcl_sqrt_helper(BclNumber a, bool destruct) in bcl_sqrt_helper() argument
1063 if (destruct) in bcl_sqrt_helper()
1088 bool destruct) in bcl_divmod_helper() argument
1131 if (destruct) in bcl_divmod_helper()
1176 bcl_modexp_helper(BclNumber a, BclNumber b, BclNumber c, bool destruct) in bcl_modexp_helper() argument
1364 bcl_string_helper(BclNumber n,bool destruct) bcl_string_helper() argument
1423 bcl_irand_helper(BclNumber a,bool destruct) bcl_irand_helper() argument
1587 bcl_ifrand_helper(BclNumber a,size_t places,bool destruct) bcl_ifrand_helper() argument
1642 bcl_rand_seedWithNum_helper(BclNumber n,bool destruct) bcl_rand_seedWithNum_helper() argument
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h509 void destruct();
606 destruct(); in setKind()
610 void destruct() { in destruct() function
611 if (ConversionKind == AmbiguousConversion) Ambiguous.destruct(); in destruct()
658 destruct();
664 destruct(); in ~ImplicitConversionSequence()
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_method_construct.pod24 void (*destruct)(void *method, void *data);
65 subsystem destruct() method to decrement the reference count when
133 =item destruct()
135 Decrement the I<method>'s reference count, and destruct it when
H A Dossl_namemap_new.pod42 ossl_namemap_new() and ossl_namemap_free() construct and destruct a
/freebsd/crypto/openssl/include/internal/
H A Dcore.h46 void (*destruct)(void *method, void *data); member
/freebsd/crypto/openssl/crypto/
H A Dcore_fetch.c128 data->mcm->destruct(method, data->mcm_data); in ossl_method_construct_this()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h211 CheckerDtors.push_back(CheckerDtor(checker, destruct<CHECKER>)); in registerChecker()
618 static void destruct(void *obj) { delete static_cast<CHECKER *>(obj); } in destruct() function
/freebsd/contrib/ntp/sntp/libevent/
H A Dbufferevent-internal.h288 void (*destruct)(struct bufferevent *); member
H A Dbufferevent.c757 if (bufev->be_ops->destruct) in bufferevent_finalize_cb_()
758 bufev->be_ops->destruct(bufev); in bufferevent_finalize_cb_()
/freebsd/contrib/libevent/
H A Dbufferevent-internal.h288 void (*destruct)(struct bufferevent *); member
H A Dbufferevent.c757 if (bufev->be_ops->destruct) in bufferevent_finalize_cb_()
758 bufev->be_ops->destruct(bufev); in bufferevent_finalize_cb_()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h415 template <class T> void destruct() { get<T>()->~T(); } in destruct() function
428 destruct<DIE##T>(); \ in destroyVal()
432 destruct<const DIE##T *>(); \ in destroyVal()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dany28 // 6.3.1 any construct/destruct
192 // construct/destruct
H A D__tree340 // __z will be removed from the tree. Client still needs to destruct/deallocate it
/freebsd/crypto/openssl/doc/man7/
H A Dprovider-decoder.pod21 /* Functions to construct / destruct / manipulate the decoder context */
H A Dprovider-encoder.pod21 /* Functions to construct / destruct / manipulate the encoder context */
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp7350 typename std::enable_if<AllowManualDestruction>::type destruct() in destruct() function
7358 … void destruct_on_exit(typename std::enable_if<Destruct, U>::type* = 0) { destruct<true>(); } in destruct_on_exit()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td801 "%select{default-initialize|destruct|copy}0">;
804 "non-trivial to %select{default-initialize|destruct|copy}1">;
6468 "jump enters lifetime of a compound literal that is non-trivial to destruct">;
6515 "jump exits lifetime of a compound literal that is non-trivial to destruct">;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp668 void AmbiguousConversionSequence::destruct() { in destruct() function in AmbiguousConversionSequence