| /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 58 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) { in tsd_wrapper_set() 66 tsd_wrapper_t *wrapper; in tsd_wrapper_get() 63 tsd_wrapper_t *wrapper = (tsd_wrapper_t *)pthread_getspecific(tsd_tsd); tsd_wrapper_get() local 104 tsd_wrapper_t *wrapper; tsd_boot1() local 143 tsd_wrapper_t *wrapper; tsd_get() local 155 tsd_wrapper_t *wrapper; tsd_set() local [all...] |
| H A D | tsd_win.h | 19 tsd_wrapper_t *wrapper = (tsd_wrapper_t *)TlsGetValue(tsd_tsd); in tsd_cleanup_wrapper() local 22 if (wrapper == NULL) { in tsd_cleanup_wrapper() 26 if (wrapper->initialized) { in tsd_cleanup_wrapper() 27 wrapper->initialized = false; in tsd_cleanup_wrapper() 28 tsd_cleanup(&wrapper->val); in tsd_cleanup_wrapper() 29 if (wrapper->initialized) { in tsd_cleanup_wrapper() 34 malloc_tsd_dalloc(wrapper); in tsd_cleanup_wrapper() 39 tsd_wrapper_set(tsd_wrapper_t *wrapper) { in tsd_wrapper_set() argument 40 if (!TlsSetValue(tsd_tsd, (void *)wrapper)) { in tsd_wrapper_set() 49 tsd_wrapper_t *wrapper = (tsd_wrapper_t *) TlsGetValue(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 Wrapper->setAttributes(F->getAttributes()); in createWrapper() 115 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper); in createWrapper() 120 Function::arg_iterator AI = Wrapper->arg_begin(); in createWrapper() 121 Function::arg_iterator AE = Wrapper->arg_end(); in createWrapper() [all …]
|
| /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/contrib/lutok/api-docs/html/ |
| H A D | a00919.html | 110 …d8d53e54eaee349"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_getglo… 116 …855e375f6bc64cb"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around luaL_getme… 119 …e0f32f47b629ae5"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_getmet… 122 …ffeff22b8819648"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_gettab… 125 …c147a8a6623b2e5"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_gettop… 128 …2fbfd05aa16ad72"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_insert… 131 …fe54800d36d4deb"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_isbool… 134 …e1d46df003c19c0"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_isfunc… 137 …16dd032f0612a78"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_isnil.… 140 …03e5444bf451eb1"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper around lua_isnumb… [all …]
|
| H A D | a00029_source.html | 192 …ttdeci">void get_global(const std::string &)</div><div class="ttdoc">Wrapper around lua_getglo… 193 …et_metafield(const int, const std::string &)</div><div class="ttdoc">Wrapper around luaL_getme… 194 …div class="ttdeci">Type * to_userdata(const int)</div><div class="ttdoc">Wrapper around lua_touser… 195 …">void push_cxx_closure(cxx_function, const int)</div><div class="ttdoc">Wrapper around lua_pushcc… 196 …div class="ttdeci">void push_boolean(const bool)</div><div class="ttdoc">Wrapper around lua_pushbo… 197 …<div class="ttdeci">int upvalue_index(const int)</div><div class="ttdoc">Wrapper around lua_upvalu… 199 …</div><div class="ttdeci">bool is_nil(const int)</div><div class="ttdoc">Wrapper around lua_isnil.… 203 …eci">void pcall(const int, const int, const int)</div><div class="ttdoc">Wrapper around lua_pcall.… 204 …v><div class="ttdeci">bool to_boolean(const int)</div><div class="ttdoc">Wrapper around lua_tobool… 205 …ass="ttdeci">void * to_userdata_voidp(const int)</div><div class="ttdoc">Wrapper around lua_touser… [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | realtek,rtd1xxx.yaml | 20 - realtek,rtd1293-scpu-wrapper 25 - realtek,rtd1295-scpu-wrapper 30 - realtek,rtd1296-scpu-wrapper 35 - realtek,rtd1395-scpu-wrapper 40 - realtek,rtd1619-scpu-wrapper
|
| /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](https://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 | 19 cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp 20 chmod 755 ${OBJ}/scp-ssh-wrapper.scp 21 export SCP # used in scp-ssh-wrapper.scp 84 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/contrib/llvm-project/compiler-rt/lib/interception/ |
| H A D | interception_aix.cpp | 30 // In case `name' is not loaded, dlsym ends up finding the actual wrapper. in GetFuncAddr() 31 // We don't want to intercept the wrapper and have it point to itself. in GetFuncAddr() 38 uptr wrapper) { in InterceptFunction() argument 39 void *addr = GetFuncAddr(name, wrapper); in InterceptFunction() 41 return addr && (func == wrapper); in InterceptFunction()
|
| /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/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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/send_xdr_encoding/ |
| H A D | xdr_replication.ksh | 25 # 1. A wrapper BEGIN of type DMU_COMPOUNDSTREAM, generated in libzfs 46 # libzfs-generated wrapper BEGIN with its compound-stream nvlist plus 50 # nvlist line that zstream dump emits, so it covers both the wrapper 71 log_assert "BEGIN nvlists in a recursive replication stream (wrapper and inner) are XDR-encoded and… 85 log_pass "BEGIN nvlists in a recursive replication stream (wrapper and inner) are XDR-encoded and r…
|
| /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.
|