Searched refs:blob_length (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/hardware/interfaces/keymaster/3.0/vts/functional/ |
H A D | authorization_set.cpp | 211 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 D | authorization_set.cpp | 213 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 D | main.cc | 89 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 D | hb-ft.cc | 1598 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 D | hb-coretext-shape.cc | 177 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/ |
D | blob.c | 378 blob_length(pysqlite_Blob *self) in blob_length() function 593 {Py_mp_length, blob_length},
|