Home
last modified time | relevance | path

Searched refs:key_val (Results 1 – 25 of 871) sorted by relevance

12345678910>>...35

/dports/databases/grass7/grass-7.8.6/vector/v.external.out/
H A Dstatus.c44 struct Key_Value *key_val; in print_status_file() local
50 key_val = G_fread_key_value(fp); in print_status_file()
57 for (i = 0; i < key_val->nitems; i++) in print_status_file()
58 print_key_value(key_val->key[i], key_val->value[i], shell); in print_status_file()
60 G_free_key_value(key_val); in print_status_file()
70 struct Key_Value *key_val; in save_status_file() local
83 key_val = G_fread_key_value(fp_input); in save_status_file()
97 G_free_key_value(key_val); in save_status_file()
114 p = G_find_key_value("dsn", key_val); in check_required_options()
138 struct Key_Value *key_val; in read_status_file() local
[all …]
H A Dlink.c19 struct Key_Value *key_val; in make_link() local
21 key_val = G_create_key_value(); in make_link()
64 G_set_key_value(key, value, key_val); in make_link()
71 G_set_key_value("dsn", dsn, key_val); in make_link()
73 G_set_key_value("conninfo", dsn, key_val); in make_link()
78 G_set_key_value("format", format, key_val); in make_link()
80 G_set_key_value("options", option_str, key_val); in make_link()
83 G_set_key_value("format", "PostgreSQL", key_val); in make_link()
90 if (G_fwrite_key_value(fp, key_val) < 0) in make_link()
97 G_find_key_value("format", key_val)); in make_link()
[all …]
/dports/graphics/clutter/clutter-1.26.4/clutter/
H A Dclutter-binding-pool.c142 guint key_val; member
169 h = e->key_val; in binding_entry_hash()
182 return (e1->key_val == e2->key_val && e1->modifiers == e2->modifiers); in binding_entry_compare()
195 entry->key_val = key_val; in binding_entry_new()
211 lookup_entry.key_val = key_val; in binding_pool_lookup_entry()
488 g_return_if_fail (key_val != 0); in clutter_binding_pool_install_action()
555 g_return_if_fail (key_val != 0); in clutter_binding_pool_install_closure()
619 g_return_if_fail (key_val != 0); in clutter_binding_pool_override_action()
680 g_return_if_fail (key_val != 0); in clutter_binding_pool_override_closure()
767 remove_entry.key_val = key_val; in clutter_binding_pool_remove_action()
[all …]
H A Dclutter-binding-pool.h70 guint key_val,
87 guint key_val,
95 guint key_val,
100 guint key_val,
107 guint key_val,
113 guint key_val,
117 guint key_val,
122 guint key_val,
/dports/x11-wm/mutter/mutter-41.1/clutter/clutter/
H A Dclutter-binding-pool.c140 guint key_val; member
167 h = e->key_val; in binding_entry_hash()
180 return (e1->key_val == e2->key_val && e1->modifiers == e2->modifiers); in binding_entry_compare()
193 entry->key_val = key_val; in binding_entry_new()
209 lookup_entry.key_val = key_val; in binding_pool_lookup_entry()
485 g_return_if_fail (key_val != 0); in clutter_binding_pool_install_action()
552 g_return_if_fail (key_val != 0); in clutter_binding_pool_install_closure()
616 g_return_if_fail (key_val != 0); in clutter_binding_pool_override_action()
677 g_return_if_fail (key_val != 0); in clutter_binding_pool_override_closure()
764 remove_entry.key_val = key_val; in clutter_binding_pool_remove_action()
[all …]
H A Dclutter-binding-pool.h70 guint key_val,
87 guint key_val,
95 guint key_val,
100 guint key_val,
107 guint key_val,
113 guint key_val,
117 guint key_val,
122 guint key_val,
/dports/x11-wm/muffin/muffin-4.8.0/clutter/clutter/
H A Dclutter-binding-pool.c142 guint key_val; member
169 h = e->key_val; in binding_entry_hash()
182 return (e1->key_val == e2->key_val && e1->modifiers == e2->modifiers); in binding_entry_compare()
195 entry->key_val = key_val; in binding_entry_new()
211 lookup_entry.key_val = key_val; in binding_pool_lookup_entry()
488 g_return_if_fail (key_val != 0); in clutter_binding_pool_install_action()
555 g_return_if_fail (key_val != 0); in clutter_binding_pool_install_closure()
619 g_return_if_fail (key_val != 0); in clutter_binding_pool_override_action()
680 g_return_if_fail (key_val != 0); in clutter_binding_pool_override_closure()
767 remove_entry.key_val = key_val; in clutter_binding_pool_remove_action()
[all …]
H A Dclutter-binding-pool.h70 guint key_val,
87 guint key_val,
95 guint key_val,
100 guint key_val,
107 guint key_val,
113 guint key_val,
117 guint key_val,
122 guint key_val,
/dports/misc/mc/mc-4.8.27/lib/skin/
H A Dcolors-old.c158 gchar **key_val; in mc_skin_colors_old_configure_one() local
161 key_val = g_strsplit_set (*colors, "=,", 4); in mc_skin_colors_old_configure_one()
163 if (key_val == NULL) in mc_skin_colors_old_configure_one()
166 if (key_val[1] != NULL && mc_skin_colors_old_transform (key_val[0], &skin_group, &skin_key)) in mc_skin_colors_old_configure_one()
170 if (key_val[2] == NULL) in mc_skin_colors_old_configure_one()
171 skin_val = g_strdup_printf ("%s;", key_val[1]); in mc_skin_colors_old_configure_one()
172 else if (key_val[3] == NULL) in mc_skin_colors_old_configure_one()
173 skin_val = g_strdup_printf ("%s;%s", key_val[1], key_val[2]); in mc_skin_colors_old_configure_one()
175 skin_val = g_strdup_printf ("%s;%s;%s", key_val[1], key_val[2], key_val[3]); in mc_skin_colors_old_configure_one()
181 g_strfreev (key_val); in mc_skin_colors_old_configure_one()
/dports/misc/mc-nox11/mc-4.8.27/lib/skin/
H A Dcolors-old.c158 gchar **key_val; in mc_skin_colors_old_configure_one() local
161 key_val = g_strsplit_set (*colors, "=,", 4); in mc_skin_colors_old_configure_one()
163 if (key_val == NULL) in mc_skin_colors_old_configure_one()
166 if (key_val[1] != NULL && mc_skin_colors_old_transform (key_val[0], &skin_group, &skin_key)) in mc_skin_colors_old_configure_one()
170 if (key_val[2] == NULL) in mc_skin_colors_old_configure_one()
171 skin_val = g_strdup_printf ("%s;", key_val[1]); in mc_skin_colors_old_configure_one()
172 else if (key_val[3] == NULL) in mc_skin_colors_old_configure_one()
173 skin_val = g_strdup_printf ("%s;%s", key_val[1], key_val[2]); in mc_skin_colors_old_configure_one()
175 skin_val = g_strdup_printf ("%s;%s;%s", key_val[1], key_val[2], key_val[3]); in mc_skin_colors_old_configure_one()
181 g_strfreev (key_val); in mc_skin_colors_old_configure_one()
/dports/databases/grass7/grass-7.8.6/vector/v.out.postgis/
H A Dcreate.c20 struct Key_Value *key_val; in create_pgfile() local
33 key_val = G_create_key_value(); in create_pgfile()
50 G_set_key_value("conninfo", conninfo, key_val); in create_pgfile()
52 G_set_key_value("schema", schema, key_val); in create_pgfile()
54 G_set_key_value("topology", "yes", key_val); in create_pgfile()
80 G_set_key_value(tokens[0], tokens[1], key_val); in create_pgfile()
92 if (epsg && !G_find_key_value("srid", key_val)) in create_pgfile()
93 G_set_key_value("srid", epsg, key_val); in create_pgfile()
97 G_set_key_value("link", "yes", key_val); in create_pgfile()
101 G_set_key_value("link", "no", key_val); in create_pgfile()
[all …]
/dports/www/py-bottle-cork/bottle-cork-0.12.0/cork/
H A Dmongodb_backend.py66 def pop(self, key_val): argument
68 r = self[key_val]
81 def __setitem__(self, key_val, data): argument
83 spec = {self._key_name: key_val}
90 def __getitem__(self, key_val): argument
93 raise KeyError(key_val)
125 def __setitem__(self, key_val, data): argument
131 data[key_name] = key_val
133 spec = {key_name: key_val}
142 def __getitem__(self, key_val): argument
[all …]
/dports/net/kamailio/kamailio-5.4.5/src/modules/ss7ops/
H A Disup_parsed.c36 struct key_val { struct
41 static const struct key_val itu_cause_class[] = { argument
53 static const struct key_val cause_value[] = {
128 static const struct key_val cause_std[] = {
148 static const struct key_val event_info[] = {
158 static const struct key_val nai_vals[] = {
171 static const struct key_val inn_vals[] = {
177 static const struct key_val ni_vals[] = {
183 static const struct key_val npi_vals[] = {
266 static const struct key_val fwc_iw_vals[] = {
[all …]
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/utilities/
H A Dkey_utils.py66 def format_slice(key_val, dim, axis) -> Optional[slice]: argument
78 if key_val is None:
80 elif isinstance(key_val, slice):
81 step = to_int(key_val.step, 1)
85 start = np.clip(wrap_neg_index(to_int(key_val.start, 0), dim), 0, dim)
86 stop = np.clip(wrap_neg_index(to_int(key_val.stop, dim), dim), 0, dim)
88 start = np.clip(wrap_neg_index(to_int(key_val.start, dim-1), dim), -1, dim-1)
93 orig_key_val = to_int(key_val)
94 key_val = wrap_neg_index(orig_key_val, dim)
95 if 0 <= key_val < dim:
[all …]
/dports/databases/grass7/grass-7.8.6/raster/r.external/
H A Dlink.c124 G_set_key_value("file", input, key_val); in make_link()
125 G_set_key_value("band", band_str, key_val); in make_link()
126 G_set_key_value("null", null_str, key_val); in make_link()
129 G_set_key_value("hflip", "yes", key_val); in make_link()
131 G_set_key_value("vflip", "yes", key_val); in make_link()
137 if (G_fwrite_key_value(fp, key_val) < 0) in make_link()
145 struct Key_Value *key_val; in write_fp_format() local
152 key_val = G_create_key_value(); in write_fp_format()
157 G_set_key_value("type", type, key_val); in write_fp_format()
165 if (G_fwrite_key_value(fp, key_val) < 0) in write_fp_format()
[all …]
/dports/dns/knot3-lib/knot-3.1.5/src/knot/updates/
H A Dacl.c175 while (key_val->code == KNOT_EOK) { in check_addr_key()
182 const knot_dname_t *key_name = conf_dname(key_val); in check_addr_key()
188 conf_val_t alg_val = conf_id_get(conf, C_KEY, C_ALG, key_val); in check_addr_key()
196 assert(!(key_val->item->flags & YP_FMULTI)); in check_addr_key()
197 key_val->code = KNOT_EOF; in check_addr_key()
200 assert(key_val->item->flags & YP_FMULTI); in check_addr_key()
201 conf_val_next(key_val); in check_addr_key()
204 switch (key_val->code) { in check_addr_key()
236 conf_val_t addr_val, key_val; in acl_allowed() local
239 key_val = conf_id_get(conf, C_RMT, C_KEY, &rmt_val); in acl_allowed()
[all …]
/dports/dns/knot3/knot-3.1.5/src/knot/updates/
H A Dacl.c175 while (key_val->code == KNOT_EOK) { in check_addr_key()
182 const knot_dname_t *key_name = conf_dname(key_val); in check_addr_key()
188 conf_val_t alg_val = conf_id_get(conf, C_KEY, C_ALG, key_val); in check_addr_key()
196 assert(!(key_val->item->flags & YP_FMULTI)); in check_addr_key()
197 key_val->code = KNOT_EOF; in check_addr_key()
200 assert(key_val->item->flags & YP_FMULTI); in check_addr_key()
201 conf_val_next(key_val); in check_addr_key()
204 switch (key_val->code) { in check_addr_key()
236 conf_val_t addr_val, key_val; in acl_allowed() local
239 key_val = conf_id_get(conf, C_RMT, C_KEY, &rmt_val); in acl_allowed()
[all …]
/dports/databases/grass7/grass-7.8.6/lib/raster/
H A Dgdal.c254 struct Key_Value *key_val; in Rast_get_gdal_link() local
269 key_val = G_fread_key_value(fp); in Rast_get_gdal_link()
272 if (!key_val) in Rast_get_gdal_link()
279 p = G_find_key_value("band", key_val); in Rast_get_gdal_link()
286 p = G_find_key_value("null", key_val); in Rast_get_gdal_link()
377 struct Key_Value *key_val; in read_gdal_options() local
383 key_val = G_fread_key_value(fp); in read_gdal_options()
410 G_free_key_value(key_val); in read_gdal_options()
431 struct Key_Value *key_val; in Rast_create_gdal_link() local
550 key_val = G_create_key_value(); in Rast_create_gdal_link()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/crypto/qat/qat_common/
H A Dadf_cfg.c222 struct adf_cfg_key_val *key_val; in adf_cfg_add_key_value_param() local
228 key_val = kzalloc(sizeof(*key_val), GFP_KERNEL); in adf_cfg_add_key_value_param()
229 if (!key_val) in adf_cfg_add_key_value_param()
232 INIT_LIST_HEAD(&key_val->list); in adf_cfg_add_key_value_param()
233 strlcpy(key_val->key, key, sizeof(key_val->key)); in adf_cfg_add_key_value_param()
236 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES, in adf_cfg_add_key_value_param()
239 strlcpy(key_val->val, (char *)val, sizeof(key_val->val)); in adf_cfg_add_key_value_param()
241 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES, in adf_cfg_add_key_value_param()
245 kfree(key_val); in adf_cfg_add_key_value_param()
248 key_val->type = type; in adf_cfg_add_key_value_param()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/crypto/qat/qat_common/
H A Dadf_cfg.c222 struct adf_cfg_key_val *key_val; in adf_cfg_add_key_value_param() local
228 key_val = kzalloc(sizeof(*key_val), GFP_KERNEL); in adf_cfg_add_key_value_param()
229 if (!key_val) in adf_cfg_add_key_value_param()
232 INIT_LIST_HEAD(&key_val->list); in adf_cfg_add_key_value_param()
233 strlcpy(key_val->key, key, sizeof(key_val->key)); in adf_cfg_add_key_value_param()
236 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES, in adf_cfg_add_key_value_param()
239 strlcpy(key_val->val, (char *)val, sizeof(key_val->val)); in adf_cfg_add_key_value_param()
241 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES, in adf_cfg_add_key_value_param()
245 kfree(key_val); in adf_cfg_add_key_value_param()
248 key_val->type = type; in adf_cfg_add_key_value_param()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/crypto/qat/qat_common/
H A Dadf_cfg.c222 struct adf_cfg_key_val *key_val; in adf_cfg_add_key_value_param() local
228 key_val = kzalloc(sizeof(*key_val), GFP_KERNEL); in adf_cfg_add_key_value_param()
229 if (!key_val) in adf_cfg_add_key_value_param()
232 INIT_LIST_HEAD(&key_val->list); in adf_cfg_add_key_value_param()
233 strlcpy(key_val->key, key, sizeof(key_val->key)); in adf_cfg_add_key_value_param()
236 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES, in adf_cfg_add_key_value_param()
239 strlcpy(key_val->val, (char *)val, sizeof(key_val->val)); in adf_cfg_add_key_value_param()
241 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES, in adf_cfg_add_key_value_param()
245 kfree(key_val); in adf_cfg_add_key_value_param()
248 key_val->type = type; in adf_cfg_add_key_value_param()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/util/profile/
H A Drtprofile.cpp83 AddUserKV( key_name, key_val); in AddUserKV()
88 AddUserKV( key_name, key_val); in AddUserKVMT()
92 std::string key_val = NStr::NumericToString( int_val ); in AddUserKV() local
93 AddUserKV( key_name, key_val); in AddUserKV()
96 std::string key_val = NStr::NumericToString( int_val ); in AddUserKVMT() local
98 AddUserKV( key_name, key_val); in AddUserKVMT()
103 AddUserKV( key_name, key_val); in AddUserKVMT()
107 m_user_data.push_back( std::make_pair( key_name, key_val) ); in AddUserKV()
181 string key_val = user_it->second; in DoReport() local
182 if( key_val.empty() ) key_val = "NOT_SET"; in DoReport()
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/util/profile/
H A Drtprofile.cpp83 AddUserKV( key_name, key_val); in AddUserKV()
88 AddUserKV( key_name, key_val); in AddUserKVMT()
92 std::string key_val = NStr::NumericToString( int_val ); in AddUserKV() local
93 AddUserKV( key_name, key_val); in AddUserKV()
96 std::string key_val = NStr::NumericToString( int_val ); in AddUserKVMT() local
98 AddUserKV( key_name, key_val); in AddUserKVMT()
103 AddUserKV( key_name, key_val); in AddUserKVMT()
107 m_user_data.push_back( std::make_pair( key_name, key_val) ); in AddUserKV()
181 string key_val = user_it->second; in DoReport() local
182 if( key_val.empty() ) key_val = "NOT_SET"; in DoReport()
[all …]
/dports/net/openmpi/openmpi-4.1.1/opal/mca/pmix/pmix3x/pmix/contrib/perf_tools/
H A Dpmi2.c83 void pmi_put_key_loc(char *key, int *key_val, int key_size) in pmi_put_key_loc() argument
85 char *encoded = pmi_encode(key_val, key_size * sizeof(int)); in pmi_put_key_loc()
93 void pmi_put_key_rem(char *key, int *key_val, int key_size) in pmi_put_key_rem() argument
95 char *encoded = pmi_encode(key_val, key_size * sizeof(int)); in pmi_put_key_rem()
132 void pmi_get_key_loc(int rank, char *key_name, int **key_val, int *key_size) in pmi_get_key_loc() argument
146 *key_val = (int*)pmi_decode(tmp, &tmp_size); in pmi_get_key_loc()
149 if( NULL == *key_val ){ in pmi_get_key_loc()
156 void pmi_get_key_rem(int rank, char *key_name, int **key_val, int *key_size) in pmi_get_key_rem() argument
167 *key_val = (int*)pmi_decode(tmp, &tmp_size); in pmi_get_key_rem()
170 if( NULL == *key_val ){ in pmi_get_key_rem()
/dports/net/openmpi3/openmpi-3.1.6/opal/mca/pmix/pmix2x/pmix/contrib/perf_tools/
H A Dpmi2.c78 void pmi_put_key_loc(char *key, int *key_val, int key_size) in pmi_put_key_loc() argument
80 char *encoded = pmi_encode(key_val, key_size * sizeof(int)); in pmi_put_key_loc()
88 void pmi_put_key_rem(char *key, int *key_val, int key_size) in pmi_put_key_rem() argument
90 char *encoded = pmi_encode(key_val, key_size * sizeof(int)); in pmi_put_key_rem()
127 void pmi_get_key_loc(int rank, char *key_name, int **key_val, int *key_size) in pmi_get_key_loc() argument
141 *key_val = (int*)pmi_decode(tmp, &tmp_size); in pmi_get_key_loc()
144 if( NULL == *key_val ){ in pmi_get_key_loc()
151 void pmi_get_key_rem(int rank, char *key_name, int **key_val, int *key_size) in pmi_get_key_rem() argument
162 *key_val = (int*)pmi_decode(tmp, &tmp_size); in pmi_get_key_rem()
165 if( NULL == *key_val ){ in pmi_get_key_rem()

12345678910>>...35