Searched refs:old_keys (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/ |
D | identity-map.cc | 264 Object** old_keys = keys_; in Resize() local 279 if (old_keys[i] == not_mapped) continue; in Resize() 280 int index = InsertKey(old_keys[i]); in Resize() 286 heap_->UnregisterStrongRoots(old_keys); in Resize() 290 DeleteArray(old_keys); in Resize()
|
/external/u-boot/board/nokia/rx51/ |
D | rx51.c | 512 static u8 old_keys[8] = {0, 0, 0, 0, 0, 0, 0, 0}; variable 628 dk = ((keys[c] ^ old_keys[c])&keys[c]); in rx51_kp_tstc() 629 old_keys[c] = keys[c]; in rx51_kp_tstc()
|
/external/openssh/ |
D | clientloop.c | 2199 struct sshkey **old_keys; member 2215 sshkey_free(ctx->old_keys[i]); in hostkeys_update_ctx_free() 2216 free(ctx->old_keys); in hostkeys_update_ctx_free() 2245 if ((tmp = reallocarray(ctx->old_keys, ctx->nold + 1, in hostkeys_find() 2246 sizeof(*ctx->old_keys))) == NULL) in hostkeys_find() 2249 ctx->old_keys = tmp; in hostkeys_find() 2250 ctx->old_keys[ctx->nold++] = l->key; in hostkeys_find() 2276 if ((fp = sshkey_fingerprint(ctx->old_keys[i], in update_known_hosts() 2280 sshkey_type(ctx->old_keys[i]), fp); in update_known_hosts()
|
/external/python/cpython3/Lib/idlelib/ |
D | configdialog.py | 1531 old_keys = ( 1538 if value not in old_keys: 1539 if idleConf.GetOption('main', 'Keys', 'name') not in old_keys: 1540 changes.add_option('main', 'Keys', 'name', old_keys[0])
|