Searched defs:profile (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dprofile.h39 * @ret delta Elapsed ticks since last call to profile().
41 * Call profile() both before and after the code you wish to measure.
46 * profile ( &profiler );
48 * printf ( "It took %ld ticks to execute\n", profile ( &profiler ) );
53 profile ( union profiler *profiler ) { function
65 * @ret delta Elapsed ticks since last call to profile().
71 * simple_profile() is equivalent to profile(&simple_profiler), where
73 * to each object which includes @c profile.h.
77 return profile ( &simple_profiler );
H A Dbofm.h90 /** Data structure profile */
91 char profile[32]; member in struct:bofm_global_header
/vbox/src/libs/xpcom18a4/python/tools/
H A Dtracer_demo.py42 # and properties. It then dumps the profile statistics.
46 import profile namespace
48 p = profile.Profile()
62 # every function. As the function is called, it collects profile info.
/vbox/src/libs/libxml2-2.6.31/
H A Dcheck-xinclude-test-suite.py198 profile = testsuite.prop('PROFILE') variable
199 if profile != None:
200 print profile
H A Dcheck-xml-test-suite.py364 profile = case.prop('PROFILE')
365 if profile != None and \
366 string.find(profile, "IBM XML Conformance Test Suite - Production") < 0:
367 print "=>", profile
386 profile = testsuite.prop('PROFILE') variable
387 if profile != None:
388 print profile
/vbox/src/libs/libpng-1.2.8/
H A Dpngget.c489 png_charpp profile, png_uint_32 *proflen)
492 && name != NULL && profile != NULL && proflen != NULL)
496 *profile = info_ptr->iccp_profile;
487 png_get_iCCP(png_structp png_ptr, png_infop info_ptr, png_charpp name, int *compression_type, png_charpp profile, png_uint_32 *proflen) argument
H A Dpngset.c648 png_charp profile, png_uint_32 proflen)
654 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
668 png_warning(png_ptr, "Insufficient memory to process iCCP profile.");
671 png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);
646 png_set_iCCP(png_structp png_ptr, png_infop info_ptr, png_charp name, int compression_type, png_charp profile, png_uint_32 proflen) argument
H A Dpngtest.c868 png_charp profile; local
873 &profile, &proflen))
876 profile, proflen);
H A Dpngrutil.c986 png_charp profile; local
1033 for (profile = chunkdata; *profile; profile++)
1036 ++profile;
1040 if ( profile >= chunkdata + slength)
1048 compression_type = *profile++;
1056 prefix_length = profile - chunkdata;
1069 /* Check the profile_size recorded in the first 32 bits of the ICC profile */
1082 png_warning(png_ptr, "Ignoring truncated iCCP profile
[all...]
H A Dpngwutil.c723 png_charp profile, int profile_len)
743 if (profile == NULL)
747 profile_len = png_text_compress(png_ptr, profile, (png_size_t)profile_len,
722 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, png_charp profile, int profile_len) argument

Completed in 2033 milliseconds