Searched refs:count (Results 251 - 275 of 1592) sorted by relevance

<<11121314151617181920>>

/frameworks/av/include/media/nbaio/
H A DPipeReader.h48 virtual ssize_t read(void *buffer, size_t count);
/frameworks/av/media/img_utils/include/img_utils/
H A DByteArrayOutput.h49 * Write bytes from the given buffer. The number of bytes given in the count
55 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
H A DFileInput.h52 * of bytes given in the count argument will be read. Bytes will be written
58 virtual ssize_t read(uint8_t* buf, size_t offset, size_t count);
H A DFileOutput.h35 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
/frameworks/av/media/libmedia/include/media/
H A DEventMetric.h26 // The count of times the event occurred.
27 int64_t count; member in struct:android::EventStatistics
37 // var = sum_squared_deviation / count;
84 // Increment the count of times the operation occurred with this
91 stats->mean = stats->mean + (deviation / stats->count);
94 stats->count++;
101 stats->count = 1;
/frameworks/av/media/libnbaio/include/media/nbaio/
H A DAudioBufferProviderSource.h45 virtual ssize_t read(void *buffer, size_t count);
H A DPipe.h57 virtual ssize_t write(const void *buffer, size_t count);
H A DPipeReader.h48 virtual ssize_t read(void *buffer, size_t count);
/frameworks/av/media/libnbaio/include_mono/media/nbaio/
H A DNBAIO.h54 // attributes, rather than a struct with separate fields for format, sample rate, channel count,
58 // Sample rate and channel count are explicit, PCM interleaved 16-bit is assumed.
73 // Convert a sample rate in Hz and channel count to an NBAIO_Format
80 // Return the channel count of an NBAIO_Format
84 typedef ssize_t (*writeVia_t)(void *user, void *buffer, size_t count);
85 typedef ssize_t (*readVia_t)(void *user, const void *buffer, size_t count);
161 // larger transfer count, however it will make a good faith effort to give an accurate estimate.
177 // count Maximum number of frames to transfer.
187 virtual ssize_t write(const void *buffer, size_t count) = 0;
196 // block Number of frames per block, that is a suggested value for 'count' i
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dton_stab.h95 Word16 count; member in struct:__anon532
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityButtonController.java159 for (int i = 0, count = entries.size(); i < count; i++) {
184 for (int i = 0, count = entries.size(); i < count; i++) {
/frameworks/base/core/java/android/net/metrics/
H A DWakeupStats.java119 int count = ethertypes.valueAt(i);
120 j.add(String.format("ethertype 0x%x: %d", eth, count));
124 int count = ipNextHeaders.valueAt(i);
125 j.add(String.format("ipNxtHdr %d: %d", proto, count));
/frameworks/base/core/java/com/android/internal/util/
H A DProcFileReader.java75 private void consumeBuf(int count) throws IOException { argument
78 System.arraycopy(mBuffer, count, mBuffer, 0, mTail - count);
79 mTail -= count;
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java132 int count = mSounds.length;
133 for (int index = 0; index < count; index++) {
154 int count = mScale.length;
155 for (int step = 0; step < count; step++) {
176 int count = mScale.length;
186 for (int step = 1; step < count; step++) {
261 for (int count = 0; count < 5; count++) {
288 for (int count
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/fuelgauge/
H A DBatterySaverUtils.java107 final int count =
109 Secure.putInt(cr, Secure.LOW_POWER_MANUAL_ACTIVATION_COUNT, count);
113 if ((count >= parameters.startNth)
114 && (count <= parameters.endNth)
/frameworks/base/tests/WindowAnimationJank/src/android/windowanimationjank/
H A DFlowLayout.java41 final int count = getChildCount();
54 for (int i = 0; i < count; i++) {
92 final int count = getChildCount();
97 for (int i = 0; i < count; i++) {
/frameworks/base/tools/aapt/
H A DWorkQueue.cpp82 size_t count = mWorkUnits.size(); local
83 for (size_t i = 0; i < count; i++) {
107 size_t count = mWorkThreads.size(); local
108 for (size_t i = 0; i < count; i++) {
/frameworks/native/cmds/dumpstate/
H A DDumpstateSectionReporter.cpp36 listener_->onSectionComplete(title_, status_, size_, (int32_t)elapsed.count());
/frameworks/native/include/binder/
H A DDebug.h42 ssize_t getBinderKernelReferences(size_t count, uintptr_t* buf);
/frameworks/native/libs/binder/include/binder/
H A DDebug.h42 ssize_t getBinderKernelReferences(size_t count, uintptr_t* buf);
/frameworks/native/services/sensorservice/
H A DBatteryService.cpp44 info.count++;
45 return info.count == 1;
53 info.count--;
54 return info.count == 0;
H A DCorrectedGyroSensor.h38 CorrectedGyroSensor(sensor_t const* list, size_t count);
H A DGravitySensor.h38 GravitySensor(sensor_t const* list, size_t count);
H A DLinearAccelerationSensor.h41 LinearAccelerationSensor(sensor_t const* list, size_t count);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DFakeSmsContentProvider.java57 "count INTEGER," + // the number of parts
95 int count = 0;
100 count = db.update(RAW_TABLE_NAME, cv, selection, selectionArgs);
104 count = db.delete(RAW_TABLE_NAME, selection, selectionArgs);
107 return count;

Completed in 1638 milliseconds

<<11121314151617181920>>