Searched refs:EncodeInt32 (Results 1 - 9 of 9) sorted by relevance
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | cbor_test.cc | 116 // EncodeInt32 / CBORTokenTag::INT32 119 // This roundtrips the int32_t value 23 through the pair of EncodeInt32 / in TEST() 122 EncodeInt32(23, &encoded); in TEST() 136 // This roundtrips the int32_t value 42 through the pair of EncodeInt32 / in TEST() 140 EncodeInt32(42, &encoded); in TEST() 156 EncodeInt32(500, &encoded); in TEST() 176 EncodeInt32(std::numeric_limits<int32_t>::max(), &encoded); in TEST() 197 EncodeInt32(std::numeric_limits<int32_t>::min(), &encoded); in TEST() 219 // it with EncodeInt32. However, CBOR does support this, so we in TEST() 267 // This roundtrips the int32_t value -24 through the pair of EncodeInt32 / in TEST() [all...] |
H A D | cbor.h | 79 void EncodeInt32(int32_t value, std::vector<uint8_t>* out);
|
H A D | dispatch_test.cc | 207 cbor::EncodeInt32(42, &cbor); in TEST() 247 cbor::EncodeInt32(42, &cbor); in TEST()
|
H A D | protocol_core.cc | 171 cbor::EncodeInt32(value, bytes); in Serialize()
|
H A D | cbor.cc | 248 void EncodeInt32(int32_t value, std::vector<uint8_t>* out) { in EncodeInt32() function 453 EncodeInt32(value, out_);
|
H A D | protocol_core_test.cc | 108 crdtp::cbor::EncodeInt32( in TEST()
|
/third_party/node/tools/inspector_protocol/encoding/ |
H A D | encoding_test.cc | 161 // EncodeInt32 / CBORTokenTag::INT32 164 // This roundtrips the int32_t value 23 through the pair of EncodeInt32 / in TEST() 167 EncodeInt32(23, &encoded); in TEST() 181 // This roundtrips the int32_t value 42 through the pair of EncodeInt32 / in TEST() 185 EncodeInt32(42, &encoded); in TEST() 201 EncodeInt32(500, &encoded); in TEST() 221 EncodeInt32(std::numeric_limits<int32_t>::max(), &encoded); in TEST() 242 EncodeInt32(std::numeric_limits<int32_t>::min(), &encoded); in TEST() 264 // it with EncodeInt32. However, CBOR does support this, so we in TEST() 312 // This roundtrips the int32_t value -24 through the pair of EncodeInt32 / in TEST() [all...] |
H A D | encoding.h | 211 void EncodeInt32(int32_t value, std::vector<uint8_t>* out); 212 void EncodeInt32(int32_t value, std::string* out);
|
H A D | encoding.cc | 326 void EncodeInt32(int32_t value, std::vector<uint8_t>* out) { in EncodeInt32() function 329 void EncodeInt32(int32_t value, std::string* out) { in EncodeInt32() function 589 EncodeInt32(value, out_);
|
Completed in 12 milliseconds