Home
last modified time | relevance | path

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

/DragonOS-0.1.7/kernel/src/libs/
Drbtree.rs1423 let mut m = RBTree::new(); in test_insert() localVariable
1424 assert_eq!(m.len(), 0); in test_insert()
1425 m.insert(1, 2); in test_insert()
1426 assert_eq!(m.len(), 1); in test_insert()
1427 m.insert(2, 4); in test_insert()
1428 assert_eq!(m.len(), 2); in test_insert()
1429 m.insert(2, 6); in test_insert()
1430 assert_eq!(m.len(), 3); in test_insert()
1431 assert_eq!(*m.get(&1).unwrap(), 2); in test_insert()
1432 assert_eq!(*m.get(&2).unwrap(), 4); in test_insert()
[all …]
Dlz4.c572 const U64 m = 0x0101010101010101ULL; in LZ4_NbCommonBytes()
574 return (unsigned)(((U64)((val & (m - 1)) * m)) >> 56); in LZ4_NbCommonBytes()
588 const U32 m = 0x01010101; in LZ4_NbCommonBytes()
589 return (unsigned)((((val - 1) ^ val) & (m - 1)) * m) >> 24; in LZ4_NbCommonBytes()
/DragonOS-0.1.7/kernel/src/common/math/
Dlibm.h12 uint64_t m; member
/DragonOS-0.1.7/user/libs/libc/src/include/export/
Dlibm.h16 uint64_t m;
/DragonOS-0.1.7/kernel/src/ipc/
Dsignal.rs569 let m = *sig_mask; in next_signal() localVariable
572 let x = s & (!m); in next_signal()