Searched refs:statistics (Results 1 - 25 of 96) sorted by relevance

1234

/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DExecutableAllocatorFixedVMPool.cpp144 MetaAllocator::Statistics statistics = allocator->currentStatistics(); local
145 return statistics.bytesAllocated > statistics.bytesReserved / 2;
150 MetaAllocator::Statistics statistics = allocator->currentStatistics(); local
151 ASSERT(statistics.bytesAllocated <= statistics.bytesReserved);
152 size_t bytesAllocated = statistics.bytesAllocated + addedMemoryUsage;
153 if (bytesAllocated >= statistics.bytesReserved)
154 bytesAllocated = statistics.bytesReserved;
156 size_t divisor = statistics
[all...]
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOInterruptEventSource.cpp103 * set up the objects necessary to track interrupt statistics. Interrupt
108 * the statistics are enabled.
110 reserved->statistics = IONew(IOInterruptAccountingData, 1);
112 if (!reserved->statistics) {
120 bzero(reserved->statistics, sizeof(IOInterruptAccountingData));
122 reserved->statistics->owner = this;
160 * Add statistics to the provider. The setWorkLoop convention should ensure
165 if ((ret == kIOReturnSuccess) && (reserved->statistics)) {
169 reserved->statistics->interruptIndex = inIntIndex;
173 * can find the statistics fo
[all...]
H A DIOFilterInterruptEventSource.cpp165 if (IOInterruptEventSource::reserved->statistics) {
174 if (IOInterruptEventSource::reserved->statistics) {
176 IA_ADD_VALUE(&IOInterruptEventSource::reserved->statistics->interruptStatistics[kInterruptAccountingFirstLevelCountIndex], 1);
181 IA_ADD_VALUE(&IOInterruptEventSource::reserved->statistics->interruptStatistics[kInterruptAccountingFirstLevelTimeIndex], endTime - startTime);
205 if (IOInterruptEventSource::reserved->statistics) {
214 if (IOInterruptEventSource::reserved->statistics) {
216 IA_ADD_VALUE(&IOInterruptEventSource::reserved->statistics->interruptStatistics[kInterruptAccountingFirstLevelCountIndex], 1);
221 IA_ADD_VALUE(&IOInterruptEventSource::reserved->statistics->interruptStatistics[kInterruptAccountingFirstLevelTimeIndex], endTime - startTime);
/macosx-10.10/configd-699.1.5/
H A Dget-mobility-info81 echo "Please wait, collecting information and statistics"
416 # network statistics
418 /bin/echo -n "" > network-statistics
421 echo "#" >> network-statistics
422 echo "# arp -n -a" >> network-statistics
423 echo "#" >> network-statistics
424 /usr/sbin/arp -n -a >> network-statistics 2>&1
428 echo "#" >> network-statistics
429 echo "# netstat -A -a -l -n" >> network-statistics
430 echo "#" >> network-statistics
[all...]
/macosx-10.10/libauto-186/
H A DSubzone.cpp40 admin()->zone()->statistics().add_escaped(1);
H A DZoneCollectors.cpp84 zone->statistics().add_blocks_scanned(1);
85 zone->statistics().add_bytes_scanned(large->size());
120 zone->statistics().add_blocks_scanned(blocks_scanned);
121 zone->statistics().add_bytes_scanned(bytes_scanned);
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dmgmt.c141 unsigned32 statistics[],
456 ** This is a Local/Remote management function that obtains statistics
459 ** the defined statistics constants.
469 ** stats An vector of statistics values for this server.
491 rpc_stats_vector_p_t *statistics,
501 * statistics we know about and set the vector count to match
504 RPC_MEM_ALLOC (*statistics, rpc_stats_vector_p_t,
506 + (sizeof ((*statistics)->stats) *
510 (*statistics)->count = rpc_c_stats_array_max_size;
521 memset (&(*statistics)
479 rpc_mgmt_inq_stats( rpc_binding_handle_t binding_h, rpc_stats_vector_p_t *statistics, unsigned32 *status ) argument
588 rpc_mgmt_stats_vector_free( rpc_stats_vector_p_t *statistics, unsigned32 *status ) argument
1679 inq_stats( rpc_binding_handle_t binding_h, unsigned32 *count, unsigned32 statistics[], unsigned32 *status ) argument
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DWebCache.h34 + (NSArray *)statistics; variable
H A DWebCoreStatistics.h39 + (NSArray *)statistics; variable
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebCache.idl40 HRESULT statistics([in, out] int* count, [in] IPropertyBag** s);
H A DIWebCoreStatistics.idl68 HRESULT memoryStatistics([out, retval] IPropertyBag** statistics);
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebCache.h46 virtual HRESULT STDMETHODCALLTYPE statistics(
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_get_sf_stats21 stat_url state/statistics
/macosx-10.10/tcl-105/tcl_ext/trf/trf/tools/
H A Dhtdocs_get_sf_stats21 stat_url state/statistics
/macosx-10.10/system_cmds-643.1.1/sadc.tproj/
H A Dsadc.c78 /* internal table of network interface statistics */
373 * record the statistics
422 CFDictionaryRef properties, statistics; local
521 /* Obtain the statistics from the parent drive properties. */
523 statistics
527 if (statistics != 0)
531 (CFNumberRef)CFDictionaryGetValue(statistics,
541 (CFNumberRef)CFDictionaryGetValue(statistics,
550 (CFNumberRef)CFDictionaryGetValue(statistics,
559 (CFNumberRef)CFDictionaryGetValue(statistics,
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/scr030/
H A Dchk.build31 if `echo "$1" | grep disable-statistics > /dev/null`; then
99 --disable-statistics \
/macosx-10.10/dcerpc-61/dcerpc/include/dce/
H A Dmgmt.idl124 [out, size_is (*count)] unsigned32 statistics[*],
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/checkconf/
H A Dbad.conf32 host-statistics yes;
33 host-statistics-max 100;
H A Dgood.conf43 host-statistics yes;
44 host-statistics-max 100;
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/old/
H A Dtoaster.test119 test {Check statistics gathered by Hazard base class} {
128 test {Check statistics gathered by Hazard base class} {
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOInterruptEventSource.h102 IOInterruptAccountingData * statistics; member in struct:IOInterruptEventSource::ExpansionData
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/apps/
H A Dpage97 package require struct::matrix ; # Matrices. For statistics report
150 variable statistics {}
714 variable statistics
717 set statistics [struct::matrix ::page::STAT]
724 variable statistics
729 if {[$statistics columns] < $n} {
730 $statistics add columns [expr {
731 $n - [$statistics columns]
742 $statistics add row [linsert $args 0 $prefix]
748 variable statistics
[all...]
/macosx-10.10/system_cmds-643.1.1/iostat.tproj/
H A Diostat.c90 * Ideas for the new iostat statistics output modes taken from the NetBSD
300 * TTY statistics are broken, disabling them.
406 warnx("disabling TTY statistics");
524 CFDictionaryRef statistics; local
554 /* get statistics from properties */
555 statistics = (CFDictionaryRef)CFDictionaryGetValue(properties,
557 if (statistics) {
562 if ((number = (CFNumberRef)CFDictionaryGetValue(statistics,
567 if ((number = (CFNumberRef)CFDictionaryGetValue(statistics,
576 if ((number = (CFNumberRef)CFDictionaryGetValue(statistics,
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebFrameProxy.cpp50 WebContext::statistics().wkFrameCount++;
55 WebContext::statistics().wkFrameCount--;
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/staticstub/conf/
H A Dgood05.conf37 zone-statistics yes;

Completed in 196 milliseconds

1234