Searched defs:purpose (Results 1 - 6 of 6) sorted by relevance

/vbox/src/libs/libpng-1.2.8/
H A Dpngget.c600 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams,
604 && purpose != NULL && X0 != NULL && X1 != NULL && type != NULL &&
608 *purpose = info_ptr->pcal_purpose;
599 png_get_pCAL(png_structp png_ptr, png_infop info_ptr, png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams, png_charp *units, png_charpp *params) argument
H A Dpngset.c371 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
381 length = png_strlen(purpose) + 1;
382 png_debug1(3, "allocating purpose for info (%lu bytes)\n", length);
386 png_warning(png_ptr, "Insufficient memory for pCAL purpose.");
389 png_memcpy(info_ptr->pcal_purpose, purpose, (png_size_t)length);
370 png_set_pCAL(png_structp png_ptr, png_infop info_ptr, png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams, png_charp units, png_charpp params) argument
H A Dpngtest.c932 png_charp purpose, units; local
937 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type,
940 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
H A Dpngrutil.c1558 png_charp purpose; local
1585 purpose = (png_charp)png_malloc_warn(png_ptr, length + 1);
1586 if (purpose == NULL)
1588 png_warning(png_ptr, "No memory for pCAL purpose.");
1592 png_crc_read(png_ptr, (png_bytep)purpose, slength);
1596 png_free(png_ptr, purpose);
1600 purpose[slength] = 0x00; /* null terminate the last string */
1602 png_debug(3, "Finding end of pCAL purpose string\n");
1603 for (buf = purpose; *buf; buf++)
1606 endptr = purpose
[all...]
H A Dpngwutil.c1494 png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0, argument
1510 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
1511 png_debug1(3, "pCAL purpose length = %d\n", (int)purpose_len);
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dx509.c539 * Parse X.509 certificate key purpose identifier
548 struct x509_key_purpose *purpose; local
561 /* Identify key purpose */
564 purpose = &x509_key_purposes[i];
565 if ( asn1_compare ( &cursor, &purpose->oid ) == 0 ) {
566 DBGC2 ( cert, "X509 %p has key purpose %s\n",
567 cert, purpose->name );
568 ext_usage->bits |= purpose->bits;

Completed in 6210 milliseconds