Searched refs:profile (Results 1 - 25 of 3131) sorted by last modified time

1234567891011>>

/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp3472 unsigned short key_r; /*these values are always in 16-bit bitdepth in the profile*/
3489 static void color_profile_init(ColorProfile* profile, const LodePNGColorMode* mode) argument
3491 profile->sixteenbit = 0;
3492 profile->sixteenbit_done = mode->bitdepth == 16 ? 0 : 1;
3494 profile->colored = 0;
3495 profile->colored_done = lodepng_is_greyscale_type(mode) ? 1 : 0;
3497 profile->key = 0;
3498 profile->alpha = 0;
3499 profile->alpha_done = lodepng_can_have_alpha(mode) ? 0 : 1;
3501 profile
3516 color_profile_cleanup(ColorProfile* profile) argument
3553 get_color_profile(ColorProfile* profile, const unsigned char* in, size_t numpixels , const LodePNGColorMode* mode, unsigned fix_png) argument
3762 ColorProfile profile; local
[all...]
/external/webrtc/src/
H A Dcommon_types.h492 VideoCodecProfile profile; member in struct:webrtc::VideoCodecH264
/external/webp/src/enc/
H A Dsyntax.c116 int profile, size_t size0) {
126 | (profile << 1) // profile (3b)
115 PutVP8FrameHeader(const WebPPicture* const pic, int profile, size_t size0) argument
/external/valgrind/main/none/tests/
H A Dcmdline2.stdout.exp120 --profile-flags=<XXXXXXXX> ditto, but for profiling (X = 0|1) [00000000]
121 --profile-interval=<number> show profile every <number> event checks
135 --profile-heap=no|yes profile Valgrind's own space use
153 --trace-flags and --profile-flags values (omit the middle space):
162 0000 0000 show summary profile only
/external/tinycompress/
H A Dcplay.c237 codec.profile = 0;
/external/srtp/include/
H A Dsrtp.h610 * @brief identifies a particular SRTP profile
613 * profile (that is, a set of algorithms and parameters). These
634 * The function call crypto_policy_set_rtp_default(&policy, profile)
636 * protection, as defined by the srtp_profile_t profile.
646 * - err_status_bad_param the profile is not supported
651 srtp_profile_t profile);
662 * The function call crypto_policy_set_rtcp_default(&policy, profile)
664 * protection, as defined by the srtp_profile_t profile.
674 * - err_status_bad_param the profile is not supported
679 srtp_profile_t profile);
[all...]
/external/srtp/srtp/
H A Dsrtp.c1883 srtp_profile_t profile) {
1885 /* set SRTP policy from the SRTP profile in the key set */
1886 switch(profile) {
1912 srtp_profile_t profile) {
1914 /* set SRTP policy from the SRTP profile in the key set */
1915 switch(profile) {
1945 srtp_profile_get_master_key_length(srtp_profile_t profile) { argument
1947 switch(profile) {
1967 srtp_profile_get_master_salt_length(srtp_profile_t profile) { argument
1969 switch(profile) {
1882 crypto_policy_set_from_profile_for_rtp(crypto_policy_t *policy, srtp_profile_t profile) argument
1911 crypto_policy_set_from_profile_for_rtcp(crypto_policy_t *policy, srtp_profile_t profile) argument
[all...]
/external/srtp/test/
H A Ddtls_srtp_driver.c128 srtp_profile_t profile; local
172 profile = srtp_profile_aes128_cm_sha1_80;
173 key_len = srtp_profile_get_master_key_length(profile);
174 salt_len = srtp_profile_get_master_salt_length(profile);
180 /* initialize SRTP policy from profile */
181 err = crypto_policy_set_from_profile_for_rtp(&policy.rtp, profile);
183 err = crypto_policy_set_from_profile_for_rtcp(&policy.rtcp, profile);
/external/sqlite/dist/orig/
H A Dsqlite3.c2702 ** as each SQL statement finishes. ^The profile callback contains
2704 ** of how long that statement took to run. ^The profile callback
10476 void *pProfileArg; /* Argument to profile function */
[all...]
H A Dsqlite3ext.h119 void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); member in struct:sqlite3_api_routines
350 #define sqlite3_profile sqlite3_api->profile
/external/sqlite/dist/
H A Dsqlite3.c2702 ** as each SQL statement finishes. ^The profile callback contains
2704 ** of how long that statement took to run. ^The profile callback
10476 void *pProfileArg; /* Argument to profile function */
[all...]
H A Dsqlite3ext.h119 void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); member in struct:sqlite3_api_routines
350 #define sqlite3_profile sqlite3_api->profile
/external/skia/src/core/
H A DSkDeviceProfile.cpp73 void SkDeviceProfile::SetGlobal(SkDeviceProfile* profile) { argument
76 SkRefCnt_SafeAssign(gGlobalProfile, profile);
/external/skia/src/effects/
H A DSkBlurMask.cpp631 To get the profile curve of the blurred step function at the rectangle
671 point values between 0 and 255 for the profile signature of
674 all the time, we actually fill in the profile pre-inverted
685 uint8_t *profile = SkNEW_ARRAY(uint8_t, size); local
689 profile[0] = 255;
693 profile[x] = 255 - (uint8_t) (255.f * gi);
696 *profile_out = profile;
699 // TODO MAYBE: Maintain a profile cache to avoid recomputing this for
706 uint8_t SkBlurMask::ProfileLookup(const uint8_t *profile, int loc, int blurred_width, int sharp_width) { argument
713 return profile[o
716 ComputeBlurredScanline(uint8_t *pixels, const uint8_t *profile, unsigned int width, SkScalar sigma) argument
772 uint8_t *profile = NULL; local
[all...]
H A DSkBlurMask.h30 // but also being able to predict precisely at what pixels the blurred profile of e.g. a
50 @param profile The precomputed 1D blur profile; memory allocated by and managed by
57 static uint8_t ProfileLookup(const uint8_t* profile, int loc, int blurred_width, int sharp_width);
59 /** Allocate memory for and populate the profile of a 1D blurred halfplane. The caller
62 @param profile_out The location to store the allocated profile curve
70 @param profile Precomputed blur profile computed by ComputeBlurProfile above.
72 @param sigma Standard deviation of the gaussian blur kernel used to compute the profile;
76 static void ComputeBlurredScanline(uint8_t* pixels, const uint8_t* profile,
[all...]
H A DSkBlurMaskFilter.cpp713 uint8_t *profile = NULL; local
720 SkBlurMask::ComputeBlurProfile(sigma, &profile);
721 ada.reset(profile);
724 profile, 0);
/external/skia/src/gpu/gl/
H A DGrGLUtil.cpp115 char profile[2]; local
116 n = sscanf(versionString, "OpenGL ES-%c%c %d.%d", profile, profile+1, &major, &minor);
164 char profile[2]; local
165 n = sscanf(versionString, "OpenGL ES-%c%c %d.%d", profile, profile+1,
/external/skia/debugger/QT/
H A DSkDebuggerGUI.cpp224 // the debugger displays and the profile times.
347 // In order to profile we pass the command offsets (that were read-in
751 QIcon profile; local
752 profile.addFile(QString::fromUtf8(":/profile.png"), QSize(),
754 fActionProfile.setIcon(profile);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/qemu/distrib/libpng-1.2.46/
H A Dpng.h1043 png_charp iccp_name PNG_DEPSTRUCT; /* profile name */
1044 png_charp iccp_profile PNG_DEPSTRUCT; /* International Color Consortium profile data */
1046 png_uint_32 iccp_proflen PNG_DEPSTRUCT; /* ICC profile data length */
2545 png_charpp profile, png_uint_32 *proflen));
2546 /* Note to maintainer: profile should be png_bytepp */
2552 png_charp profile, png_uint_32 proflen));
2553 /* Note to maintainer: profile should be png_bytep */
3372 png_charp profile, int proflen)) PNG_PRIVATE;
3373 /* Note to maintainer: profile should be png_bytep */
H A Dpngget.c526 png_charpp profile, png_uint_32 *proflen)
531 && name != NULL && profile != NULL && proflen != NULL)
534 *profile = info_ptr->iccp_profile;
524 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 Dpngrutil.c1071 png_charp profile; local
1120 for (profile = png_ptr->chunkdata; *profile; profile++)
1123 ++profile;
1128 if ( profile >= png_ptr->chunkdata + slength - 1)
1137 compression_type = *profile++;
1145 prefix_length = profile - png_ptr->chunkdata;
1159 /* Check the profile_size recorded in the first 32 bits of the ICC profile */
1173 png_warning(png_ptr, "Ignoring truncated iCCP profile
[all...]
H A Dpngset.c596 png_charp profile, png_uint_32 proflen)
604 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
620 "Insufficient memory to process iCCP profile.");
623 png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);
594 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 Dpngwutil.c770 png_charp profile, int profile_len)
795 if (profile == NULL)
800 ((*( (png_bytep)profile ))<<24) |
801 ((*( (png_bytep)profile + 1))<<16) |
802 ((*( (png_bytep)profile + 2))<< 8) |
803 ((*( (png_bytep)profile + 3)) );
808 "Embedded profile length in iCCP chunk is negative");
816 "Embedded profile length too large in iCCP chunk");
824 "Truncating profile to actual length in iCCP chunk");
829 profile_len = png_text_compress(png_ptr, profile,
769 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, png_charp profile, int profile_len) argument
[all...]
/external/owasp/sanitizer/
H A DMakefile19 @echo " profile - Profiles the benchmark."
153 profile: out/java.hprof.txt

Completed in 1910 milliseconds

1234567891011>>