Home
last modified time | relevance | path

Searched refs:key1 (Results 151 – 175 of 17106) sorted by path

12345678910>>...685

/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/ahash-0.6.3/src/
H A Daes_hash.rs52 pub fn new_with_keys(key1: u128, key2: u128) -> Self { in new_with_keys()
54 enc: key1, in new_with_keys()
56 key: key1 ^ key2, in new_with_keys()
62 let key1 = [rand_state.k0, rand_state.k1].convert(); in from_random_state() localVariable
65 enc: key1, in from_random_state()
67 key: key1 ^ key2, in from_random_state()
H A Dfallback_hash.rs35 pub fn new_with_keys(key1: u128, key2: u128) -> AHasher { in new_with_keys()
37 let key1: [u64; 2] = (key1 ^ pi[0]).convert(); in new_with_keys() localVariable
40 buffer: key1[0], in new_with_keys()
41 pad: key1[1], in new_with_keys()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/openssl-0.10.38/src/
H A Ddh.rs393 let key1 = dh1.generate_key().unwrap(); in test_dh_stored_restored() localVariable
397 .set_private_key(key1.private_key().to_owned().unwrap()) in test_dh_stored_restored()
400 assert_eq!(key1.public_key(), key2.public_key()); in test_dh_stored_restored()
401 assert_eq!(key1.private_key(), key2.private_key()); in test_dh_stored_restored()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/owning_ref-0.4.1/src/
H A Dlib.rs1905 let key1 = BoxRefMut::<String>::new(Box::new("foo".to_string())).map(|s| &s[..]); in borrow() localVariable
1908 hash.insert(key1, 42); in borrow()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/parking_lot_core-0.7.2/src/
H A Dparking_lot.rs432 fn lock_bucket_pair(key1: usize, key2: usize) -> (&'static Bucket, &'static Bucket) { in lock_bucket_pair()
436 let hash1 = hash(key1, hashtable.hash_bits); in lock_bucket_pair()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/parking_lot_core-0.8.5/src/
H A Dparking_lot.rs392 fn lock_bucket_pair(key1: usize, key2: usize) -> (&'static Bucket, &'static Bucket) { in lock_bucket_pair()
396 let hash1 = hash(key1, hashtable.hash_bits); in lock_bucket_pair()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/rand_chacha-0.3.1/src/
H A Dguts.rs247 let key1: Mach::u32x4 = m.read_le(&key[16..]); localVariable
250 c: key1.into(),
259 let key1: Mach::u32x4 = m.read_le(&key[16..]); localVariable
263 c: key1.into(),
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/slab-0.4.5/src/
H A Dlib.rs720 pub fn get2_mut(&mut self, key1: usize, key2: usize) -> Option<(&mut T, &mut T)> {
721 assert!(key1 != key2);
725 if key1 > key2 {
726 let (slice1, slice2) = self.entries.split_at_mut(key1);
731 entry1 = slice1.get_mut(key1);
832 pub unsafe fn get2_unchecked_mut(&mut self, key1: usize, key2: usize) -> (&mut T, &mut T) {
833 let ptr1 = self.entries.get_unchecked_mut(key1) as *mut Entry<T>;
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/slab-0.4.5/tests/
H A Dslab.rs214 let key1 = slab.insert(0); in retain() localVariable
223 assert_eq!(slab[key1], 0); in retain()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/tokio-util-0.6.9/tests/
H A Dtime_delay_queue.rs305 let key1 = queue.insert_at("foo", now + ms(64)); in remove_at_timer_wheel_threshold() localVariable
318 let entry = queue.remove(&key1).into_inner(); in remove_at_timer_wheel_threshold()
/dports/audio/noson-app/noson-app-4.5.0/gui/controls2_509/
H A Dnoson.qml461 // str format look like 'type0,sn0,key0|type1,sn1,key1'
/dports/audio/noson-app/noson-app-4.5.0/gui/controls2_515/
H A Dnoson.qml461 // str format look like 'type0,sn0,key0|type1,sn1,key1'
/dports/audio/picard/picard-release-2.6.2/test/
H A Dtest_settingsoverride.py43 override = SettingsOverride(config.setting, key1='newval2')
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/RoaringBitmap/roaring/
H A Dparallel.go491 var key1 uint16
494 key1 = ra1.getKeyAtIndex(idx1)
499 if key1 < key2 {
506 } else if key1 > key2 {
542 key1 = ra1.getKeyAtIndex(idx1)
543 for key1 <= last {
549 key1 = ra1.getKeyAtIndex(idx1)
562 var key1 uint16
565 key1 = ra1.getKeyAtIndex(idx1)
569 if key1 < key2 {
[all …]
/dports/audio/pms-devel/pms-c94e3c6/vendor/golang.org/x/net/context/
H A Dcontext_test.go301 type key1 int type
304 var k1 = key1(1)
/dports/audio/polyphone/polyphone-75a5e88/sources/editor/
H A Dpagetable.cpp1051 int key1 = _sf2->get(id, champ_keyRange).rValue.byLo; in keyPlayedInternal() local
1055 key1 = 0; in keyPlayedInternal()
1059 enlighted = enlighted || (qMin(key1, key2) <= _listKeyEnlighted.at(j) in keyPlayedInternal()
1060 && qMax(key1, key2) >= _listKeyEnlighted.at(j)); in keyPlayedInternal()
/dports/audio/praat/praat-6.2.03/external/glpk/
H A Dglpavl.c27 AVL *avl_create_tree(int (*fcmp)(void *info, const void *key1, in avl_create_tree() argument
41 int avl_strcmp(void *info, const void *key1, const void *key2) in avl_strcmp() argument
44 return strcmp(key1, key2); in avl_strcmp()
H A Dglpavl.h39 int (*fcmp)(void *info, const void *key1, const void *key2);
81 AVL *avl_create_tree(int (*fcmp)(void *info, const void *key1,
86 int avl_strcmp(void *info, const void *key1, const void *key2);
H A Dglpmpl03.c1641 static int compare_member_tuples(void *info, const void *key1, in compare_member_tuples() argument
1645 return compare_tuples((MPL *)info, (TUPLE *)key1, (TUPLE *)key2); in compare_member_tuples()
/dports/audio/pragha/pragha-1.3.3/src/
H A Dpragha-utils.c374 gchar *key1, *key2;
383 key1 = g_utf8_collate_key(str1, -1);
386 ret = strcmp(key1, key2);
388 g_free(key1);
/dports/audio/protracker/pt2-clone-1.37/pt_pal_editor/release/macos/pt_pal_editor-macos.app/Contents/Frameworks/SDL2.framework/Versions/A/Headers/
H A DSDL_opengl_glext.h9291 …GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
9298 …GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
/dports/audio/protracker/pt2-clone-1.37/release/macos/pt2-clone-macos.app/Contents/Frameworks/SDL2.framework/Versions/A/Headers/
H A DSDL_opengl_glext.h9294 …GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
9301 …GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
/dports/audio/protracker/pt2-clone-1.37/vs2019_project/pt2-clone/sdl/include/SDL2/
H A DSDL_opengl_glext.h9294 …GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
9301 …GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
/dports/audio/py-music21/music21-7.1.0/music21/musicxml/
H A DpartStaffExporter.py546 key1 = mxAttributes.find('key')
547 if key1:
548 key1.set('number', '1')
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/draft/
H A DXLocaleDistance.java453 String key1 = e1.getKey(); in addSubtables() local
454 final boolean desiredIsKey = desiredLang.equals(key1); in addSubtables()
482 String key1 = e1.getKey(); in addSubtables() local
483 final boolean desiredIsKey = desiredLang.equals(key1); in addSubtables()

12345678910>>...685