Home
last modified time | relevance | path

Searched full:instance (Results 1 – 25 of 3004) sorted by relevance

12345678910>>...121

/freebsd-src/contrib/ntp/ntpd/
H A Drefclock_oncore.c88 * instance->pp->leap indicator but only run this test in December and June for
268 struct instance { struct
359 #define rcvbuf instance->Rcvbuf argument
360 #define rcvptr instance->Rcvptr
365 static void oncore_consume (struct instance *);
366 static void oncore_read_config (struct instance *);
368 static int oncore_ppsapi (struct instance *);
369 static void oncore_get_timestamp (struct instance *, long, long);
370 static void oncore_init_shmem (struct instance *);
372 static void oncore_antenna_report (struct instance *, enum antenna_state);
[all …]
/freebsd-src/stand/ficl/softwords/
H A Doo.fr29 \ A ficl object binds instance storage (payload) to a class.
30 \ object ( -- instance class )
37 \ The NEW method creates and initializes an instance of a class.
41 \ cell 2: size of instance's payload
43 \ Methods expect an object couple ( instance class )
123 : catch-method ( instance class c-addr u -- <method-signature> exc-flag )
127 : exec-method ( instance class c-addr u -- <method-signature> )
131 \ Method lookup operator takes a class-addr and instance-addr
135 : --> ( instance class -- ??? )
144 : c-> ( instance class -- ?? exc-flag )
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/clock/
H A Dqcom,mmcc.yaml85 - description: DSI phy instance 1 dsi clock
86 - description: DSI phy instance 1 byte clock
87 - description: DSI phy instance 2 dsi clock
88 - description: DSI phy instance 2 byte clock
117 - description: DSI phy instance 0 dsi clock
118 - description: DSI phy instance 0 byte clock
145 - description: DSI phy instance 0 dsi clock
146 - description: DSI phy instance 0 byte clock
147 - description: DSI phy instance 1 dsi clock
148 - description: DSI phy instance 1 byte clock
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm-c/
H A DLLJIT.h42 * A function for constructing an ObjectLinkingLayer instance to be used
43 * by an LLJIT instance.
46 * set the creator function to use when constructing an LLJIT instance.
51 * LLJIT instance. The client is not responsible for managing their lifetimes
59 * A reference to an orc::LLJITBuilder instance.
64 * A reference to an orc::LLJIT instance.
85 * instance. Calling this function is optional: if it is not called then the
96 * Set an ObjectLinkingLayer creator function for this LLJIT instance.
103 * Create an LLJIT instance from an LLJITBuilder.
110 * On success the resulting LLJIT instance is uniquely owned by the client and
[all …]
/freebsd-src/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-core.c131 * @param instance pointer to the current instance
134 static void clear_memory(argon2_instance_t *instance, int clear);
137 clear_memory(argon2_instance_t *instance, int clear) in clear_memory() argument
141 if (instance->region != NULL) { in clear_memory()
142 sodium_memzero(instance->region->memory, in clear_memory()
143 sizeof(block) * instance->memory_blocks); in clear_memory()
145 if (instance->pseudo_rands != NULL) { in clear_memory()
146 sodium_memzero(instance->pseudo_rands, in clear_memory()
147 sizeof(uint64_t) * instance->segment_length); in clear_memory()
174 free_instance(argon2_instance_t *instance, int flags) in free_instance() argument
[all …]
H A Dargon2-core.h90 * Argon2 instance: memory pointer, number of passes, amount of memory, type,
132 * @param instance Pointer to the current instance
139 static uint32_t index_alpha(const argon2_instance_t *instance, in index_alpha() argument
167 position->slice * instance->segment_length + in index_alpha()
171 position->slice * instance->segment_length + in index_alpha()
178 reference_area_size = instance->lane_length - in index_alpha()
179 instance->segment_length + position->index - in index_alpha()
182 reference_area_size = instance->lane_length - in index_alpha()
183 instance->segment_length + in index_alpha()
201 : (position->slice + 1) * instance->segment_length; in index_alpha()
[all …]
H A Dargon2-fill-block-ref.c106 * @param instance Pointer to the current instance
109 * @pre pseudo_rands must point to @a instance->segment_length allocated values
112 generate_addresses(const argon2_instance_t *instance, in generate_addresses() argument
121 if (instance != NULL && position != NULL) { in generate_addresses()
125 input_block.v[3] = instance->memory_blocks; in generate_addresses()
126 input_block.v[4] = instance->passes; in generate_addresses()
127 input_block.v[5] = instance->type; in generate_addresses()
129 for (i = 0; i < instance->segment_length; ++i) { in generate_addresses()
144 fill_segment_ref(const argon2_instance_t *instance, argon2_position_t position) in fill_segment_ref() argument
155 if (instance == NULL) { in fill_segment_ref()
[all …]
H A Dargon2-fill-block-avx2.c101 generate_addresses(const argon2_instance_t *instance, in generate_addresses() argument
110 if (instance != NULL && position != NULL) { in generate_addresses()
114 input_block.v[3] = instance->memory_blocks; in generate_addresses()
115 input_block.v[4] = instance->passes; in generate_addresses()
116 input_block.v[5] = instance->type; in generate_addresses()
118 for (i = 0; i < instance->segment_length; ++i) { in generate_addresses()
144 fill_segment_avx2(const argon2_instance_t *instance, in fill_segment_avx2() argument
157 if (instance == NULL) { in fill_segment_avx2()
161 if (instance->type == Argon2_id && in fill_segment_avx2()
166 pseudo_rands = instance->pseudo_rands; in fill_segment_avx2()
[all …]
H A Dargon2-fill-block-avx512f.c106 generate_addresses(const argon2_instance_t *instance, in generate_addresses() argument
115 if (instance != NULL && position != NULL) { in generate_addresses()
119 input_block.v[3] = instance->memory_blocks; in generate_addresses()
120 input_block.v[4] = instance->passes; in generate_addresses()
121 input_block.v[5] = instance->type; in generate_addresses()
123 for (i = 0; i < instance->segment_length; ++i) { in generate_addresses()
149 fill_segment_avx512f(const argon2_instance_t *instance, in fill_segment_avx512f() argument
162 if (instance == NULL) { in fill_segment_avx512f()
166 if (instance->type == Argon2_id && in fill_segment_avx512f()
171 pseudo_rands = instance->pseudo_rands; in fill_segment_avx512f()
[all …]
H A Dargon2-fill-block-ssse3.c100 generate_addresses(const argon2_instance_t *instance, in generate_addresses() argument
109 if (instance != NULL && position != NULL) { in generate_addresses()
113 input_block.v[3] = instance->memory_blocks; in generate_addresses()
114 input_block.v[4] = instance->passes; in generate_addresses()
115 input_block.v[5] = instance->type; in generate_addresses()
117 for (i = 0; i < instance->segment_length; ++i) { in generate_addresses()
143 fill_segment_ssse3(const argon2_instance_t *instance, in fill_segment_ssse3() argument
156 if (instance == NULL) { in fill_segment_ssse3()
160 if (instance->type == Argon2_id && in fill_segment_ssse3()
165 pseudo_rands = instance->pseudo_rands; in fill_segment_ssse3()
[all …]
/freebsd-src/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_kern_lib.c73 VCHIQ_INSTANCE_T instance = NULL; in vchiq_initialise() local
95 instance = kzalloc(sizeof(*instance), GFP_KERNEL); in vchiq_initialise()
96 if (!instance) { in vchiq_initialise()
98 "%s: error allocating vchiq instance\n", __func__); in vchiq_initialise()
102 instance->connected = 0; in vchiq_initialise()
103 instance->state = state; in vchiq_initialise()
104 lmutex_init(&instance->bulk_waiter_list_mutex); in vchiq_initialise()
105 INIT_LIST_HEAD(&instance->bulk_waiter_list); in vchiq_initialise()
107 *instanceOut = instance; in vchiq_initialise()
113 "%s(%p): returning %d", __func__, instance, status); in vchiq_initialise()
[all …]
H A Dvchiq_arm.c48 /* Some per-instance constants */
95 static int vchiq_proc_add_instance(VCHIQ_INSTANCE_T instance);
96 static void vchiq_proc_remove_instance(VCHIQ_INSTANCE_T instance);
103 VCHIQ_INSTANCE_T instance; member
205 add_completion(VCHIQ_INSTANCE_T instance, VCHIQ_REASON_T reason, in add_completion() argument
213 insert = instance->completion_insert; in add_completion()
214 while ((insert - instance->completion_remove) >= MAX_COMPLETIONS) { in add_completion()
221 if (down_interruptible(&instance->remove_event) != 0) { in add_completion()
227 if (instance->closing) { in add_completion()
235 completion = &instance->completions[insert & (MAX_COMPLETIONS - 1)]; in add_completion()
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h55 void init(Allocator *Instance) REQUIRES(Mutex) { in unmapTestOnly()
57 Instance->init(); in unmapTestOnly()
59 FallbackTSD.init(Instance); in unmapTestOnly()
63 void initOnceMaybe(Allocator *Instance) EXCLUDES(Mutex) { in drainCaches()
67 init(Instance); // Sets Initialized. in drainCaches()
70 void unmapTestOnly(Allocator *Instance) EXCLUDES(Mutex) {
71 DCHECK(Instance); in initThreadMaybe()
74 Instance); in initThreadMaybe()
75 ThreadTSD.commitBack(Instance); in initThreadMaybe()
80 FallbackTSD.commitBack(Instance);
159 Allocator *Instance = reinterpret_cast<Allocator *>(Ptr); teardownThread() local
[all...]
/freebsd-src/stand/libofw/
H A Dopenfirm.c212 /* Return the package handle that corresponds to an instance handle. */
214 OF_instance_to_package(ihandle_t instance) in OF_instance_to_package() argument
220 cell_t instance; in OF_instance_to_package() member
223 SETUP(args, "instance-to-package", 1, 1); in OF_instance_to_package()
225 args.instance = instance; in OF_instance_to_package()
383 /* Return the fully qualified pathname corresponding to an instance. */
385 OF_instance_to_path(ihandle_t instance, char *buf, int len) in OF_instance_to_path() argument
391 cell_t instance; in OF_instance_to_path() member
396 SETUP(args, "instance-to-path", 3, 1); in OF_instance_to_path()
398 args.instance = instance; in OF_instance_to_path()
[all …]
/freebsd-src/sys/dev/ofw/
H A Dofw_standard.c79 static phandle_t ofw_std_instance_to_package(ofw_t ofw, ihandle_t instance);
91 static ssize_t ofw_std_instance_to_path(ofw_t ofw, ihandle_t instance,
95 static int ofw_std_call_method(ofw_t ofw, ihandle_t instance,
98 static void ofw_std_close(ofw_t ofw, ihandle_t instance);
99 static ssize_t ofw_std_read(ofw_t ofw, ihandle_t instance, void *addr,
101 static ssize_t ofw_std_write(ofw_t ofw, ihandle_t instance, const void *addr,
103 static int ofw_std_seek(ofw_t ofw, ihandle_t instance, uint64_t pos);
279 /* Return the package handle that corresponds to an instance handle. */
281 ofw_std_instance_to_package(ofw_t ofw, ihandle_t instance) in ofw_std_instance_to_package() argument
287 cell_t instance; in ofw_std_instance_to_package() member
[all …]
/freebsd-src/sys/dev/qat/qat_api/common/include/
H A Dsal_service_state.h11 * Checks state for generic service instance
21 * Check to see if the instance is in the running state
24 * This function checks the state of an instance to see if it is in the
27 * @param[in] instance Instance handle (assumes this is valid, i.e. checked
29 * @retval CPA_TRUE Instance in the RUNNING state
30 * @retval CPA_FALSE Instance not in RUNNING state
38 * Check to see if the instance is beign restarted
41 * This function checks the state of an instance to see if the device it
44 * @param[in] instance Instance handle (assumes this is valid, i.e. checked
46 * @retval CPA_TRUE Device the instance is using is restarting.
[all …]
/freebsd-src/stand/efi/include/Protocol/
H A DHttp.h115 /// Set to TRUE to instruct the EFI HTTP instance to use the default address
116 /// information in every TCP connection made by this instance. In addition, when set
122 /// used in every TCP connection opened by this instance.
127 /// in every TCP connection opened by this instance.
132 /// every TCP connection opened by this instance.
142 /// Local IP address to be used in every TCP connection opened by this instance.
146 /// Local port to be used in every TCP connection opened by this instance.
158 /// HTTP version that this instance will support.
166 /// Defines behavior of EFI DNS and TCP protocols consumed by this instance. If
167 /// FALSE, this instance will use EFI_DNS4_PROTOCOL and EFI_TCP4_PROTOCOL. If TRUE,
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/WindowsDriver/
H A DMSVCSetupApi.h49 /// The state of an instance.
53 /// The instance state has not been determined.
58 /// The instance installation path exists.
63 /// A product is registered to the instance.
68 /// No reboot is required for the instance.
73 /// The instance represents a complete install.
136 /// Information about an instance of a product.
141 /// Gets the instance identifier (should match the name of the parent instance
144 /// <param name="pbstrInstanceId">The instance identifier.</param>
146 /// E_FILENOTFOUND if the instance state does not exist.</returns>
[all …]
/freebsd-src/sys/dev/qat/qat_api/include/lac/
H A Dcpa_cy_im.h46 * @defgroup cpaCyInstMaint Cryptographic Instance Management API
51 * These functions specify the Instance Management API for available
76 * or after an cpaCyStopInstance call which succeeded) per instance.
91 * @param[out] instanceHandle Handle to an instance of this API to be
143 * @param[in] instanceHandle Handle to an instance of this API to be
189 /**< CPA_TRUE if instance supports the symmetric cryptography API.
192 /**< CPA_TRUE if instance supports the symmetric cryptography
196 /**< CPA_TRUE if instance supports the Diffie Hellman API.
199 /**< CPA_TRUE if instance supports the DSA API.
202 /**< CPA_TRUE if instance supports the RSA API.
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp78 CompilerInstance Instance(CI.getPCHContainerOperations()); in onBodySynthesis() local
79 Instance.setInvocation(std::move(Invocation)); in onBodySynthesis()
80 Instance.createDiagnostics( in onBodySynthesis()
84 Instance.getDiagnostics().setSourceManager(&SM); in onBodySynthesis()
86 // The instance wants to take ownership, however DisableFree frontend option in onBodySynthesis()
88 Instance.setFileManager(&CI.getFileManager()); in onBodySynthesis()
89 Instance.setSourceManager(&SM); in onBodySynthesis()
90 Instance.setPreprocessor(CI.getPreprocessorPtr()); in onBodySynthesis()
91 Instance.setASTContext(&CI.getASTContext()); in onBodySynthesis()
93 Instance.getPreprocessor().InitializeForModelFile(); in onBodySynthesis()
[all …]
/freebsd-src/sys/dev/qat/qat_common/
H A Dadf_cfg_instance.c6 crypto_instance_init(struct adf_cfg_instance *instance, in crypto_instance_init() argument
11 instance->stype = CRYPTO; in crypto_instance_init()
18 instance->asym_tx = bundle->rings[i]->number; in crypto_instance_init()
30 instance->sym_tx = bundle->rings[i]->number; in crypto_instance_init()
42 instance->asym_rx = bundle->rings[i]->number; in crypto_instance_init()
54 instance->sym_rx = bundle->rings[i]->number; in crypto_instance_init()
62 dc_instance_init(struct adf_cfg_instance *instance, in dc_instance_init() argument
67 instance->stype = COMP; in dc_instance_init()
74 instance->dc_tx = bundle->rings[i]->number; in dc_instance_init()
86 instance->dc_rx = bundle->rings[i]->number; in dc_instance_init()
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Core/
H A DPluginManager.cpp92 FileSystem::Instance().Resolve(plugin_file_spec); in LoadPluginCallback()
119 // instance to invalidate it. in LoadPluginCallback()
150 if (FileSystem::Instance().Exists(dir_spec) && in Initialize()
152 FileSystem::Instance().EnumerateDirectory(dir_path, find_directories, in Initialize()
159 if (FileSystem::Instance().Exists(dir_spec) && in Initialize()
161 FileSystem::Instance().EnumerateDirectory(dir_path, find_directories, in Initialize()
200 template <typename Instance> class PluginInstances {
204 typename Instance::CallbackType callback, in RegisterPlugin()
209 Instance instance in RegisterPlugin()
208 Instance instance = RegisterPlugin() local
229 if (Instance *instance = GetInstanceAtIndex(idx)) GetCallbackAtIndex() local
235 if (Instance *instance = GetInstanceAtIndex(idx)) GetDescriptionAtIndex() local
241 if (Instance *instance = GetInstanceAtIndex(idx)) GetNameAtIndex() local
249 for (auto &instance : m_instances) { GetCallbackForName() local
257 for (auto &instance : m_instances) { PerformDebuggerCallback() local
684 for (auto &instance : instances) { GetObjectFileCreateMemoryCallbackForPluginName() local
707 for (auto &instance : instances) { SaveCore() local
823 for (const auto &instance : GetPlatformInstances().GetInstances()) { AutoCompletePlatformName() local
871 for (const auto &instance : GetProcessInstances().GetInstances()) { AutoCompleteProcessName() local
960 for (const auto &instance : instances) { GetScriptInterpreterForLanguage() local
1142 for (auto &instance : instances) { LocateExecutableObjectFile() local
1156 for (auto &instance : instances) { LocateExecutableSymbolFile() local
1172 for (auto &instance : instances) { DownloadObjectAndSymbolFile() local
1186 for (auto &instance : instances) { FindSymbolFileInBundle() local
1246 for (const TraceInstance &instance : GetTracePluginInstances().GetInstances()) GetTraceCreateCallbackForLiveProcess() local
1253 for (const TraceInstance &instance : GetTracePluginInstances().GetInstances()) GetTraceSchema() local
1260 if (TraceInstance *instance = GetTraceSchema() local
1309 if (TraceExporterInstance *instance = GetThreadTraceExportCommandCreatorAtIndex() local
[all...]
/freebsd-src/sys/dev/qat/qat_api/include/
H A Dicp_sal_poll.h12 * Polling APIs for instance polling.
26 * Poll a Cy logical instance to retrieve requests that are on the
27 * response rings associated with that instance and dispatch the
42 * @param[in] instanceHandle Instance handle.
50 * associated with this instance
60 * response rings associated with that instance and dispatch the
75 * @param[in] instanceHandle Instance handle.
83 * associated with this instance
93 * response rings associated with that instance and dispatch the
108 * @param[in] instanceHandle Instance handle.
[all …]
/freebsd-src/crypto/heimdal/appl/su/
H A Dsu.146 .Oo Fl i Ar instance \*(Ba Xo
47 .Fl Fl instance= Ns Ar instance
57 will use Kerberos authentication provided that an instance for the
66 .Ql user Ns / Ns Ao instance Ac Ns @ Ns REALM
70 .Aq instance
116 .Fl i Ar instance ,
117 .Fl Fl instance= Ns Ar instance
118 root instance to use.
/freebsd-src/sys/contrib/device-tree/Bindings/net/
H A Dintel,ixp4xx-hss.yaml24 description: The HSS instance
30 - description: phandle to the NPE this HSS instance is using
31 - description: the NPE instance number
32 description: phandle to the NPE this HSS instance is using
33 and the instance to use in the second cell
40 - description: the queue instance number
48 - description: the queue instance number
56 - description: the queue instance number
65 - description: the queue instance number
74 - description: the queue instance number
[all …]

12345678910>>...121