Home
last modified time | relevance | path

Searched refs:field_length (Results 1 – 4 of 4) sorted by relevance

/external/flac/src/libFLAC++/
Dmetadata.cpp539 VorbisComment::Entry::Entry(const char *field, uint32_t field_length) : in Entry() argument
548 construct(field, field_length); in Entry()
660 bool VorbisComment::Entry::set_field(const char *field, uint32_t field_length) in set_field() argument
665 …C__format_vorbiscomment_entry_is_legal(reinterpret_cast<const ::FLAC__byte*>(field), field_length)) in set_field()
670 if(0 == (entry_.entry = static_cast<FLAC__byte*>(safe_malloc_add_2op_(field_length, /*+*/1)))) { in set_field()
674 entry_.length = field_length; in set_field()
675 std::memcpy(entry_.entry, field, field_length); in set_field()
676 entry_.entry[field_length] = '\0'; in set_field()
783 void VorbisComment::Entry::construct(const char *field, uint32_t field_length) in construct() argument
785 if(set_field(field, field_length)) in construct()
/external/python/cpython3/Tools/gdb/
Dlibpython.py1194 field_length = long(compact['wstr_length'])
1198 field_length = long(ascii['length'])
1214 field_length = long(self.field('length'))
1221 Py_UNICODEs = [int(field_str[i]) for i in safe_range(field_length)]
1227 limit = safety_limit(field_length)
1231 if ucs < 0xD800 or ucs >= 0xDC00 or i == field_length:
/external/python/cpython2/Tools/gdb/
Dlibpython.py1109 field_length = long(self.field('length'))
1115 Py_UNICODEs = [int(field_str[i]) for i in safe_range(field_length)]
1121 limit = safety_limit(field_length)
1125 if ucs < 0xD800 or ucs >= 0xDC00 or i == field_length:
/external/flac/include/FLAC++/
Dmetadata.h593 Entry(const char *field, uint32_t field_length);
616 bool set_field(const char *field, uint32_t field_length);
634 void construct(const char *field, uint32_t field_length);