Lines Matching refs:bytes

36   ::bluetooth::Uuid::UUID128Bit bytes = uuid.To128BitBE();  in writeToParcel()
39 ((((uint64_t)bytes[0]) << 56) | (((uint64_t)bytes[1]) << 48) | in writeToParcel()
40 (((uint64_t)bytes[2]) << 40) | (((uint64_t)bytes[3]) << 32) | in writeToParcel()
41 (((uint64_t)bytes[4]) << 24) | (((uint64_t)bytes[5]) << 16) | in writeToParcel()
42 (((uint64_t)bytes[6]) << 8) | bytes[7]); in writeToParcel()
45 ((((uint64_t)bytes[8]) << 56) | (((uint64_t)bytes[9]) << 48) | in writeToParcel()
46 (((uint64_t)bytes[10]) << 40) | (((uint64_t)bytes[11]) << 32) | in writeToParcel()
47 (((uint64_t)bytes[12]) << 24) | (((uint64_t)bytes[13]) << 16) | in writeToParcel()
48 (((uint64_t)bytes[14]) << 8) | bytes[15]); in writeToParcel()
58 ::bluetooth::Uuid::UUID128Bit bytes; in readFromParcel()
67 bytes[0] = (most_sig_bits >> 56) & 0xFF; in readFromParcel()
68 bytes[1] = (most_sig_bits >> 48) & 0xFF; in readFromParcel()
69 bytes[2] = (most_sig_bits >> 40) & 0xFF; in readFromParcel()
70 bytes[3] = (most_sig_bits >> 32) & 0xFF; in readFromParcel()
71 bytes[4] = (most_sig_bits >> 24) & 0xFF; in readFromParcel()
72 bytes[5] = (most_sig_bits >> 16) & 0xFF; in readFromParcel()
73 bytes[6] = (most_sig_bits >> 8) & 0xFF; in readFromParcel()
74 bytes[7] = most_sig_bits & 0xFF; in readFromParcel()
76 bytes[8] = (least_sig_bits >> 56) & 0xFF; in readFromParcel()
77 bytes[9] = (least_sig_bits >> 48) & 0xFF; in readFromParcel()
78 bytes[10] = (least_sig_bits >> 40) & 0xFF; in readFromParcel()
79 bytes[11] = (least_sig_bits >> 32) & 0xFF; in readFromParcel()
80 bytes[12] = (least_sig_bits >> 24) & 0xFF; in readFromParcel()
81 bytes[13] = (least_sig_bits >> 16) & 0xFF; in readFromParcel()
82 bytes[14] = (least_sig_bits >> 8) & 0xFF; in readFromParcel()
83 bytes[15] = least_sig_bits & 0xFF; in readFromParcel()
85 uuid = ::bluetooth::Uuid::From128BitBE(bytes); in readFromParcel()