HomeSort by relevance Sort by last modified time
    Searched defs:setCount (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetSetCountUnconditionallyTester.java 22 * A generic JUnit test which tests unconditional {@code setCount()} operations
32 assertEquals("multiset.setCount() should return the old count",
33 getMultiset().count(element), setCount(element, count));
37 setCount(element, count);
40 private int setCount(E element, int count) {
41 return getMultiset().setCount(element, count);
MultisetSetCountConditionallyTester.java 29 * A generic JUnit test which tests conditional {@code setCount()} operations on
40 "setCount() with the correct expected present count should return true",
41 setCount(element, count));
45 setCount(element, count);
48 private boolean setCount(E element, int count) {
49 return getMultiset().setCount(element, getMultiset().count(element), count);
54 getMultiset().setCount(samples.e3, -1, 1);
55 fail("calling setCount() with a negative oldCount should throw "
80 assertFalse("setCount() with a too-large oldCount should return false",
81 getMultiset().setCount(samples.e0, 2, 3))
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
armSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S 64 #define setCount r4
92 @// Note: setCount = grpSize/2 (reuse the updated grpSize for setCount)
104 SUBS setCount,setCount,#1
armSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S 72 #define setCount r4
100 @// Note: setCount = grpSize/2 (reuse the updated grpSize for setCount)
112 SUBS setCount,setCount,#1 @// decrement the loop counter
armSP_FFT_CToC_SC16_Radix2_fs_unsafe_s.S 72 #define setCount r4
104 @// Note: setCount = grpSize/2 (reuse the updated grpSize for setCount)
116 SUBS setCount,setCount,#1 @// decrement the loop counter
armSP_FFT_CToC_FC32_Radix2_unsafe_s.S 63 #define setCount r8
117 MOV setCount,pointStep,LSR #3
132 SUBS setCount,setCount,#2
armSP_FFT_CToC_SC16_Radix2_unsafe_s.S 71 #define setCount r8
124 MOV setCount,pointStep,LSR #2
136 SUBS setCount,setCount,#4
armSP_FFT_CToC_SC32_Radix2_unsafe_s.S 71 #define setCount r8
124 MOV setCount,pointStep,LSR #3
137 SUBS setCount,setCount,#2
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.cpp 47 void SkTypefacePlayback::setCount(int count) {
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/arm64/
armSP_FFT_CToC_FC32_Radix2_fs_s.S 65 #define setCount x8
94 // Note: setCount = grpSize/2 (reuse the updated grpSize for setCount)
106 SUBS setCount,setCount,#1
armSP_FFT_CToC_FC32_Radix2_s.S 66 #define setCount x13
120 lsr setCount, pointStep, #3
135 SUBS setCount,setCount,#2
armSP_FFT_CToC_FC32_Radix4_fs_s.S 61 // Reuse grpSize as setCount
62 #define setCount x7
117 // Note: setCount = subFFTNum/4 (reuse the grpSize reg for setCount)
152 // Decrement setcount
153 SUBS setCount,setCount,#2
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
armSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S 61 #define setCount r14
88 @// Note: setCount = grpSize/2 (reuse the updated grpSize for setCount)
103 SUBS setCount,setCount,#1 @// decrement the loop counter
armSP_FFT_CToC_FC32_Radix4_fs_unsafe_s.S 61 #define setCount r14 /*@// Reuse grpSize as setCount*/
95 @// Note: setCount = grpSize/4 (reuse the updated grpSize for setCount)
122 @// Decrement setcount
123 SUBS setCount,setCount,#1
armSP_FFT_CToC_FC32_Radix4_unsafe_s.S 61 #define setCount r8
111 @// Use setCount as dummy. It's set correctly below.
112 smull outPointStep, setCount, grpCount, pointStep
117 MOV setCount,pointStep,LSR #3
128 @// Save setCount on stack to reuse the reg
131 ADD pDst,pDst,diff @// pDst += (grpCount-1)*setCount
132 ADD step,step,diff @// step += (grpCount-1)*setCount
282 SUBS setCount,setCount,#1 @// decrement loop counter
armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S 59 #define setCount r14 /*@// Reuse grpSize as setCount*/
111 @// Note: setCount = grpSize/8 (reuse the updated grpSize for
112 @// setCount)
201 @// Decrement setcount
202 SUBS setCount,setCount,#1
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
EventBuilder.java 43 public EventBuilder setCount(int count) {
  /external/guava/guava/src/com/google/common/collect/
Multiset.java 67 * all of these are supported, the {@code setCount} methods as well.
155 int setCount(E element, int count);
159 * {@link #setCount(Object, int)}, provided that the element has the expected
177 boolean setCount(E element, int oldCount, int newCount);
ImmutableSortedMultiset.java 519 public Builder<E> setCount(E element, int count) {
520 super.setCount(element, count);
AbstractMultiset.java 99 public int setCount(E element, int count) {
104 public boolean setCount(E element, int oldCount, int newCount) {
ConcurrentHashMultiset.java 348 @Override public int setCount(E element, int count) {
402 @Override public boolean setCount(E element, int expectedOldCount, int newCount) {
516 ConcurrentHashMultiset.this.setCount(last.getElement(), 0);
560 return multiset.setCount(element, entryCount, 0);
Constraints.java 359 @Override public int setCount(E element, int count) {
361 return delegate.setCount(element, count);
363 @Override public boolean setCount(E element, int oldCount, int newCount) {
365 return delegate.setCount(element, oldCount, newCount);
ForwardingMultiset.java 94 public int setCount(E element, int count) {
95 return delegate().setCount(element, count);
99 public boolean setCount(E element, int oldCount, int newCount) {
100 return delegate().setCount(element, oldCount, newCount);
209 * A sensible definition of {@link #setCount(Object, int)} in terms of {@link
212 * wish to override {@link #setCount(Object, int)} to forward to this
222 * A sensible definition of {@link #setCount(Object, int, int)} in terms of
223 * {@link #count(Object)} and {@link #setCount(Object, int)}. If you override
224 * either of these methods, you may wish to override {@link #setCount(Object,
  /external/chromium_org/third_party/icu/source/i18n/
digitlst.cpp 316 DigitList::setCount(int32_t c) {
  /external/chromium_org/third_party/skia/src/animator/
SkTDArray_Experimental.h 80 void setCount(U16CPU count)

Completed in 219 milliseconds

1 2 3