Home | History | Annotate | Download | only in base

Lines Matching refs:static_cast

31   static_cast<uint8*>(memory)[offset] = v;
35 return static_cast<const uint8*>(memory)[offset];
39 Set8(memory, 0, static_cast<uint8>(v >> 8));
40 Set8(memory, 1, static_cast<uint8>(v >> 0));
44 Set8(memory, 0, static_cast<uint8>(v >> 24));
45 Set8(memory, 1, static_cast<uint8>(v >> 16));
46 Set8(memory, 2, static_cast<uint8>(v >> 8));
47 Set8(memory, 3, static_cast<uint8>(v >> 0));
51 Set8(memory, 0, static_cast<uint8>(v >> 56));
52 Set8(memory, 1, static_cast<uint8>(v >> 48));
53 Set8(memory, 2, static_cast<uint8>(v >> 40));
54 Set8(memory, 3, static_cast<uint8>(v >> 32));
55 Set8(memory, 4, static_cast<uint8>(v >> 24));
56 Set8(memory, 5, static_cast<uint8>(v >> 16));
57 Set8(memory, 6, static_cast<uint8>(v >> 8));
58 Set8(memory, 7, static_cast<uint8>(v >> 0));
62 return static_cast<uint16>((Get8(memory, 0) << 8) |
67 return (static_cast<uint32>(Get8(memory, 0)) << 24) |
68 (static_cast<uint32>(Get8(memory, 1)) << 16) |
69 (static_cast<uint32>(Get8(memory, 2)) << 8) |
70 (static_cast<uint32>(Get8(memory, 3)) << 0);
74 return (static_cast<uint64>(Get8(memory, 0)) << 56) |
75 (static_cast<uint64>(Get8(memory, 1)) << 48) |
76 (static_cast<uint64>(Get8(memory, 2)) << 40) |
77 (static_cast<uint64>(Get8(memory, 3)) << 32) |
78 (static_cast<uint64>(Get8(memory, 4)) << 24) |
79 (static_cast<uint64>(Get8(memory, 5)) << 16) |
80 (static_cast<uint64>(Get8(memory, 6)) << 8) |
81 (static_cast<uint64>(Get8(memory, 7)) << 0);
85 Set8(memory, 0, static_cast<uint8>(v >> 0));
86 Set8(memory, 1, static_cast<uint8>(v >> 8));
90 Set8(memory, 0, static_cast<uint8>(v >> 0));
91 Set8(memory, 1, static_cast<uint8>(v >> 8));
92 Set8(memory, 2, static_cast<uint8>(v >> 16));
93 Set8(memory, 3, static_cast<uint8>(v >> 24));
97 Set8(memory, 0, static_cast<uint8>(v >> 0));
98 Set8(memory, 1, static_cast<uint8>(v >> 8));
99 Set8(memory, 2, static_cast<uint8>(v >> 16));
100 Set8(memory, 3, static_cast<uint8>(v >> 24));
101 Set8(memory, 4, static_cast<uint8>(v >> 32));
102 Set8(memory, 5, static_cast<uint8>(v >> 40));
103 Set8(memory, 6, static_cast<uint8>(v >> 48));
104 Set8(memory, 7, static_cast<uint8>(v >> 56));
108 return static_cast<uint16>((Get8(memory, 0) << 0) |
113 return (static_cast<uint32>(Get8(memory, 0)) << 0) |
114 (static_cast<uint32>(Get8(memory, 1)) << 8) |
115 (static_cast<uint32>(Get8(memory, 2)) << 16) |
116 (static_cast<uint32>(Get8(memory, 3)) << 24);
120 return (static_cast<uint64>(Get8(memory, 0)) << 0) |
121 (static_cast<uint64>(Get8(memory, 1)) << 8) |
122 (static_cast<uint64>(Get8(memory, 2)) << 16) |
123 (static_cast<uint64>(Get8(memory, 3)) << 24) |
124 (static_cast<uint64>(Get8(memory, 4)) << 32) |
125 (static_cast<uint64>(Get8(memory, 5)) << 40) |
126 (static_cast<uint64>(Get8(memory, 6)) << 48) |
127 (static_cast<uint64>(Get8(memory, 7)) << 56);