Home
last modified time | relevance | path

Searched refs:counter (Results 1 – 4 of 4) sorted by relevance

/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
DInsecureSHA1PRNGKeyDerivator.java130 private transient long counter; field in InsecureSHA1PRNGKeyDerivator
213 counter = COUNTER_BASE; in InsecureSHA1PRNGKeyDerivator()
365 seed[lastWord] = (int) (counter >>> 32); in nextBytes()
366 seed[lastWord + 1] = (int) (counter & 0xFFFFFFFF); in nextBytes()
371 seed[lastWord] |= (int) ((counter >>> RIGHT1[n]) & MASK[n]); in nextBytes()
372 seed[lastWord + 1] = (int) ((counter >>> RIGHT2[n]) & 0xFFFFFFFF); in nextBytes()
373 seed[lastWord + 2] = (int) ((counter << LEFT[n]) | END_FLAGS[n]); in nextBytes()
391 counter++; in nextBytes()
/development/samples/browseable/BatchStepSensor/
D_index.jd8 … <p>This sample demonstrates the use of the two step sensors (step detector and counter) and
13 event when a step is detected, while the step counter returns the total number of
/development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
DCounterFragment.java54 mCounterText = (TextView) view.findViewById(R.id.counter); in onCreateView()
/development/scripts/
Dcargo2android.py1201 def claim_module_name(self, prefix, owner, counter): argument
1205 if counter > 0:
1206 name += '_' + str(counter)
1209 counter += 1