Home
last modified time | relevance | path

Searched refs:blob_length (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/hardware/interfaces/keymaster/3.0/vts/functional/
H A Dauthorization_set.cpp211 auto blob_length = blob.size(); in serializeParamValue() local
212 if (blob_length > std::numeric_limits<uint32_t>::max()) { in serializeParamValue()
216 buffer = blob_length; in serializeParamValue()
223 blob_length) { // overflow check in serializeParamValue()
231 if (blob_length) out.indirect.write(reinterpret_cast<const char*>(&blob[0]), blob_length); in serializeParamValue()
321 uint32_t blob_length = 0; in deserializeParamValue() local
323 in.elements.read(reinterpret_cast<char*>(&blob_length), sizeof(uint32_t)); in deserializeParamValue()
324 blob->resize(blob_length); in deserializeParamValue()
/aosp_15_r20/hardware/interfaces/keymaster/4.0/support/
H A Dauthorization_set.cpp213 auto blob_length = blob.size(); in serializeParamValue() local
214 if (blob_length > std::numeric_limits<uint32_t>::max()) { in serializeParamValue()
218 buffer = blob_length; in serializeParamValue()
224 uint32_t(offset) + uint32_t(blob_length) < uint32_t(offset)) { // overflow check in serializeParamValue()
232 if (blob_length) out.indirect.write(reinterpret_cast<const char*>(&blob[0]), blob_length); in serializeParamValue()
336 uint32_t blob_length = 0; in deserializeParamValue() local
338 in.elements.read(reinterpret_cast<char*>(&blob_length), sizeof(uint32_t)); in deserializeParamValue()
339 blob->resize(blob_length); in deserializeParamValue()
/aosp_15_r20/external/harfbuzz_ng/src/
H A Dmain.cc89 unsigned blob_length = hb_blob_get_length (blob); in png_dump() local
91 if (blob_length != 0) in png_dump()
96 unsigned blob_length = 0; in png_dump() local
104 if (new_blob_length != blob_length) in png_dump()
126 blob_length = new_blob_length; in png_dump()
H A Dhb-ft.cc1598 unsigned int blob_length; in hb_ft_font_set_funcs() local
1599 const char *blob_data = hb_blob_get_data (blob, &blob_length); in hb_ft_font_set_funcs()
1600 if (unlikely (!blob_length)) in hb_ft_font_set_funcs()
1614 blob_length, in hb_ft_font_set_funcs()
H A Dhb-coretext-shape.cc177 unsigned int blob_length; in create_cg_font() local
178 const char *blob_data = hb_blob_get_data (blob, &blob_length); in create_cg_font()
179 if (unlikely (!blob_length)) in create_cg_font()
182 …CGDataProviderRef provider = CGDataProviderCreateWithData (blob, blob_data, blob_length, &release_… in create_cg_font()
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dblob.c378 blob_length(pysqlite_Blob *self) in blob_length() function
593 {Py_mp_length, blob_length},