/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_video.h | 43 u_reduce_video_profile(enum pipe_video_profile profile) argument 45 switch (profile)
|
/external/javasqlite/src/main/java/SQLite/ |
H A D | Profile.java | 4 * Callback interface for SQLite's profile function. 10 * Callback to profile (ie log) one SQL statement 17 public void profile(String stmt, long est); method in interface:Profile
|
/external/vogar/src/vogar/ |
H A D | RetrievedFilesFilter.java | 26 private final boolean profile; field in class:RetrievedFilesFilter 29 public RetrievedFilesFilter(boolean profile, File profileFile) { argument 30 this.profile = profile; 41 || (profile && file.getName().equals(profileFile.getName()))) {
|
/external/aac/libMpegTPEnc/src/ |
H A D | tpenc_adif.h | 103 int profile; member in struct:__anon350
|
H A D | tpenc_adts.h | 107 UCHAR profile; member in struct:__anon351
|
/external/vogar/src/vogar/target/ |
H A D | CaliperRunner.java | 31 private final boolean profile; field in class:CaliperRunner 35 public CaliperRunner(TargetMonitor monitor, boolean profile, Class<?> testClass, argument 38 this.profile = profile; 60 if (profile) {
|
H A D | CaliperRunnerFactory.java | 54 TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, 57 return new CaliperRunner(monitor, profile, klass, args); 52 newRunner(TargetMonitor monitor, String qualification, Class<?> klass, AtomicReference<String> skipPastReference, TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, String[] args) argument
|
H A D | MainRunnerFactory.java | 31 TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, 29 newRunner(TargetMonitor monitor, String qualification, Class<?> klass, AtomicReference<String> skipPastReference, TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, String[] args) argument
|
H A D | RunnerFactory.java | 35 int timeoutSeconds, boolean profile, String[] args); 33 newRunner(TargetMonitor monitor, String qualification, Class<?> klass, AtomicReference<String> skipPastReference, TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, String[] args) argument
|
/external/compiler-rt/make/platform/ |
H A D | clang_linux.mk | 52 Configs += builtins-i386 profile-i386 54 Arch.profile-i386 := i386 59 Configs += builtins-x86_64 profile-x86_64 61 Arch.profile-x86_64 := x86_64 74 CFLAGS.profile-i386 := $(CFLAGS) -m32 75 CFLAGS.profile-x86_64 := $(CFLAGS) -m64 79 FUNCTIONS.profile-i386 := GCDAProfiling InstrProfiling InstrProfilingBuffer \ 83 FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
|
/external/ImageMagick/coders/ |
H A D | thumbnail.c | 55 #include "MagickCore/profile.h" 164 *profile; 187 profile=GetImageProfile(image,"exif"); 188 if (profile == (const StringInfo *) NULL) 203 magick[2]=GetStringInfoDatum(profile)[offset+i]; 207 thumbnail_image=BlobToImage(image_info,GetStringInfoDatum(profile)+offset+i-2, 159 *profile; local
|
/external/fio/ |
H A D | profile.c | 2 #include "profile.h" 9 struct profile_ops *find_profile(const char *profile) argument 16 if (!strcmp(profile, ops->name)) 25 int load_profile(const char *profile) argument 29 dprint(FD_PROFILE, "loading profile '%s'\n", profile); 31 ops = find_profile(profile); 34 log_err("fio: profile %s prep failed\n", profile); 41 log_err("fio: profile ' [all...] |
/external/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_decoder.c | 36 vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile) argument 39 switch (u_reduce_video_profile(profile)) { 49 enum pipe_video_profile profile, 64 profile, 71 switch (u_reduce_video_profile(profile)) { 73 return vl_create_mpeg12_decoder(pipe, profile, entrypoint, chroma_format, 48 vl_create_decoder(struct pipe_context *pipe, enum pipe_video_profile profile, enum pipe_video_entrypoint entrypoint, enum pipe_video_chroma_format chroma_format, unsigned width, unsigned height, unsigned max_references, bool expect_chunked_decode) argument
|
/external/vogar/src/vogar/target/junit/ |
H A D | JUnitRunnerFactory.java | 40 TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, 38 newRunner(TargetMonitor monitor, String qualification, Class<?> klass, AtomicReference<String> skipPastReference, TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, String[] args) argument
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
H A D | main.py | 72 "--profile", 74 dest="profile" 133 if options.profile: 135 import cProfile as profile namespace 137 import profile namespace 139 profile.runctx( 143 'profile.dat' 147 stats = pstats.Stats('profile.dat')
|
/external/mesa3d/src/gallium/state_trackers/va/ |
H A D | va_config.c | 51 vlVaQueryConfigEntrypoints(VADriverContextP ctx, VAProfile profile, argument 59 switch (profile) { 62 VA_INFO("Using profile %08x\n",profile); 75 VA_ERROR("Unsupported profile %08x\n",profile); 85 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, argument 95 vlVaCreateConfig(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, argument 114 vlVaQueryConfigAttributes(VADriverContextP ctx, VAConfigID config_id, VAProfile *profile, argument
|
/external/autotest/client/site_tests/hardware_VideoDecodeCapable/src/ |
H A D | vaapimodule.cc | 119 VAProfile *profile = new VAProfile[num_profiles]; local 121 VAStatus status = vaQueryConfigProfiles(va_display, profile, &num_profiles); 124 delete [] profile; 131 size_t value = static_cast<size_t>(profile[i]); 134 delete [] profile; 140 int profile; local 141 if (!PyArg_ParseTuple(args, "Oi", &bundle, &profile)) 152 static_cast<VAProfile>(profile), 170 int profile; local 172 if (!PyArg_ParseTuple(args, "Oii", &bundle, &profile, [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/debug/ |
H A D | profile.py | 40 log_filename='profile.log.tmp', 129 If true, then don't actually profile anything. Useful for 154 return self.profile(self.func, *args, **kw) 158 def profile(self, func, *args, **kw): member in class:DecoratedProfile 216 log_filename='profile.log.tmp', 219 Wrap the application in a component that will profile each
|
/external/libpng/contrib/examples/ |
H A D | iccfrompng.c | 34 static png_byte no_profile[] = "no profile"; 43 /* Initialize for error or no profile: */ 69 png_bytep profile; local 71 if (png_get_iCCP(png_ptr, info_ptr, &name, &compression_type, &profile, 76 memcpy(result, profile, *proflen); 79 png_error(png_ptr, "OOM allocating profile buffer"); 99 png_bytep profile = extract(fp, &proflen); local 101 if (profile != NULL && profile != no_profile) 127 if (fwrite(profile, profle [all...] |
/external/libxml2/ |
H A D | check-xinclude-test-suite.py | 198 profile = testsuite.prop('PROFILE') variable 199 if profile != None: 200 print profile
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_screen.c | 234 enum pipe_video_profile profile, 239 return vl_profile_supported(screen, profile); 233 softpipe_get_video_param(struct pipe_screen *screen, enum pipe_video_profile profile, enum pipe_video_cap param) argument
|
/external/mesa3d/src/gallium/include/pipe/ |
H A D | p_video_decoder.h | 44 * Gallium video decoder for a specific codec/profile 50 enum pipe_video_profile profile; member in struct:pipe_video_decoder
|
/external/skia/src/core/ |
H A D | SkDeviceProfile.cpp | 73 void SkDeviceProfile::SetGlobal(SkDeviceProfile* profile) { argument 76 SkRefCnt_SafeAssign(gGlobalProfile, profile);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
H A D | CertInstallerHelper.java | 172 public void installCertificate(VpnProfile profile, String certFile, String password) { argument 180 String key = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert; 191 String certName = Credentials.USER_CERTIFICATE + profile.ipsecUserCert; 202 String caListName = Credentials.CA_CERTIFICATE + profile.ipsecCaCert;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
H A D | BluetoothA2dpFacade.java | 55 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument 61 public void onServiceDisconnected(int profile) { argument 85 * Checks to see if the A2DP profile is ready for use. 89 @Rpc(description = "Is A2dp profile ready.") 95 * Connect to remote device using the A2DP profile. 115 * Disconnect a remote device using the A2DP profile. 135 * Get the list of devices connected through the A2DP profile.
|