Lines Matching refs:pts
269 let pts: i64 = 1627702096; in test_bit_opertion() localVariable
271 let val = ((pts << 1) & 0xFE) as u8; in test_bit_opertion()
273 println!("======={}=======", pts << 1); in test_bit_opertion()
280 let pts: i64 = 1627702096; in test_bit_opertion2() localVariable
282 …let b9 = ((flags >> 2) & 0x30)/* 0011/0010 */ | (((pts >> 30) & 0x07) << 1) as u8 /* PTS 30-32 */ … in test_bit_opertion2()
285 let b10 = (pts >> 22) as u8; /* PTS 22-29 */ in test_bit_opertion2()
288 let b11 = ((pts >> 14) & 0xFE) as u8 /* PTS 15-21 */ | 0x01; /* marker_bit */ in test_bit_opertion2()
291 let b12 = (pts >> 7) as u8; /* PTS 7-14 */ in test_bit_opertion2()
294 let b13 = ((pts << 1) & 0xFE) as u8 /* PTS 0-6 */ | 0x01; /* marker_bit */ in test_bit_opertion2()
301 let pts: i64 = 1627702096; in test_bit_opertion3() localVariable
303 let b12 = ((pts & 0x7fff) << 1) | 1; /* PTS 7-14 */ in test_bit_opertion3()