OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kRawBytes
(Results
1 - 2
of
2
) sorted by null
/external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc
615
const char
kRawBytes
[] = "Some bytes which will be written and read raw.";
618
memcpy(buffer_,
kRawBytes
, sizeof(
kRawBytes
));
620
char read_buffer[sizeof(
kRawBytes
)];
625
EXPECT_TRUE(coded_input.ReadRaw(read_buffer, sizeof(
kRawBytes
)));
626
EXPECT_EQ(0, memcmp(
kRawBytes
, read_buffer, sizeof(
kRawBytes
)));
629
EXPECT_EQ(sizeof(
kRawBytes
), input.ByteCount());
638
coded_output.WriteRaw(
kRawBytes
, sizeof(
kRawBytes
));
[
all
...]
/external/v8/src/
value-serializer.cc
138
kRawBytes
= 'y',
782
WasmEncodingTag encoding_tag = WasmEncodingTag::
kRawBytes
;
[
all
...]
Completed in 2264 milliseconds