Home | History | Annotate | Download | only in src

Lines Matching refs:integer

1206 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) {
1207 ASSERT(integer < 1 << 22);
1208 integer <<= 2;
1210 if (integer > 0xff) bytes = 2;
1211 if (integer > 0xffff) bytes = 3;
1212 integer |= bytes;
1213 Put(static_cast<int>(integer & 0xff), "IntPart1");
1214 if (bytes > 1) Put(static_cast<int>((integer >> 8) & 0xff), "IntPart2");
1215 if (bytes > 2) Put(static_cast<int>((integer >> 16) & 0xff), "IntPart3");