/external/oprofile/daemon/ |
opd_mangling.c | 69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) 73 struct opd_event * event = find_counter_event(counter); 142 struct sfile * sf, int counter, int cg) 150 mangled = mangle_filename(last, sf, counter, cg); 193 fill_header(odb_get_data(file), counter, local
|
/external/oprofile/libop/ |
op_alloc_counter.c | 3 * hardware counter allocation 23 /** the head of allowed counter for this event */ 29 /** counter nr */ 30 int counter; member in struct:counter_arc 31 /** the next counter allowed for this event */ 40 * build an array of counter list allowed for each events 41 * counter_arc_head[i] is the list of allowed counter for pev[i] events 61 arc->counter = j; 62 /* we are looping by increasing counter number, 64 * so we add at end to ensure counter wil [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1PRNG_SecureRandomImpl.java | 62 // MASK - mask to select counter's bytes after shift to right 85 // COUNTER_BASE - initial value to set to "counter" before computing "nextBytes(..)"; 142 private transient long counter; field in class:SHA1PRNG_SecureRandomImpl 181 counter = COUNTER_BASE; 271 * the current seed with a 64-bit counter appended is used to compute new bits. 272 * The counter is incremented by 1 for each 20-byte output. <BR> 315 // seed bytes < 48 - remaining bytes are enough for all, 8 counter bytes, 317 // 48 < seed bytes < 56 - remaining 9 bytes are for 0x80 and 8 counter bytes 319 // seed bytes > 55 - extra frame contains both counter's bytes 370 seed[lastWord] = (int) (counter >>> 32) [all...] |
/external/chromium_org/gpu/command_buffer/tests/ |
gl_bind_uniform_location_unittest.cc | 147 int counter = 0; local 148 int matrix_location = counter++; 149 int color_a_location = counter++; 150 int color_b_location = counter++; 151 int alpha_location = counter++; 152 int multiplier_location = counter++; 153 int color_c_location = counter++;
|
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsa_gen.c | 145 int counter=0; local 254 counter=0; 261 if ((counter != 0) && !BN_GENCB_call(cb, 0, counter)) 312 counter++; 316 if (counter >= 4096) break; 358 if (counter_ret != NULL) *counter_ret=counter;
|
/external/openssl/crypto/dsa/ |
dsa_gen.c | 145 int counter=0; local 254 counter=0; 261 if ((counter != 0) && !BN_GENCB_call(cb, 0, counter)) 312 counter++; 316 if (counter >= 4096) break; 358 if (counter_ret != NULL) *counter_ret=counter;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
DSAParametersGenerator.java | 163 for (int counter = 0; counter < 4096; ++counter) 193 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter)); 267 // 11. For counter = 0 to (4L ? 1) do 269 for (int counter = 0; counter < counterLimit; ++counter) 310 // (optionally) the values of domain_parameter_seed and counter. 316 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter, usageIndex)) [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
chvr_filter.cpp | 35 int index, counter; local 84 for (br = mbr + 1; br < mbr + 3; br++) /* br is the row counter in blocks */ 91 for (bc = mbc; bc < mbc + 2; bc++) /* bc is the column counter in blocks */ 153 for (counter = 0; counter < 5; counter++) 156 sum = sum - v[counter] + *ptr_n; 248 for (br = mbr; br < mbr + 2; br++) /* br is the row counter in blocks */ 250 for (bc = mbc + 1; bc < mbc + 3; bc++) /* bc is the column counter in blocks */ 311 for (counter = 0; counter < 5; counter++ [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BEROctetString.java | 78 int counter = 0; 82 return counter < octs.length; 87 return octs[counter++];
|
/external/eigen/test/ |
schur_complex.cpp | 20 for(int counter = 0; counter < g_repeat; ++counter) {
|
schur_real.cpp | 43 for(int counter = 0; counter < g_repeat; ++counter) {
|
/external/guava/guava-tests/test/com/google/common/io/ |
MultiInputStreamTest.java | 50 final int[] counter = new int[1]; local 54 if (counter[0]++ != 0) { 60 counter[0]--;
|
MultiReaderTest.java | 36 final int[] counter = new int[1]; local 40 if (counter[0]++ != 0) { 46 counter[0]--;
|
/frameworks/compile/mclinker/unittests/ |
LinearAllocatorTest.cpp | 111 int counter = 0; 113 ASSERT_EQ(counter, (*data).one); 114 ++counter; 120 int counter = 0; local 125 pointer->one = counter; 127 ++counter; 132 counter = 0; 134 ASSERT_EQ(counter, (*data).one); 135 ++counter;
|
RTLinearAllocatorTest.cpp | 112 int counter = 0; 114 ASSERT_EQ(counter, (*data).one); 115 ++counter; 121 int counter = 0; local 126 pointer->one = counter; 128 ++counter; 133 counter = 0; 135 ASSERT_EQ(counter, (*data).one); 136 ++counter;
|
/libcore/luni/src/test/java/libcore/java/lang/ref/ |
FinalizeTest.java | 133 public void createChainedFinalizer(final AtomicInteger counter, final AtomicBoolean keepGoing) { 136 int count = counter.incrementAndGet(); 139 createChainedFinalizer(counter, keepGoing); // recursive!
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldSocketImplFactoryTest.java | 66 int counter = 0; local 69 counter++; 74 if(counter == 1) {
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
ContentHandlerFactoryTest.java | 93 int counter = 0; local 96 counter++; 101 if(counter == 1) {
|
/libcore/luni/src/test/java/tests/api/java/util/ |
StringTokenizerTest.java | 115 for (int counter = 0; counter < 5; counter++) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
formatter.py | 45 def add_label_data(self, format, counter, blankline=None): pass 115 def add_label_data(self, format, counter, blankline = None): 121 self.writer.send_label_data(self.format_counter(format, counter)) 127 def format_counter(self, format, counter): 131 label = label + ('%d' % counter) 133 if counter > 0: 134 label = label + self.format_letter(c, counter) 136 if counter > 0: 137 label = label + self.format_roman(c, counter) 142 def format_letter(self, case, counter) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
formatter.py | 45 def add_label_data(self, format, counter, blankline=None): pass 115 def add_label_data(self, format, counter, blankline = None): 121 self.writer.send_label_data(self.format_counter(format, counter)) 127 def format_counter(self, format, counter): 131 label = label + ('%d' % counter) 133 if counter > 0: 134 label = label + self.format_letter(c, counter) 136 if counter > 0: 137 label = label + self.format_roman(c, counter) 142 def format_letter(self, case, counter) [all...] |
/external/chromium_org/tools/stats_viewer/ |
stats_table.cs | 60 // The name of the counter
64 // A counter.
106 public StatsCounterRate(StatsCounter counter, StatsTimer timer) {
107 counter_ = counter;
212 // Counter names table
366 /// Create a counter based on an entry
400 // Example: A counter + a timer == a rate!
401 private void UpgradeCounter(IStatsCounter old_counter, IStatsCounter counter)
403 if (old_counter is StatsCounter && counter is StatsTimer)
406 counter as StatsTimer); [all...] |
/external/opencv/cvaux/src/ |
cvhmm1d.cpp | 322 int* counter; /* array of counters for every state */ 339 /* integer counter is allocated for every state */ 340 counter = (int*)icvAlloc( total * sizeof(int) ); 347 memset( counter, 0 , total*sizeof(int) ); 383 samples[state][counter[state]] = vector; 384 samples_mix[state][counter[state]] = &(obs->mix[i]); 385 counter[state]++; 390 memset( counter, 0, total*sizeof(int) ); 430 icvFree( &counter ); 835 /* as a counter we will use transP matrix * [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
LinkedHashSetTest.java | 85 for (int counter = 0; counter < objArray.length; counter++) 87 .contains(objArray[counter]));
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
NamespaceSupport.java | 275 private int counter = 0;
field in class:NamespaceSupport.Prefixes 290 return (counter< size);
297 if (counter< size){
298 return fPrefixes[counter++];
|