HomeSort by relevance Sort by last modified time
    Searched defs:uoffset_t (Results 1 - 2 of 2) sorted by null

  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 119 typedef uint32_t uoffset_t; typedef in namespace:flatbuffers
142 // Wrapper for uoffset_t to allow safe template specialization.
144 uoffset_t o;
146 Offset(uoffset_t _o) : o(_o) {}
229 static return_type Read(const uint8_t *p, uoffset_t i) {
236 static const size_t element_stride = sizeof(uoffset_t);
237 static return_type Read(const uint8_t *p, uoffset_t i) {
238 p += i * sizeof(uoffset_t);
239 return reinterpret_cast<return_type>(p + ReadScalar<uoffset_t>(p));
246 static return_type Read(const uint8_t *p, uoffset_t i)
    [all...]
  /system/chre/external/flatbuffers/include/flatbuffers/
flatbuffers.h 149 typedef uint32_t uoffset_t; typedef in namespace:flatbuffers
172 // Wrapper for uoffset_t to allow safe template specialization.
174 uoffset_t o;
176 Offset(uoffset_t _o) : o(_o) {}
259 static return_type Read(const uint8_t *p, uoffset_t i) {
266 static const size_t element_stride = sizeof(uoffset_t);
267 static return_type Read(const uint8_t *p, uoffset_t i) {
268 p += i * sizeof(uoffset_t);
269 return reinterpret_cast<return_type>(p + ReadScalar<uoffset_t>(p));
276 static return_type Read(const uint8_t *p, uoffset_t i)
    [all...]

Completed in 82 milliseconds