/external/ImageMagick/coders/ |
xtrn.c | 170 *blob_length; 178 blob_length=(size_t *) param2; 179 image=BlobToImage(clone_info,*blob_data,*blob_length,exception); 199 blob_length; 213 blob_length = lBoundu - lBoundl + 1; 222 image=BlobToImage(clone_info,blob_data,blob_length, 469 *blob_length; 481 blob_length=(size_t *) param2; 493 if (*blob_length == 0) 494 *blob_length=8192 167 *blob_length; local 196 blob_length; local 463 *blob_length; local 504 blob_length; local [all...] |
inline.c | 303 blob_length, 328 blob_length=2048; 335 blob=(unsigned char *) ImageToBlob(write_info,write_image,&blob_length, 342 base64=Base64Encode(blob,blob_length,&encode_length); 297 blob_length, local
|
svg.c | [all...] |
/hardware/interfaces/keymaster/3.0/vts/functional/ |
authorization_set.cpp | 198 * | 32 bit blob_length | 210 // write blob_length 211 auto blob_length = blob.size(); local 212 if (blob_length > std::numeric_limits<uint32_t>::max()) { 216 buffer = blob_length; 223 blob_length) { // overflow check 231 if (blob_length) out.indirect.write(reinterpret_cast<const char*>(&blob[0]), blob_length); local 321 uint32_t blob_length = 0; local 323 in.elements.read(reinterpret_cast<char*>(&blob_length), sizeof(uint32_t)) [all...] |
/system/security/keystore/ |
authorization_set.cpp | 194 * | 32 bit blob_length | 206 // write blob_length 207 auto blob_length = blob.size(); local 208 if (blob_length > std::numeric_limits<uint32_t>::max()) { 212 buffer = blob_length; 218 uint32_t(offset) + uint32_t(blob_length) < uint32_t(offset)) { // overflow check 226 if(blob_length) 227 out.indirect.write(reinterpret_cast<const char*>(&blob[0]), blob_length); local 326 uint32_t blob_length = 0; local 328 in.elements.read(reinterpret_cast<char*>(&blob_length), sizeof(uint32_t)) [all...] |
/external/ImageMagick/MagickCore/ |
utility.c | 483 % char *Base64Encode(const unsigned char *blob,const size_t blob_length, 490 % o blob_length: the number of bytes to encode. 496 const size_t blob_length,size_t *encode_length) 512 assert(blob_length != 0); 515 encode=(char *) AcquireQuantumMemory(blob_length/3+4,4*sizeof(*encode)); 519 for (p=blob; p < (blob+blob_length-2); p+=3) 526 remainder=blob_length % 3; [all...] |
/system/keymaster/ |
android_keymaster_test_utils.h | 355 static void munge_blob(uint8_t* blob, size_t blob_length) { 356 if (blob && blob_length > 0 && *blob == 'P') 361 static uint8_t* unmunge_blob(const uint8_t* blob, size_t blob_length) { 362 uint8_t* dup_blob = dup_buffer(blob, blob_length); 363 if (dup_blob && blob_length > 0 && *dup_blob == 'Q')
|
/external/harfbuzz_ng/src/ |
hb-ft.cc | 709 unsigned int blob_length; local 710 const char *blob_data = hb_blob_get_data (blob, &blob_length); 711 if (unlikely (!blob_length)) 717 blob_length,
|
hb-coretext.cc | 123 unsigned int blob_length; local 124 const char *blob_data = hb_blob_get_data (blob, &blob_length); 125 if (unlikely (!blob_length)) 128 CGDataProviderRef provider = CGDataProviderCreateWithData (blob, blob_data, blob_length, &release_data); [all...] |
/external/ImageMagick/PerlMagick/t/ |
subroutines.pl | 239 my(@blob, $blob_length, $image, $signature, $status); 245 $blob_length = read( FILE, $blob, 10000000 ); [all...] |