Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 57) sorted by relevance

123

/tools/test/connectivity/acts/tests/google/wifi/
DWifiStressTest.py142 for count in range(self.stress_count):
155 self.stress_count, "Pass":"%d" %count})
157 self.stress_count, "Pass":"%d" %(count+1)})
170 for count in range(self.stress_count):
188 self.stress_count, "Pass":"%d" %count})
190 self.stress_count, "Pass":"%d" %(count+1)})
234 for count in range(int(self.stress_count/4)):
263 "Pass":"%d" %(count*4)})
265 self.stress_count, "Pass":"%d" %((count+1)*4)})
286 for count in range(self.stress_count):
[all …]
DWifiTeleCoexTest.py87 for count in range(stress_count):
88 self.log.debug("stress_toggle_wifi: Iteration %d" % count)
103 for count in range(stress_count):
104 self.log.debug("stress_toggle_airplane: Iteration %d" % count)
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat16BootSector.java176 public void setSectorCount(long count) { in setSectorCount() argument
177 if (count > 65535) { in setSectorCount()
179 setNrTotalSectors(count); in setSectorCount()
181 setNrLogicalSectors((int) count); in setSectorCount()
182 setNrTotalSectors(count); in setSectorCount()
DFat32BootSector.java156 public void setSectorCount(long count) { in setSectorCount() argument
157 super.setNrTotalSectors(count); in setSectorCount()
DClusterChain.java172 int count = nrClusters - chain.length; in setChainLength() local
174 while (count > 0) { in setChainLength()
176 count--; in setChainLength()
DFat.java236 int count = 1; in getChain() local
239 count++; in getChain()
243 long[] chain = new long[count]; in getChain()
/tools/loganalysis/src/com/android/loganalysis/item/
DMonkeyLogItem.java194 public void setTargetCount(int count) { in setTargetCount() argument
195 setAttribute(TARGET_COUNT, count); in setTargetCount()
301 public void setIntermediateCount(int count) { in setIntermediateCount() argument
302 setAttribute(INTERMEDIATE_COUNT, count); in setIntermediateCount()
315 public void setFinalCount(int count) { in setFinalCount() argument
316 setAttribute(FINAL_COUNT, count); in setFinalCount()
329 public void setDroppedCount(DroppedCategory category, int count) { in setDroppedCount() argument
330 setAttribute(category.toString(), count); in setDroppedCount() local
DSmartMonkeyLogItem.java194 public void setTargetInvocations(int count) { in setTargetInvocations() argument
195 setAttribute(TARGET_INVOCATIONS, count); in setTargetInvocations()
277 public void setIntermediateCount(int count) { in setIntermediateCount() argument
278 setAttribute(INTERMEDIATE_COUNT, count); in setIntermediateCount()
293 public void setFinalCount(int count) { in setFinalCount() argument
294 setAttribute(FINAL_COUNT, count); in setFinalCount()
/tools/dexter/slicer/export/slicer/
Dchronometer.h38 elapsed_ += ms.count(); in ~Chronometer()
40 elapsed_ = ms.count(); in ~Chronometer()
Darrayview.h34 ArrayView(T* ptr, size_t count) : begin_(ptr), end_(ptr + count) {} in ArrayView() argument
Dwriter.h85 dex::u4 Init(dex::u4 offset, dex::u4 count) { in Init() argument
86 values_.reset(new T[count]); in Init()
88 count_ = count; in Init()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSimpleStats.java171 int count = 0; in meanOverOneStandardDeviationRange() local
175 count++; in meanOverOneStandardDeviationRange()
178 return sum / count; in meanOverOneStandardDeviationRange()
DMultiMap.java162 int count = 1; in getUniqueMap() local
164 if (count == 1) { in getUniqueMap()
168 addUniqueEntry(uniqueMap, String.format("%s%d", entry.getKey(), count), value); in getUniqueMap()
170 count++; in getUniqueMap()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DGranularRetriableTestWrapper.java220 int count = 0; in run() local
221 while (count < mMaxRunLimit) { in run()
223 count += 1; in run()
230 if (count == mMaxRunLimit) { in run()
/tools/dexter/testdata/expected/
Dmin.map2 Sections summary: name, offset, size [count]
Dexit_hooks.map2 Sections summary: name, offset, size [count]
Dentry_hooks.map2 Sections summary: name, offset, size [count]
Dtry_catch.map2 Sections summary: name, offset, size [count]
Dhello_nodebug.map2 Sections summary: name, offset, size [count]
Dhello.map2 Sections summary: name, offset, size [count]
Dmedium.map2 Sections summary: name, offset, size [count]
Dlarge.map2 Sections summary: name, offset, size [count]
/tools/dexter/slicer/
Dinstrumentation.cc358 void AllocateScratchRegs::Allocate(lir::CodeIr* code_ir, dex::u4 first_reg, int count) { in Allocate() argument
359 SLICER_CHECK(count > 0 && count <= left_to_allocate_); in Allocate()
360 code_ir->ir_method->code->registers += count; in Allocate()
361 left_to_allocate_ -= count; in Allocate()
362 for (int i = 0; i < count; ++i) { in Allocate()
DAndroid.bp29 "-Wno-shift-count-overflow",
/tools/tradefederation/core/src/com/android/tradefed/result/
DCollectingTestListener.java355 int count = 0; in getNumAllFailedTestRuns() local
358 count++; in getNumAllFailedTestRuns()
361 return count; in getNumAllFailedTestRuns()

123