/external/eigen/blas/ |
level3_impl.h | 41 int info = 0; local 42 if(OP(*opa)==INVALID) info = 1; 43 else if(OP(*opb)==INVALID) info = 2; 44 else if(*m<0) info = 3; 45 else if(*n<0) info = 4; 46 else if(*k<0) info = 5; 47 else if(*lda<std::max(1,(OP(*opa)==NOTR)?*m:*k)) info = 8; 48 else if(*ldb<std::max(1,(OP(*opb)==NOTR)?*k:*n)) info = 10; 49 else if(*ldc<std::max(1,*m)) info = 13; 50 if(info) 118 int info = 0; local 202 int info = 0; local 247 int info = 0; local 335 int info = 0; local 389 int info = 0; local 456 int info = 0; local 528 int info = 0; local 574 int info = 0; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/common/ |
xmlconfig.c | 124 if (cache->info[hash].name == 0) 126 else if (!strcmp (name, cache->info[hash].name)) 140 if (cache->info[i].name) 337 /** \brief Parse a list of ranges of type info->type. */ 338 static GLboolean parseRanges (driOptionInfo *info, const XML_Char *string) { 366 if (!parseValue (&ranges[i].start, info->type, range) || 367 !parseValue (&ranges[i].end, info->type, sep+1)) 369 if (info->type == DRI_INT && 372 if (info->type == DRI_FLOAT && 376 if (!parseValue (&ranges[i].start, info->type, range) [all...] |
/bionic/tools/relocation_packer/src/ |
debug.h | 7 // LOG(tag) prints messages. Tags are INFO, WARNING, ERROR and FATAL. 8 // INFO prints to stdout, the others to stderr. FATAL aborts after printing. 12 // VLOG(level) logs INFO messages where level is less than or equal to the 15 // VLOG_IF(level, predicate) logs INFO if predicate evaluates to true, 34 enum Severity {INFO = 0, WARNING, ERROR, FATAL}; 53 // Set info and error logging streams. Static, not thread-safe. 72 // Verbosity for INFO messages. Not thread-safe. 84 using LogSeverity::INFO; 98 // VLOG(level) prints its message as INFO if level is less than or equal to 101 (relocation_packer::Logger(INFO, (level), true).GetStream() [all...] |
/cts/tests/tests/content/src/android/content/pm/cts/ |
ActivityInfoTest.java | 38 ActivityInfo info = new ActivityInfo(); local 39 new ActivityInfo(info); 58 ActivityInfo info = ActivityInfo.CREATOR.createFromParcel(p); local 59 assertEquals(mActivityInfo.theme, info.theme); 60 assertEquals(mActivityInfo.launchMode, info.launchMode); 61 assertEquals(mActivityInfo.permission, info.permission); 62 assertEquals(mActivityInfo.taskAffinity, info.taskAffinity); 63 assertEquals(mActivityInfo.targetActivity, info.targetActivity); 64 assertEquals(mActivityInfo.flags, info.flags); 65 assertEquals(mActivityInfo.screenOrientation, info.screenOrientation) [all...] |
/external/autotest/client/site_tests/power_CPUIdle/ |
power_CPUIdle.py | 20 logging.info('idle_time_at_start: %d' % idle_time_at_start) 21 logging.info('active_time_at_start: %d' % active_time_at_start) 27 logging.info('idle_time_at_end: %d' % idle_time_at_end) 28 logging.info('active_time_at_end: %d' % idle_time_at_end) 31 logging.info('idle_time_delta_ms: %d' % idle_time_delta_ms) 35 logging.info('active_time_delta_ms: %d' % active_time_delta_ms) 38 logging.info('total_time_delta_ms: %d' % total_time_delta_ms) 41 logging.info('percent active time : %.2f' % percent_active_time) 44 logging.info('percent idle time : %.2f' % percent_idle_time) 134 logging.info('idle_time(%s): %d' % (self.__name, time) [all...] |
/external/autotest/server/site_tests/audio_AudioBasicUSBPlaybackRecord/ |
audio_AudioBasicUSBPlaybackRecord.py | 71 logging.info('Setting playback data on Cros device') 86 logging.info('Start recording from Chameleon.') 88 logging.info('Start recording from Cros device.') 91 logging.info('Start playing %s on Cros device', 94 logging.info('Start playing %s on Chameleon', 101 logging.info('Stopped recording from Chameleon.') 103 logging.info('Stopped recording from Cros device.') 109 logging.info('Read recorded binary from Chameleon.') 111 logging.info('Read recorded binary from Cros device.') 115 logging.info('Saving Cros playback recorded data to %s' [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCEDHPrivateKey.java | 36 private PrivateKeyInfo info; field in class:JCEDHPrivateKey 59 PrivateKeyInfo info) 62 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters()); 63 ASN1Integer derX = ASN1Integer.getInstance(info.parsePrivateKey()); 64 ASN1ObjectIdentifier id = info.getAlgorithmId().getAlgorithm(); 66 this.info = info; 126 if (info != null) 128 return info.getEncoded(ASN1Encoding.DER); 131 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter (…) local [all...] |
/external/harfbuzz_ng/src/ |
hb-ot-shape-complex-indic.cc | 141 is_one_of (const hb_glyph_info_t &info, unsigned int flags) 144 if (_hb_glyph_info_ligated (&info)) return false; 145 return !!(FLAG_SAFE (info.indic_category()) & flags); 149 is_joiner (const hb_glyph_info_t &info) 151 return is_one_of (info, JOINER_FLAGS); 155 is_consonant (const hb_glyph_info_t &info) 157 return is_one_of (info, CONSONANT_FLAGS); 161 is_halant_or_coeng (const hb_glyph_info_t &info) 163 return is_one_of (info, HALANT_OR_COENG_FLAGS); 167 set_indic_properties (hb_glyph_info_t &info) 626 hb_glyph_info_t *info = buffer->info; local 665 hb_glyph_info_t *info = buffer->info; local 686 hb_glyph_info_t *info = buffer->info; local 1206 hb_glyph_info_t *info = buffer->info; local 1277 hb_glyph_info_t *info = buffer->info; local 1723 hb_glyph_info_t *info = buffer->info; local [all...] |
/external/iptables/extensions/ |
libxt_TCPOPTSTRIP.c | 56 parse_list(struct xt_tcpoptstrip_target_info *info, const char *arg) 83 if (tcpoptstrip_test_bit(info->strip_bmap, option)) 87 tcpoptstrip_set_bit(info->strip_bmap, option); 96 struct xt_tcpoptstrip_target_info *info = cb->data; local 99 parse_list(info, cb->arg); 103 tcpoptstrip_print_list(const struct xt_tcpoptstrip_target_info *info, 111 if (!tcpoptstrip_test_bit(info->strip_bmap, i)) 134 const struct xt_tcpoptstrip_target_info *info = local 138 tcpoptstrip_print_list(info, numeric); 144 const struct xt_tcpoptstrip_target_info *info local [all...] |
/external/iptables/libiptc/ |
libip4tc.c | 322 if (strcmp(h->info.name, "filter") == 0) { 323 assert(h->info.valid_hooks 329 assert(h->info.hook_entry[NF_IP_LOCAL_IN] == 0); 333 assert(h->info.hook_entry[NF_IP_FORWARD] == n); 337 assert(h->info.hook_entry[NF_IP_LOCAL_OUT] == n); 339 user_offset = h->info.hook_entry[NF_IP_LOCAL_OUT]; 340 } else if (strcmp(h->info.name, "nat") == 0) { 341 assert((h->info.valid_hooks 345 (h->info.valid_hooks 351 assert(h->info.hook_entry[NF_IP_PRE_ROUTING] == 0) [all...] |
libip6tc.c | 270 if (strcmp(h->info.name, "filter") == 0) { 271 assert(h->info.valid_hooks 277 assert(h->info.hook_entry[NF_IP6_LOCAL_IN] == 0); 281 assert(h->info.hook_entry[NF_IP6_FORWARD] == n); 285 assert(h->info.hook_entry[NF_IP6_LOCAL_OUT] == n); 287 user_offset = h->info.hook_entry[NF_IP6_LOCAL_OUT]; 288 } else if (strcmp(h->info.name, "nat") == 0) { 289 assert((h->info.valid_hooks 293 (h->info.valid_hooks 299 assert(h->info.hook_entry[NF_IP6_PRE_ROUTING] == 0) [all...] |
/external/llvm/lib/IR/ |
FunctionInfo.cpp | 1 //===-- FunctionInfo.cpp - Function Info Index ----------------------------===// 10 // This file implements the function info index and summary classes for the 29 // Assert that the func info list only has one entry, since we shouldn't 32 std::unique_ptr<FunctionInfo> Info = std::move(List.front()); 35 if (!Info->functionSummary()) 42 addModulePath(Info->functionSummary()->modulePath(), NextModuleId); 44 assert(ModPath == Info->functionSummary()->modulePath() && 50 Info->functionSummary()->setModulePath(ModPath); 53 if (Info->functionSummary()->isLocalFunction()) { 62 // Add new function info to existing list. There may be duplicates whe [all...] |
/external/ltrace/ |
fetch.c | 37 struct process *proc, struct arg_type_info *info, 41 struct process *proc, struct arg_type_info *info, 57 struct arg_type_info *info); 82 struct arg_type_info *info, struct value *valuep) 84 long l = gimme_arg(type, proc, context->argnum++, info); 92 struct arg_type_info *info, struct value *valuep) 94 long l = gimme_arg(type, proc, -1, info); 136 struct arg_type_info *info, struct value *valuep) 138 return arch_fetch_arg_next(context, type, proc, info, valuep); 144 struct arg_type_info *info, struct value *valuep [all...] |
/hardware/libhardware/tests/camera2/ |
CameraModuleFixture.h | 49 const CameraMetadata& staticInfo = mDevice->info(); 91 struct camera_info info; local 92 ASSERT_EQ(OK, mModule->getCameraInfo(cameraID, &info)); 94 ASSERT_GE((int)info.device_version, CAMERA_DEVICE_API_VERSION_3_0) << 96 info.device_version; 97 switch(info.device_version) { 106 info.device_version; 116 camera_info info; local 118 res = mModule->getCameraInfo(cameraId, &info); 121 return info.device_version [all...] |
/packages/apps/Settings/src/com/android/settings/ |
WallpaperTypeSettings.java | 66 for (ResolveInfo info : rList) { 71 info.activityInfo.packageName, info.activityInfo.name)); 73 CharSequence label = info.loadLabel(pm); 74 if (label == null) label = info.activityInfo.packageName; 76 pref.setIcon(info.loadIcon(pm)); 93 for (ResolveInfo info : rList) { 94 CharSequence label = info.loadLabel(pm); 95 if (label == null) label = info.activityInfo.packageName; 102 data.intentTargetPackage = info.activityInfo.packageName [all...] |
/system/core/libnetutils/ |
dhcpclient.c | 129 static int dhcp_configure(const char *ifname, dhcp_info *info) 131 last_good_info = *info; 132 return ifc_configure(ifname, info->ipaddr, info->prefixLength, info->gateway, 133 info->dns1, info->dns2); 151 void dump_dhcp_info(dhcp_info *info) 155 dhcp_type_to_name(info->type), info->type) 395 dhcp_info info; local [all...] |
/external/libjpeg-turbo/ |
transupp.c | [all...] |
/external/autotest/client/tests/kvm/tests/ |
physical_resources_check.py | 26 o = vm.monitor.info(info_cmd) 29 fail_log += "info/query monitor command failed (%s)" % info_cmd 52 o = vm.monitor.info(info_cmd) 55 fail_log += "info/query monitor command failed (%s)" % info_cmd 93 logging.info("Starting physical resources check test") 94 logging.info("Values assigned to VM are the values we expect " 104 logging.info("CPU count check") 115 logging.info("Memory size check") 126 logging.info("Hard drive count check") 130 logging.info("NIC count check" [all...] |
/external/autotest/server/site_tests/power_SuspendShutdown/ |
power_SuspendShutdown.py | 33 logging.info('binding /dev/full to /sys/power/state') 37 logging.info('settings retry_suspend_attempts to %s', 45 logging.info('settings retry_suspend_ms to %s', 53 logging.info('restarting powerd') 91 logging.info('Login into client started') 98 logging.info('DUT login process failed') 114 logging.info('Launching Desktopui_simplelogin thread') 123 logging.info('Login thread started') 144 logging.info('Cryptohome did not return a value, retrying.') 164 logging.info('platform is %s', platform [all...] |
/external/clang/lib/Frontend/ |
TextDiagnosticPrinter.cpp | 56 const Diagnostic &Info, 61 if (Info.getID() == diag::fatal_too_many_errors) { 76 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID()) && 77 !DiagnosticIDs::isDefaultMappingAsError(Info.getID())) { 82 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID()); 86 StringRef OptValue = Info.getDiags()->getFlagValue(); 96 DiagnosticIDs::getCategoryNumberForDiag(Info.getID()); 113 const Diagnostic &Info) { 115 DiagnosticConsumer::HandleDiagnostic(Level, Info); 120 Info.FormatDiagnostic(OutStr) [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/ |
audio_encoder_cng.cc | 143 EncodedInfo info; local 146 info = EncodePassive(frames_to_encode, max_encoded_bytes, encoded); 151 info = EncodeActive(frames_to_encode, max_encoded_bytes, encoded); 166 return info; 211 AudioEncoder::EncodedInfo info; local 213 // It's important not to pass &info.encoded_bytes directly to 225 info.encoded_bytes = encoded_bytes_tmp; 230 info.encoded_timestamp = rtp_timestamps_.front(); 231 info.payload_type = cng_payload_type_; 232 info.send_even_if_empty = true 242 AudioEncoder::EncodedInfo info; local [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectViewer.java | 118 MtpObjectInfo info = mClient.getObjectInfo(mDeviceName, mObjectID); local 119 if (info != null) { 121 mFileName = info.getName(); 124 view.setText(Integer.toHexString(info.getFormat()).toUpperCase(Locale.ROOT)); 126 view.setText(Long.toString(info.getCompressedSize())); 128 view.setText(Long.toString(info.getThumbPixWidth())); 130 view.setText(Long.toString(info.getThumbPixHeight())); 132 view.setText(Long.toString(info.getThumbCompressedSize())); 134 view.setText(Long.toString(info.getImagePixWidth())); 136 view.setText(Long.toString(info.getImagePixHeight())) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/ |
TileQueryHelper.java | 113 TileInfo info = new TileInfo(); local 114 info.state = state; 115 info.state.minimalAccessibilityClassName = info.state.expandedAccessibilityClassName = 117 info.spec = spec; 118 info.appLabel = appLabel; 119 info.isSystem = isSystem; 120 mTiles.add(info); 148 for (ResolveInfo info : services) { 149 String packageName = info.serviceInfo.packageName [all...] |
/frameworks/base/services/core/java/com/android/server/ |
LockGuard.java | 71 LockInfo info = sKnown.get(lock); local 72 if (info == null) { 73 info = new LockInfo(); 74 info.label = "0x" + Integer.toHexString(System.identityHashCode(lock)) + " [" 76 sKnown.put(lock, info); 78 return info; 92 final LockInfo info = findOrCreateLockInfo(lock); local 93 for (int i = 0; i < info.children.size(); i++) { 94 final Object child = info.children.valueAt(i); 125 final LockInfo info = findOrCreateLockInfo(lock) local 130 final LockInfo info = sKnown.get(lock); local 141 final LockInfo info = sKnown.valueAt(i); local [all...] |
/frameworks/wilhelm/src/itf/ |
IStreamInformation.c | 22 XAMediaContainerInformation * info /* [out] */) 26 if (NULL == info) { 34 // always storing container info at index 0, as per spec 35 *info = thiz->mStreamInfoTable.itemAt(0).containerInfo; 37 // even though the pointer to the media container info is returned, the values aren't set 43 memset(info, 0, sizeof(XAMediaContainerInformation)); 95 void * info) /* [out] */ 99 if (NULL == info) { 119 *(XAMediaContainerInformation *)info = streamInfo.containerInfo; 122 *(XAAudioStreamInformation *)info = streamInfo.audioInfo [all...] |