HomeSort by relevance Sort by last modified time
    Searched refs:AppendVarInt (Results 1 - 3 of 3) sorted by null

  /external/perfetto/src/protozero/
message_unittest.cc 114 msg->AppendVarInt(i, 42);
142 msg->AppendVarInt(1 /* field_id */, 0);
143 msg->AppendVarInt(2 /* field_id */, std::numeric_limits<uint32_t>::max());
144 msg->AppendVarInt(3 /* field_id */, 42);
145 msg->AppendVarInt(4 /* field_id */, std::numeric_limits<uint64_t>::max());
172 root_msg->AppendVarInt(1 /* field_id */, 1);
177 nested_msg->AppendVarInt(2 /* field_id */, 2);
181 nested_msg->AppendVarInt(4 /* field_id */, 2);
183 root_msg->AppendVarInt(5 /* field_id */, 3);
216 root_msg->AppendVarInt(1, 0x42)
    [all...]
  /external/perfetto/include/perfetto/protozero/
message.h 96 void AppendVarInt(uint32_t field_id, T value) {
112 AppendVarInt(field_id, proto_utils::ZigZagEncode(value));
116 // Faster version of AppendVarInt for tiny numbers.
  /external/perfetto/src/ftrace_reader/
cpu_reader.h 111 out->AppendVarInt<T>(field_id, t);
132 out->AppendVarInt<BlockDeviceID>(field_id, dev_id);

Completed in 553 milliseconds