Home
last modified time | relevance | path

Searched refs:this_key (Results 1 – 25 of 117) sorted by relevance

12345

/dports/games/simutrans/simutrans-121.0/
H A Dsimsys_d.cc101 if (this_key > 0) { in END_OF_FUNCTION()
103 INSERT_EVENT(SIM_KEYBOARD, this_key); in END_OF_FUNCTION()
111 case KEY_PGUP: this_key = '>'; break; in END_OF_FUNCTION()
112 case KEY_PGDN: this_key = '<'; break; in END_OF_FUNCTION()
132 case KEY_F1: this_key = SIM_KEY_F1; break; in END_OF_FUNCTION()
133 case KEY_F2: this_key = SIM_KEY_F2; break; in END_OF_FUNCTION()
145 case KEY_ENTER_PAD: this_key = 13; break; in END_OF_FUNCTION()
146 case KEY_DEL: this_key = 127; break; in END_OF_FUNCTION()
147 case KEY_PAUSE: this_key = 16; break; in END_OF_FUNCTION()
154 return this_key; in END_OF_FUNCTION()
[all …]
/dports/mail/perdition/perdition-2.2/makegdbm/
H A Dmakegdbm.c152 datum this_key; in makegdbm_undo() local
166 this_key=gdbm_firstkey(dbf); in makegdbm_undo()
167 if(this_key.dptr==NULL){ in makegdbm_undo()
174 fwrite(this_key.dptr, 1, this_key.dsize, stdout); in makegdbm_undo()
176 content=gdbm_fetch(dbf,this_key); in makegdbm_undo()
182 next_key=gdbm_nextkey(dbf,this_key); in makegdbm_undo()
186 free(this_key.dptr); in makegdbm_undo()
187 this_key=next_key; in makegdbm_undo()
/dports/misc/visp/visp-3.4.0/3rdparty/apriltag/common/
H A Dzhash.cpp124 void *this_key = &zh->entries[entry_idx * zh->entrysz + 1]; in zhash_get_volatile() local
125 if (zh->equals(key, this_key)) { in zhash_get_volatile()
153 void *this_key = &zh->entries[entry_idx * zh->entrysz + 1]; in zhash_put() local
156 if (zh->equals(key, this_key)) { in zhash_put()
159 memcpy(oldkey, this_key, zh->keysz); in zhash_put()
162 memcpy(this_key, key, zh->keysz); in zhash_put()
209 void *this_key = &zh->entries[entry_idx * zh->entrysz + 1]; in zhash_remove() local
212 if (zh->equals(key, this_key)) { in zhash_remove()
214 memcpy(old_key, this_key, zh->keysz); in zhash_remove()
259 if (zhash_put(newhash, this_key, this_value, NULL, NULL)) in zhash_copy()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/cursor_order/
H A Dcursor_order_ops.c162 uint64_t i, initial_key_range, prev_key, this_key; in reverse_scan_op() local
170 prev_key = this_key = 0; in reverse_scan_op()
187 this_key = (uint64_t)atol(strkey); in reverse_scan_op()
190 cursor, (uint64_t *)&this_key)); in reverse_scan_op()
192 if (i == 0 && this_key < initial_key_range) in reverse_scan_op()
196 this_key, initial_key_range); in reverse_scan_op()
197 if (i != 0 && this_key >= prev_key) in reverse_scan_op()
201 this_key, prev_key); in reverse_scan_op()
202 prev_key = this_key; in reverse_scan_op()
/dports/devel/cvs-devel/cvs-1.12.13/windows-NT/
H A Dmkconfig.pl59 my ($case, $that, $this, $this_key, %this_macros) = @_;
60 my $type = $this_macros{$this_key}[1];
92 print $this, " line ", $this_macros{$this_key}[0], " has ", $type, " ",
93 $this_key, " not found in ", $that, "\n";
/dports/devel/py-pytools/pytools-2018.5/pytools/
H A Ddatatable.py210 this_key = this_row[this_key_idx]
213 run_this = this_key < other_key
214 run_other = this_key > other_key
215 if this_key == other_key:
219 key = this_key
220 while this_row[this_key_idx] == this_key:
/dports/math/R-cran-haven/haven/src/readstat/
H A DCKHashTable.c163 char *this_key = &table->keys[table->entries[hash_key].key_offset]; in ck_str_n_hash_lookup() local
167 if (this_keylen == keylen && memcmp(this_key, key, keylen) == 0) { in ck_str_n_hash_lookup()
228 char *this_key = &table->keys[entry->key_offset]; in ck_str_n_hash_insert() local
242 memcmp(this_key, key, keylen) == 0) { in ck_str_n_hash_insert()
300 char *this_key = &table->keys[old_entries[i].key_offset]; in ck_hash_table_grow() local
301 uint64_t hash_key = ck_hash_str(this_key, old_entries[i].key_length); in ck_hash_table_grow()
/dports/math/librdata/librdata-4a80bf3/src/
H A DCKHashTable.c163 char *this_key = &table->keys[table->entries[hash_key].key_offset]; in ck_str_n_hash_lookup() local
167 if (this_keylen == keylen && memcmp(this_key, key, keylen) == 0) { in ck_str_n_hash_lookup()
228 char *this_key = &table->keys[entry->key_offset]; in ck_str_n_hash_insert() local
242 memcmp(this_key, key, keylen) == 0) { in ck_str_n_hash_insert()
300 char *this_key = &table->keys[old_entries[i].key_offset]; in ck_hash_table_grow() local
301 uint64_t hash_key = ck_hash_str(this_key, old_entries[i].key_length); in ck_hash_table_grow()
/dports/net/samba412/samba-4.12.15/lib/dbwrap/
H A Ddbwrap_rbt.c137 TDB_DATA data, this_key, this_val; in db_rbt_storev() local
160 db_rbt_parse_node(rec_priv->node, &this_key, &this_val); in db_rbt_storev()
162 SMB_ASSERT(this_key.dsize == rec->key.dsize); in db_rbt_storev()
163 SMB_ASSERT(memcmp(this_key.dptr, rec->key.dptr, in db_rbt_storev()
164 this_key.dsize) == 0); in db_rbt_storev()
213 db_rbt_parse_node(node, &this_key, &this_val); in db_rbt_storev()
215 memcpy(this_key.dptr, rec->key.dptr, node->keysize); in db_rbt_storev()
238 res = db_rbt_compare(this_key, search_key); in db_rbt_storev()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/
H A DTableParser.pm441 my $this_key = $keys->{$name};
442 if ( $this_key->{name} eq 'PRIMARY' ) {
445 elsif ( $this_key->{is_unique} && !$this_key->{is_nullable} ) {
446 $clustered_key = $this_key->{name};
/dports/biology/sra-tools/sra-tools-2.11.0/ncbi-vdb/test/krypto/
H A Dtest-aes-ciphers.c98 bool this_key; in key_compare() local
100 this_key = ((control->rd_key[ix] == bswap_32(test->rd_key[ix])) || in key_compare()
103 passed_keys = passed_keys && this_key; in key_compare()
107 passed_string[this_key])); in key_compare()
/dports/biology/ncbi-vdb/ncbi-vdb-2.11.0/test/krypto/
H A Dtest-aes-ciphers.c98 bool this_key; in key_compare() local
100 this_key = ((control->rd_key[ix] == bswap_32(test->rd_key[ix])) || in key_compare()
103 passed_keys = passed_keys && this_key; in key_compare()
107 passed_string[this_key])); in key_compare()
/dports/net/ns3/ns-allinone-3.35/bake/bake/
H A DBake.py1421 for this_key in depend_keys:
1422 sysDep=systemDependencies[this_key]
1452 installerName = this_key
1463 returnValue= returnValue + this_key
1496 for this_key in depend_keys:
1501 if this_key in depen and isinstance(depen[this_key],bool)>0:
1502 if depen[this_key]:
1508 if this_key in fulldep and len(fulldep[this_key])>0:
1511 …listStr = listStr + self.deptree(fulldep, fulldep[this_key], this_key, has_passed, optional, paddi…
1515 if this_key in fulldep:
[all …]
/dports/net/p5-Net-SSH-Perl/Net-SSH-Perl-2.14/lib/Net/SSH/Perl/Cipher/
H A DDES3.pm36 my $this_key = $i == 3 && length($key) <= 16 ?
40 Crypt::Cipher::DES->new($this_key)
/dports/lang/parrot/parrot-8.1.0/lib/Parrot/Configure/
H A DTrace.pm96 my ($this_key, $this_value) = each %this;
102 name => $this_key,
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/uk/ac/sanger/artemis/io/
H A DSimpleEntryInformation.java125 final Key this_key = (Key)qualifier_valid_keys.get(i); in addQualifierInfo() local
127 if (valid_keys != null && valid_keys.contains (this_key)) { in addQualifierInfo()
135 valid_keys.add (this_key); in addQualifierInfo()
/dports/net/dgd-lpmud/mud/2.4.5/obj/
H A Ddoor.c219 tmp = this_key( type); in unlock()
249 tmp = this_key( type); in do_lock()
291 this_key( str) in this_key() function
/dports/devel/brz/breezy-3.2.0/breezy/
H A D_annotator_py.py123 this_key = record.key
126 self._text_cache[this_key] = lines
127 yield this_key, lines, num_lines
/dports/sysutils/tracker3/tracker-3.1.2/src/gvdb/
H A Dgvdb-reader.c214 const gchar *this_key; in gvdb_table_check_name() local
218 this_key = gvdb_table_item_get_key (file, item, &this_size); in gvdb_table_check_name()
220 if G_UNLIKELY (this_key == NULL || this_size > key_length) in gvdb_table_check_name()
225 if G_UNLIKELY (memcmp (this_key, key + key_length, this_size) != 0) in gvdb_table_check_name()
/dports/sysutils/tracker/tracker-2.3.4/src/gvdb/
H A Dgvdb-reader.c214 const gchar *this_key; in gvdb_table_check_name() local
218 this_key = gvdb_table_item_get_key (file, item, &this_size); in gvdb_table_check_name()
220 if G_UNLIKELY (this_key == NULL || this_size > key_length) in gvdb_table_check_name()
225 if G_UNLIKELY (memcmp (this_key, key + key_length, this_size) != 0) in gvdb_table_check_name()
/dports/games/ldmud/ldmud-3.3.720/mud/lp-245/obj/
H A Ddoor.c419 int this_key(string str) in this_key() function
492 tmp = this_key( type); in unlock()
546 tmp = this_key( type); in lock()
/dports/audio/gnupod/gnupod-0.99.8/src/ext/
H A DHash58.pm102 my $this_key = CreateKey($fwref);
103 my $this_hash = CreateHash(Keyref=>$this_key, Filepath=>$file);
/dports/devel/dconf/dconf-0.40.0/gvdb/
H A Dgvdb-reader.c246 const gchar *this_key; in gvdb_table_check_name() local
250 this_key = gvdb_table_item_get_key (file, item, &this_size); in gvdb_table_check_name()
252 if G_UNLIKELY (this_key == NULL || this_size > key_length) in gvdb_table_check_name()
257 if G_UNLIKELY (memcmp (this_key, key + key_length, this_size) != 0) in gvdb_table_check_name()
/dports/devel/glib20/glib-2.70.4/gio/gvdb/
H A Dgvdb-reader.c246 const gchar *this_key; in gvdb_table_check_name() local
250 this_key = gvdb_table_item_get_key (file, item, &this_size); in gvdb_table_check_name()
252 if G_UNLIKELY (this_key == NULL || this_size > key_length) in gvdb_table_check_name()
257 if G_UNLIKELY (memcmp (this_key, key + key_length, this_size) != 0) in gvdb_table_check_name()
/dports/www/epiphany/epiphany-41.0/third-party/gvdb/
H A Dgvdb-reader.c246 const gchar *this_key; in gvdb_table_check_name() local
250 this_key = gvdb_table_item_get_key (file, item, &this_size); in gvdb_table_check_name()
252 if G_UNLIKELY (this_key == NULL || this_size > key_length) in gvdb_table_check_name()
257 if G_UNLIKELY (memcmp (this_key, key + key_length, this_size) != 0) in gvdb_table_check_name()

12345