Home
last modified time | relevance | path

Searched refs:ht_weights (Results 1 – 5 of 5) sorted by relevance

/dports/math/plplot-ada/plplot-5.15.0/lib/nn/
H A Dnnpi.c458 hashtable* ht_weights; member
483 nn->ht_weights = ht_create_d2( size ); in nnhpi_create()
508 ht_process( nn->ht_weights, free_nn_weights ); in nnhpi_destroy()
509 ht_destroy( nn->ht_weights ); in nnhpi_destroy()
522 hashtable * ht_weights = nnhp->ht_weights; in nnhpi_interpolate() local
526 if ( ht_find( ht_weights, p ) != NULL ) in nnhpi_interpolate()
528 weights = ht_find( ht_weights, p ); in nnhpi_interpolate()
551 ht_insert( ht_weights, p, weights ); in nnhpi_interpolate()
901 ht = nn->ht_weights; in main()
/dports/math/plplot/plplot-5.15.0/lib/nn/
H A Dnnpi.c458 hashtable* ht_weights; member
483 nn->ht_weights = ht_create_d2( size ); in nnhpi_create()
508 ht_process( nn->ht_weights, free_nn_weights ); in nnhpi_destroy()
509 ht_destroy( nn->ht_weights ); in nnhpi_destroy()
522 hashtable * ht_weights = nnhp->ht_weights; in nnhpi_interpolate() local
526 if ( ht_find( ht_weights, p ) != NULL ) in nnhpi_interpolate()
528 weights = ht_find( ht_weights, p ); in nnhpi_interpolate()
551 ht_insert( ht_weights, p, weights ); in nnhpi_interpolate()
901 ht = nn->ht_weights; in main()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/grid/grid_gridding/nn/
H A Dnnpi.c781 hashtable* ht_weights; member
805 nn->ht_weights = ht_create_d2(size); in nnhpi_create()
830 ht_process(nn->ht_weights, free_nn_weights); in nnhpi_destroy()
831 ht_destroy(nn->ht_weights); in nnhpi_destroy()
844 hashtable* ht_weights = nnhpi->ht_weights; in nnhpi_interpolate() local
848 if (ht_find(ht_weights, p) != NULL) { in nnhpi_interpolate()
849 weights = ht_find(ht_weights, p); in nnhpi_interpolate()
866 ht_insert(ht_weights, p, weights); in nnhpi_interpolate()
1202 ht = nn->ht_weights; in main()
/dports/devel/pecl-swoole/swoole-4.8.5/ext-src/
H A Dswoole_redis_coro.cc3276 HashTable *ht_keys, *ht_weights = nullptr; in PHP_METHOD() local
3293 ht_weights = Z_ARRVAL_P(z_weights); in PHP_METHOD()
3294 if (zend_hash_num_elements(ht_weights) != keys_count) { in PHP_METHOD()
3350 if (ht_weights != nullptr) { in PHP_METHOD()
3353 SW_HASHTABLE_FOREACH_START(ht_weights, value) in PHP_METHOD()
3404 HashTable *ht_keys, *ht_weights = nullptr; in PHP_METHOD() local
3421 ht_weights = Z_ARRVAL_P(z_weights); in PHP_METHOD()
3422 if (zend_hash_num_elements(ht_weights) != keys_count) { in PHP_METHOD()
3479 if (ht_weights != nullptr) { in PHP_METHOD()
3482 SW_HASHTABLE_FOREACH_START(ht_weights, value) in PHP_METHOD()
/dports/databases/pecl-redis/redis-5.3.5/
H A Dredis_commands.c635 HashTable *ht_keys, *ht_weights=NULL; in redis_zinter_cmd() local
658 ht_weights = Z_ARRVAL_P(z_weights); in redis_zinter_cmd()
659 if (zend_hash_num_elements(ht_weights) != keys_count) { in redis_zinter_cmd()
724 if (ht_weights != NULL) { in redis_zinter_cmd()
728 ZEND_HASH_FOREACH_VAL(ht_weights, z_ele) { in redis_zinter_cmd()