Home
last modified time | relevance | path

Searched refs:update_func (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/dports/security/gnutls/gnutls-3.6.16/lib/nettle/
H A Dmac.c105 update_func update;
133 update_func update;
343 ctx->update = (update_func) umac96_update; in _mac_ctx_init()
351 ctx->update = (update_func) umac128_update; in _mac_ctx_init()
640 ctx->update = (update_func) md5_update; in _ctx_init()
647 ctx->update = (update_func) sha1_update; in _ctx_init()
662 ctx->update = (update_func) sha224_update; in _ctx_init()
669 ctx->update = (update_func) sha256_update; in _ctx_init()
676 ctx->update = (update_func) sha384_update; in _ctx_init()
683 ctx->update = (update_func) sha512_update; in _ctx_init()
[all …]
/dports/sysutils/py-rdiff-backup/rdiff-backup-2.0.5/testing/
H A Dbenchmark.py71 def benchmark(backup_cmd, restore_cmd, desc, update_func=None): argument
80 if update_func:
81 update_func()
99 def update_func(): function
102 benchmark(backup_cmd, restore_cmd, "2000 1-byte files", update_func)
115 def update_func(): function
118 benchmark(backup_cmd, restore_cmd, "2000 1-byte files", update_func)
145 def update_func(): function
149 update_func)
/dports/multimedia/pitivi/pitivi-0.999/pitivi/utils/
H A Dripple_update_group.py78 def addVertex(self, widget, signal=None, update_func=None, argument
92 self.update_funcs[widget] = (update_func, update_func_args)
149 update_func, update_func_args = self.update_funcs[target_widget]
150 if update_func:
151 update_func(source_widget, target_widget, *update_func_args)
/dports/lang/guile1/guile-1.8.8/doc/example-smob/
H A Dimage-type.c36 SCM update_func; member
57 image->update_func = SCM_BOOL_F; in make_image()
85 if (scm_is_true (image->update_func)) in clear_image()
86 scm_call_0 (image->update_func); in clear_image()
100 return image->update_func; in mark_image()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/auto_scheduler/
H A Dcost_model.cc51 PythonBasedModel::PythonBasedModel(PackedFunc update_func, PackedFunc predict_func, in PythonBasedModel() argument
54 node->update_func = std::move(update_func); in PythonBasedModel()
62 update_func(inputs, results); in Update()
151 .set_body_typed([](PackedFunc update_func, PackedFunc predict_func,
153 return PythonBasedModel(update_func, predict_func, predict_stage_func); in __anon99bc9f3a0202()
/dports/graphics/gimp-app/gimp-2.10.30/app/widgets/
H A Dgimpactionfactory.c104 GimpActionGroupUpdateFunc update_func) in gimp_action_factory_group_register() argument
112 g_return_if_fail (update_func != NULL); in gimp_action_factory_group_register()
120 entry->update_func = update_func; in gimp_action_factory_group_register()
149 entry->update_func); in gimp_action_factory_group_new()
/dports/graphics/libheif/libheif-1.10.0/gdk-pixbuf/
H A Dpixbufloader-heif.c34 GdkPixbufModuleUpdatedFunc update_func; member
44 GdkPixbufModuleUpdatedFunc update_func, in begin_load() argument
54 hpc->update_func = update_func; in begin_load()
137 if (hpc->update_func != NULL) { in stop_load()
138 …(*hpc->update_func)(pixbuf, 0, 0, gdk_pixbuf_get_width(pixbuf), gdk_pixbuf_get_height(pixbuf), hpc… in stop_load()
/dports/games/retroarch/RetroArch-1.9.7/deps/mbedtls/
H A Dmd.c222 ctx->md_info->update_func( ctx->md_ctx, input, ilen ); in mbedtls_md_update()
271 md_info->update_func( ctx.md_ctx, buf, n ); in mbedtls_md_file()
301 ctx->md_info->update_func( ctx->md_ctx, key, keylen ); in mbedtls_md_hmac_starts()
323 ctx->md_info->update_func( ctx->md_ctx, ipad, ctx->md_info->block_size ); in mbedtls_md_hmac_starts()
333 ctx->md_info->update_func( ctx->md_ctx, input, ilen ); in mbedtls_md_hmac_update()
350 ctx->md_info->update_func( ctx->md_ctx, opad, ctx->md_info->block_size ); in mbedtls_md_hmac_finish()
351 ctx->md_info->update_func( ctx->md_ctx, tmp, ctx->md_info->size ); in mbedtls_md_hmac_finish()
367 ctx->md_info->update_func( ctx->md_ctx, ipad, ctx->md_info->block_size ); in mbedtls_md_hmac_reset()
/dports/security/pixiewps/pixiewps-1.4.1/src/mbedtls/
H A Dmd.c163 ctx->md_info->update_func( ctx->md_ctx, input, ilen );
212 md_info->update_func( ctx.md_ctx, buf, n );
242 ctx->md_info->update_func( ctx->md_ctx, key, keylen );
264 ctx->md_info->update_func( ctx->md_ctx, ipad, ctx->md_info->block_size );
274 ctx->md_info->update_func( ctx->md_ctx, input, ilen );
291 ctx->md_info->update_func( ctx->md_ctx, opad, ctx->md_info->block_size );
292 ctx->md_info->update_func( ctx->md_ctx, tmp, ctx->md_info->size );
308 ctx->md_info->update_func( ctx->md_ctx, ipad, ctx->md_info->block_size );
/dports/misc/tvm/incubator-tvm-0.6.1/nnvm/tests/python/compiler/
H A Dtest_optimizer.py27 def helper(symbol, inputs, params, update_func, run_times, target, ctx, dtype="float32"): argument
44 y_np = update_func(**np_inputs)
73 def update_func(data, weight): function
82 helper(opt_sym, inputs, params, update_func, 2, target, ctx)
113 def update_func(data, weight): function
130 helper(opt_sym, inputs, params, update_func, 2, target, ctx)
/dports/misc/py-tvm/incubator-tvm-0.6.1/nnvm/tests/python/compiler/
H A Dtest_optimizer.py27 def helper(symbol, inputs, params, update_func, run_times, target, ctx, dtype="float32"): argument
44 y_np = update_func(**np_inputs)
73 def update_func(data, weight): function
82 helper(opt_sym, inputs, params, update_func, 2, target, ctx)
113 def update_func(data, weight): function
130 helper(opt_sym, inputs, params, update_func, 2, target, ctx)
/dports/security/gnutls/gnutls-3.6.16/lib/accelerated/aarch64/
H A Dhmac-sha-aarch64.c39 typedef void (*update_func) (void *, size_t, const uint8_t *); typedef
55 update_func update;
156 ctx->update = (update_func) aarch64_hmac_sha1_update; in _hmac_ctx_init()
163 ctx->update = (update_func) aarch64_hmac_sha256_update; in _hmac_ctx_init()
170 ctx->update = (update_func) aarch64_hmac_sha256_update; in _hmac_ctx_init()
177 ctx->update = (update_func) aarch64_hmac_sha512_update; in _hmac_ctx_init()
184 ctx->update = (update_func) aarch64_hmac_sha512_update; in _hmac_ctx_init()
/dports/security/gnutls/gnutls-3.6.16/lib/accelerated/x86/
H A Dhmac-x86-ssse3.c39 typedef void (*update_func) (void *, size_t, const uint8_t *); typedef
55 update_func update;
156 ctx->update = (update_func) x86_hmac_sha1_update; in _hmac_ctx_init()
163 ctx->update = (update_func) x86_hmac_sha256_update; in _hmac_ctx_init()
170 ctx->update = (update_func) x86_hmac_sha256_update; in _hmac_ctx_init()
177 ctx->update = (update_func) x86_hmac_sha512_update; in _hmac_ctx_init()
184 ctx->update = (update_func) x86_hmac_sha512_update; in _hmac_ctx_init()
H A Dhmac-padlock.c44 typedef void (*update_func) (void *, size_t, const uint8_t *); typedef
60 update_func update;
161 ctx->update = (update_func) padlock_hmac_sha1_update; in _hmac_ctx_init()
168 ctx->update = (update_func) padlock_hmac_sha256_update; in _hmac_ctx_init()
175 ctx->update = (update_func) padlock_hmac_sha256_update; in _hmac_ctx_init()
182 ctx->update = (update_func) padlock_hmac_sha512_update; in _hmac_ctx_init()
189 ctx->update = (update_func) padlock_hmac_sha512_update; in _hmac_ctx_init()
/dports/graphics/gdk-pixbuf2/gdk-pixbuf-2.40.0/gdk-pixbuf/
H A Dio-qtif.c80 GdkPixbufModuleUpdatedFunc update_func; member
91 GdkPixbufModuleUpdatedFunc update_func,
253 GdkPixbufModuleUpdatedFunc update_func, in gdk_pixbuf__qtif_image_begin_load() argument
277 context->update_func = update_func; in gdk_pixbuf__qtif_image_begin_load()
344 if(context->update_func != NULL) in gdk_pixbuf__qtif_image_create_loader()
392 if((context->update_func != NULL) && (context->cb_update_count == 0)) in gdk_pixbuf__qtif_image_free_loader()
399 (context->update_func)(pixbuf, 0, 0, width, height, context->user_data); in gdk_pixbuf__qtif_image_free_loader()
571 if((loader != NULL) && (context != NULL) && (context->update_func != NULL)) in gdk_pixbuf__qtif_cb_area_updated()
574 (context->update_func)(pixbuf, x, y, width, height, context->user_data); in gdk_pixbuf__qtif_cb_area_updated()
/dports/databases/libgda5/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func;
216 manager->priv->update_func = g_value_get_pointer (value);
240 g_value_set_pointer (value, manager->priv->update_func);
278 if (manager->priv->update_func)
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error);
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func)
330 g_return_val_if_fail (update_func, NULL);
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL);
/dports/databases/libgda5-bdb/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func; member
216 manager->priv->update_func = g_value_get_pointer (value); in gda_tree_manager_set_property()
240 g_value_set_pointer (value, manager->priv->update_func); in gda_tree_manager_get_property()
278 if (manager->priv->update_func) in _gda_tree_manager_update_children()
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error); in _gda_tree_manager_update_children()
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func) in gda_tree_manager_new_with_func() argument
330 g_return_val_if_fail (update_func, NULL); in gda_tree_manager_new_with_func()
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL); in gda_tree_manager_new_with_func()
/dports/databases/libgda5-ui/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func;
216 manager->priv->update_func = g_value_get_pointer (value);
240 g_value_set_pointer (value, manager->priv->update_func);
278 if (manager->priv->update_func)
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error);
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func)
330 g_return_val_if_fail (update_func, NULL);
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL);
/dports/databases/libgda5-postgresql/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func; member
216 manager->priv->update_func = g_value_get_pointer (value); in gda_tree_manager_set_property()
240 g_value_set_pointer (value, manager->priv->update_func); in gda_tree_manager_get_property()
278 if (manager->priv->update_func) in _gda_tree_manager_update_children()
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error); in _gda_tree_manager_update_children()
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func) in gda_tree_manager_new_with_func() argument
330 g_return_val_if_fail (update_func, NULL); in gda_tree_manager_new_with_func()
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL); in gda_tree_manager_new_with_func()
/dports/databases/libgda5-mysql/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func; member
216 manager->priv->update_func = g_value_get_pointer (value); in gda_tree_manager_set_property()
240 g_value_set_pointer (value, manager->priv->update_func); in gda_tree_manager_get_property()
278 if (manager->priv->update_func) in _gda_tree_manager_update_children()
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error); in _gda_tree_manager_update_children()
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func) in gda_tree_manager_new_with_func() argument
330 g_return_val_if_fail (update_func, NULL); in gda_tree_manager_new_with_func()
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL); in gda_tree_manager_new_with_func()
/dports/databases/libgda5-jdbc/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func; member
216 manager->priv->update_func = g_value_get_pointer (value); in gda_tree_manager_set_property()
240 g_value_set_pointer (value, manager->priv->update_func); in gda_tree_manager_get_property()
278 if (manager->priv->update_func) in _gda_tree_manager_update_children()
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error); in _gda_tree_manager_update_children()
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func) in gda_tree_manager_new_with_func() argument
330 g_return_val_if_fail (update_func, NULL); in gda_tree_manager_new_with_func()
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL); in gda_tree_manager_new_with_func()
/dports/databases/libgda5-ldap/libgda-5.2.10/libgda/
H A Dgda-tree-manager.c38 GdaTreeManagerNodesFunc update_func; member
216 manager->priv->update_func = g_value_get_pointer (value); in gda_tree_manager_set_property()
240 g_value_set_pointer (value, manager->priv->update_func); in gda_tree_manager_get_property()
278 if (manager->priv->update_func) in _gda_tree_manager_update_children()
279 nodes_list = manager->priv->update_func (manager, node, children_nodes, out_error, error); in _gda_tree_manager_update_children()
328 gda_tree_manager_new_with_func (GdaTreeManagerNodesFunc update_func) in gda_tree_manager_new_with_func() argument
330 g_return_val_if_fail (update_func, NULL); in gda_tree_manager_new_with_func()
332 return (GdaTreeManager*) g_object_new (GDA_TYPE_TREE_MANAGER, "func", update_func, NULL); in gda_tree_manager_new_with_func()
/dports/games/0ad/0ad-0.0.23b-alpha/build/premake/premake5/contrib/mbedtls/library/
H A Dmd.c263 ctx->md_info->update_func( ctx->md_ctx, input, ilen ); in mbedtls_md_update()
312 md_info->update_func( ctx.md_ctx, buf, n ); in mbedtls_md_file()
342 ctx->md_info->update_func( ctx->md_ctx, key, keylen ); in mbedtls_md_hmac_starts()
364 ctx->md_info->update_func( ctx->md_ctx, ipad, ctx->md_info->block_size ); in mbedtls_md_hmac_starts()
374 ctx->md_info->update_func( ctx->md_ctx, input, ilen ); in mbedtls_md_hmac_update()
391 ctx->md_info->update_func( ctx->md_ctx, opad, ctx->md_info->block_size ); in mbedtls_md_hmac_finish()
392 ctx->md_info->update_func( ctx->md_ctx, tmp, ctx->md_info->size ); in mbedtls_md_hmac_finish()
408 ctx->md_info->update_func( ctx->md_ctx, ipad, ctx->md_info->block_size ); in mbedtls_md_hmac_reset()
/dports/graphics/flif/FLIF-0.3-96-g74ea92b/src/
H A Dflif-pixbuf-loader.c47 GdkPixbufModuleUpdatedFunc update_func; member
150 … GdkPixbufModuleUpdatedFunc update_func, gpointer user_data, GError **error) { in gdk_pixbuf__flif_image_begin_load() argument
154 context->update_func = update_func; in gdk_pixbuf__flif_image_begin_load()
198 if (context->update_func) { in gdk_pixbuf__flif_image_stop_load()
199 … (* context->update_func) (context->pixbuf, 0, 0, context->w, context->h, context->user_data); in gdk_pixbuf__flif_image_stop_load()
/dports/emulators/yuzu/yuzu-0b47f7a46/externals/mbedtls/library/
H A Dmd.c260 return( ctx->md_info->update_func( ctx->md_ctx, input, ilen ) ); in mbedtls_md_update()
304 if( ( ret = md_info->update_func( ctx.md_ctx, buf, n ) ) != 0 ) in mbedtls_md_file()
335 if( ( ret = ctx->md_info->update_func( ctx->md_ctx, key, keylen ) ) != 0 ) in mbedtls_md_hmac_starts()
358 if( ( ret = ctx->md_info->update_func( ctx->md_ctx, ipad, in mbedtls_md_hmac_starts()
373 return( ctx->md_info->update_func( ctx->md_ctx, input, ilen ) ); in mbedtls_md_hmac_update()
391 if( ( ret = ctx->md_info->update_func( ctx->md_ctx, opad, in mbedtls_md_hmac_finish()
394 if( ( ret = ctx->md_info->update_func( ctx->md_ctx, tmp, in mbedtls_md_hmac_finish()
412 return( ctx->md_info->update_func( ctx->md_ctx, ipad, in mbedtls_md_hmac_reset()

12345678910>>...14