Home
last modified time | relevance | path

Searched refs:value_bytes (Results 1 – 7 of 7) sorted by relevance

/third_party/flatbuffers/tests/
Dpy_flexbuffers_test.py111 value_bytes = value.encode('utf-8')
112 return [*uint_bytes(len(value_bytes), byte_width), *value_bytes, 0]
525 value_bytes = value.encode('utf-8')
531 *uint_bytes(len(value_bytes), lbw),
532 *value_bytes,
535 *uint_bytes(len(value_bytes) + 1, bw), # offset
611 value_bytes = value.encode('ascii')
614 *value_bytes,
617 *uint_bytes(len(value_bytes) + 1, bw),
/third_party/protobuf/python/google/protobuf/internal/
Dpython_message.py1077 for tag_bytes, value_bytes in self._unknown_fields:
1078 size += len(tag_bytes) + len(value_bytes)
1127 for tag_bytes, value_bytes in self._unknown_fields:
1129 write_bytes(value_bytes)
/third_party/sqlite/include/
Dsqlite3ext.h149 int (*value_bytes)(sqlite3_value*); member
489 #define sqlite3_value_bytes sqlite3_api->value_bytes
/third_party/boost/boost/interprocess/detail/
Dsegment_manager_helper.hpp112 size_type value_bytes() const in value_bytes() function
/third_party/boost/boost/interprocess/
Dsegment_manager.hpp819 BOOST_ASSERT((ctrl_data->value_bytes() %sizeofvalue) == 0); in priv_get_instance_length()
820 return ctrl_data->value_bytes()/sizeofvalue; in priv_get_instance_length()
/third_party/python/Lib/test/
Dtest_os.py1083 value_bytes = value.encode(sys.getfilesystemencoding(),
1091 self.assertEqual(os.environb[b'unicode'], value_bytes)
/third_party/sqlite/src/
Dsqlite3.c127920 int (*value_bytes)(sqlite3_value*);
128256 #define sqlite3_value_bytes sqlite3_api->value_bytes