/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | tsd_generic.h | 33 tsd_wrapper_t *wrapper = (tsd_wrapper_t *)arg; in tsd_cleanup_wrapper() local 35 if (wrapper->initialized) { in tsd_cleanup_wrapper() 36 wrapper->initialized = false; in tsd_cleanup_wrapper() 37 tsd_cleanup(&wrapper->val); in tsd_cleanup_wrapper() 38 if (wrapper->initialized) { in tsd_cleanup_wrapper() 40 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) in tsd_cleanup_wrapper() 50 malloc_tsd_dalloc(wrapper); in tsd_cleanup_wrapper() 54 tsd_wrapper_set(tsd_wrapper_t *wrapper) { in tsd_wrapper_set() argument 55 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) { in tsd_wrapper_set() 63 tsd_wrapper_t *wrapper = (tsd_wrapper_t *)pthread_getspecific(tsd_tsd); in tsd_wrapper_get() local [all …]
|
/freebsd/contrib/ofed/opensm/include/opensm/ |
H A D | osm_madw.h | 40 * This object represents the context wrapper for OpenSM MAD processing. 63 /****s* OpenSM: MAD Wrapper/osm_bind_info_t 118 /****h* OpenSM/MAD Wrapper 120 * MAD Wrapper 123 * The MAD Wrapper object encapsulates the information needed by the 124 * OpenSM to manage individual MADs. The OpenSM allocates one MAD Wrapper 127 * The MAD Wrapper is not thread safe, thus callers must provide 138 /****s* OpenSM: MAD Wrapper/osm_ni_context_t 170 /****s* OpenSM: MAD Wrapper/osm_pi_context_t 189 /****s* OpenSM: MAD Wrapper/osm_gi_context_t [all …]
|
H A D | osm_mad_pool.h | 190 * Gets a MAD wrapper and wire MAD from the pool. 215 * Returns a pointer to a MAD wrapper containing the MAD. 245 * [in] Pointer to a MAD Wrapper for a MAD that was previously 264 * Gets a only MAD wrapper from the pool (no wire MAD). 280 * port for which this mad wrapper will be used. 284 * be attached to this wrapper. 287 * [in] Pointer to the MAD to attach to this wrapper. 294 * Returns a pointer to a MAD wrapper. 313 * Gets a only an uninitialized MAD wrapper from the pool (no wire MAD). 324 * Returns a pointer to a MAD wrapper.
|
/freebsd/contrib/lutok/ |
H A D | state.cpp | 44 /// Wrapper around lua_getglobal to run in a protected environment. 60 /// Wrapper around lua_gettable to run in a protected environment. 77 /// Wrapper around lua_next to run in a protected environment. 95 /// Wrapper around lua_setglobal to run in a protected environment. 111 /// Wrapper around lua_settable to run in a protected environment. 293 /// Wrapper around lua_getglobal. 313 /// This is a wrapper around the incompatible differences between Lua 5.1 and 331 /// Wrapper around luaL_getmetafield. 347 /// Wrapper around lua_getmetatable. 359 /// Wrapper around lua_gettable. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyFixFunctionBitcasts.cpp | 14 /// bitcasts of functions and rewrite them to use wrapper functions instead. 86 // Create a wrapper function with type Ty that calls F (which may have a 94 // I32 vs pointer type) then we don't create a wrapper at all (return nullptr 98 // module then generate wrapper that contains unreachable (i.e. abort at 108 // generate a wrapper. 112 Function *Wrapper = Function::Create(Ty, Function::PrivateLinkage, in createWrapper() local 114 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper); in createWrapper() 119 Function::arg_iterator AI = Wrapper->arg_begin(); in createWrapper() 120 Function::arg_iterator AE = Wrapper->arg_end(); in createWrapper() 200 // Create a new wrapper that simply contains `unreachable`. in createWrapper() [all …]
|
/freebsd/contrib/libucl/ |
H A D | ChangeLog.md | 72 - C++ wrapper improvements (by @ftilde) 73 - C++ wrapper: add convenience method at() and lookup() (by Yonghee Kim) 74 - C++ wrapper: add assignment operator to Ucl class (by Yonghee Kim) 75 - C++ wrapper: support variables in parser (by Yonghee Kim) 76 - C++ wrapper: refactoring C++ interface (by Yonghee Kim): 81 - C++ wrapper: fix compilation error and warnings (by Zhe Wang) 82 - C++ wrapper: fix iteration over objects in which the first value is `false` (by Zhe Wang) 83 - C++ wrapper: Macro helper functions (by Chris Meacham) 84 - C++ wrapper: Changing the duplicate strategy in the C++ API (by Chris Meacham) 85 - C++ wrapper: Added access functions for the size of a UCL_ARRAY (by Chris Meacham)
|
/freebsd/contrib/tcp_wrappers/ |
H A D | README | 3 This is the 7.6 version of the TCP/IP daemon wrapper package. 39 6.1 - Known wrapper limitations 59 The package provides tiny daemon wrapper programs that can be installed 84 What to do if this is your first encounter with the wrapper programs: 96 The wrapper programs rely on source address information obtained from 111 the wrapper programs, and introduce some of the terminology that is 136 The wrapper programs rely on a simple, but powerful mechanism. Instead 138 into running a small wrapper program. The wrapper logs the client host 140 the wrapper executes the desired server program and goes away. 142 The wrapper programs have no interaction with the client user (or with [all …]
|
H A D | README.IRIX | 4 people that tried to use my tcp wrapper on IRIX 5.x. Some mysteries 8 system. Here is my first-hand experience with wrapper release 6.3. 30 rstatd: the wrapper hangs in the recvfrom() system call, and I 40 hosts that have more than one address: the wrapper will see only 47 wrapper will be unable to figure out the client internet address.
|
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_mad_pool.c | 86 First, acquire a mad wrapper from the mad wrapper pool. in osm_mad_pool_get() 107 Finally, attach the wire MAD to this wrapper. in osm_mad_pool_get() 128 First, acquire a mad wrapper from the mad wrapper pool. in osm_mad_pool_get_wrapper() 135 Finally, initialize the wrapper object. in osm_mad_pool_get_wrapper() 171 Return the mad wrapper to the wrapper pool in osm_mad_pool_put()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/ |
H A D | OProfileJITEventListener.cpp | 39 std::unique_ptr<OProfileWrapper> Wrapper; member in __anon6843258e0111::OProfileJITEventListener 46 : Wrapper(std::move(LibraryWrapper)) { in OProfileJITEventListener() 59 if (!Wrapper->op_open_agent()) { in initialize() 69 if (Wrapper->isAgentAvailable()) { in ~OProfileJITEventListener() 70 if (Wrapper->op_close_agent() == -1) { in ~OProfileJITEventListener() 83 if (!Wrapper->isAgentAvailable()) { in notifyObjectLoaded() 107 if (Wrapper->op_write_native_code(Name.data(), Addr, (void *)Addr, Size) == in notifyObjectLoaded() 130 if (Wrapper->op_write_debug_line_info((void *)Addr, num_entries, in notifyObjectLoaded() 143 if (Wrapper->isAgentAvailable()) { in notifyFreeingObject() 162 if (Wrapper->op_unload_native_code(Addr) == -1) { in notifyFreeingObject()
|
/freebsd/sys/contrib/device-tree/src/powerpc/ |
H A D | acadia.dts | 34 clock-frequency = <0>; /* Filled in by wrapper */ 35 timebase-frequency = <0>; /* Filled in by wrapper */ 47 reg = <0x0 0x0>; /* Filled in by wrapper */ 65 clock-frequency = <0>; /* Filled in by wrapper */ 89 clock-frequency = <0>; /* Filled in by wrapper */ 96 clock-frequency = <0>; /* Filled in by wrapper */ 106 clock-frequency = <0>; /* Filled in by wrapper */ 136 local-mac-address = [000000000000]; /* Filled in by wrapper */ 217 clock-frequency = <0>; /* Filled in by wrapper */
|
/freebsd/sys/contrib/zstd/zlibWrapper/ |
H A D | README.md | 1 Zstandard wrapper for zlib 4 The main objective of creating a zstd wrapper for [zlib](http://zlib.net/) is to allow a quick and … 8 To build the zstd wrapper for zlib the following files are required: 21 #### Embedding the zstd wrapper within your project 26 To compile the zstd wrapper with your project you have to do the following: 36 After embedding the zstd wrapper within your project the zstd library is turned off by default. 74 #### The measurement of performance of Zstandard wrapper for zlib 76 …ntains a tool called `zwrapbench` which can measure speed and ratio of zlib, zstd, and the wrapper. 90 The zstd wrapper provides the `ZWRAP_setPledgedSrcSize()` function that allows to change a pledged …
|
/freebsd/crypto/openssh/regress/ |
H A D | scp-uri.sh | 15 cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp 16 chmod 755 ${OBJ}/scp-ssh-wrapper.scp 17 export SCP # used in scp-ssh-wrapper.scp 31 scpopts="-O -q -S ${OBJ}/scp-ssh-wrapper.scp" 79 rm -f ${OBJ}/scp-ssh-wrapper.exe
|
H A D | scp3.sh | 13 cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp 14 chmod 755 ${OBJ}/scp-ssh-wrapper.scp 15 export SCP # used in scp-ssh-wrapper.scp 69 rm -f ${OBJ}/scp-ssh-wrapper.exe
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | IntelJITEventListener.cpp | 49 IntelIttnotifyInfo(IntelJITEventsWrapper &Wrapper) in IntelIttnotifyInfo() argument 50 : ModuleObject(NULL), WrapperRef(Wrapper){}; in IntelIttnotifyInfo() 124 std::unique_ptr<IntelJITEventsWrapper> Wrapper; member in __anon0044147b0111::IntelJITEventListener 137 Wrapper.reset(libraryWrapper); in IntelJITEventListener() 161 IntelJITEventsWrapper& Wrapper, in FunctionDescToIntelJITFormat() argument 168 Result.method_id = Wrapper.iJIT_GetNewMethodID(); in FunctionDescToIntelJITFormat() 201 std::make_unique<IntelIttnotifyInfo>(*Wrapper); in notifyObjectLoaded() 211 Wrapper->iJitIttNotifyInfo(llvm::LoadBinaryModule, in notifyObjectLoaded() 290 FunctionDescToIntelJITFormat(*Wrapper, Name->data(), Addr, Size); in notifyObjectLoaded() 323 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED, in notifyObjectLoaded() [all …]
|
/freebsd/sys/dev/mlx4/mlx4_core/ |
H A D | mlx4_cmd.c | 1083 .wrapper = mlx4_QUERY_FW_wrapper 1092 .wrapper = NULL 1101 .wrapper = mlx4_QUERY_DEV_CAP_wrapper 1110 .wrapper = mlx4_QUERY_FUNC_CAP_wrapper 1119 .wrapper = NULL 1128 .wrapper = mlx4_INIT_PORT_wrapper 1137 .wrapper = mlx4_CLOSE_PORT_wrapper 1146 .wrapper = mlx4_QUERY_PORT_wrapper 1155 .wrapper = mlx4_SET_PORT_wrapper 1164 .wrapper = mlx4_MAP_EQ_wrapper [all …]
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | dh_ctrl.c | 81 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 134 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 149 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 177 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 187 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 197 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 207 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 217 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper, 227 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_win_dll_thunk.cpp | 34 uptr wrapper = dllThunkGetRealAddrOrDie(main_function); in dllThunkIntercept() local 35 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkIntercept() 42 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible() local 44 if (!wrapper) in dllThunkInterceptWhenPossible() 45 wrapper = dllThunkGetRealAddrOrDie(default_function); in dllThunkInterceptWhenPossible() 46 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkInterceptWhenPossible()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | meta-cmd-cmp.mk | 40 WRAPPER?= ccache 50 @echo ${WRAPPER} cc -c foo.c > $@ 71 @${.MAKE} -dM -r -C ${.CURDIR} -f ${MAKEFILE} WRAPPER= ${filter_tests} 76 WRAPPER=distcc ${filter_tests} 81 WRAPPER=icecc ${filter_tests}
|
/freebsd/contrib/ofed/opensm/include/vendor/ |
H A D | osm_vendor_umadt.h | 39 * This object represents the context wrapper for OpenSM MAD processing. 63 * MAD Wrapper 92 * Tags for mad wrapper to indicate the direction of mads. 105 * Umadt Vendor MAD Wrapper 108 * Umadt specific MAD wrapper. Umadt transport layer sets this for
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | FunctionCaller.h | 45 /// the location of the args struct for the wrapper function in args_addr_ref. 88 /// Compile the wrapper function 103 /// Insert the default function wrapper and its default argument struct 122 /// Insert the default function wrapper (using the JIT) 190 /// the wrapper 309 std::string m_wrapper_function_name; ///< The name of the wrapper function. 311 m_wrapper_function_text; ///< The contents of the wrapper function. 316 ///arguments to the wrapper 332 bool m_compiled; ///< True if the wrapper function has already been parsed. 334 m_JITted; ///< True if the wrapper function has already been JIT-compiled.
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | mt6351.txt | 3 The communication between MT6351 and SoC is through Mediatek PMIC wrapper. 4 For more detail, please visit Mediatek PMIC wrapper documentation. 6 Must be a child node of PMIC wrapper.
|
H A D | mt6358.txt | 3 The communication between MT6358 and SoC is through Mediatek PMIC wrapper. 4 For more detail, please visit Mediatek PMIC wrapper documentation. 6 Must be a child node of PMIC wrapper.
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
H A D | JITLoaderVTune.cpp | 26 static std::unique_ptr<IntelJITEventsWrapper> Wrapper; member in __anon425b7bc10111::JITEventWrapper 28 std::unique_ptr<IntelJITEventsWrapper> JITEventWrapper::Wrapper; member in __anon425b7bc10111::JITEventWrapper 78 JITEventWrapper::Wrapper->iJIT_NotifyEvent( in registerJITLoaderVTuneRegisterImpl() 88 JITEventWrapper::Wrapper->iJIT_NotifyEvent( in registerJITLoaderVTuneUnregisterImpl() 97 if (!JITEventWrapper::Wrapper) in llvm_orc_registerVTuneImpl() 98 JITEventWrapper::Wrapper.reset(new IntelJITEventsWrapper); in llvm_orc_registerVTuneImpl() 179 JITEventWrapper::Wrapper.reset(new IntelJITEventsWrapper( in llvm_orc_test_registerVTuneImpl()
|
/freebsd/contrib/openpam/bin/pamtest/ |
H A D | pamtest.c | 94 * Wrapper for pam_start(3) 109 * Wrapper for pam_authenticate(3) 124 * Wrapper for pam_acct_mgmt(3) 139 * Wrapper for pam_chauthtok(3) 154 * Wrapper for pam_setcred(3) 169 * Wrapper for pam_open_session(3) 184 * Wrapper for pam_close_session(3) 199 * Wrapper for pam_set_item(3) 230 * Wrapper for pam_end(3)
|