HomeSort by relevance Sort by last modified time
    Searched full:increment (Results 201 - 225 of 1961) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/src/
counters.cc 64 counter_.Increment(milliseconds);
heap-inl.h 197 isolate_->counters()->objs_since_last_full()->Increment();
198 isolate_->counters()->objs_since_last_young()->Increment();
265 isolate_->counters()->objs_since_last_full()->Increment();
266 isolate_->counters()->objs_since_last_young()->Increment();
283 isolate_->counters()->objs_since_last_full()->Increment();
284 isolate_->counters()->objs_since_last_young()->Increment();
532 ISOLATE->counters()->gc_last_resort_from_handles()->Increment(); \
685 isolate_->counters()->transcendental_cache_hit()->Increment();
689 isolate_->counters()->transcendental_cache_miss()->Increment();
  /external/v8/test/mjsunit/tools/
profile.js 234 Driver.prototype.increment = function(func, self, total) {
248 this.increment(name, 0, 1);
257 this.increment(func, 1, 0);
263 this.increment(this.namesTopDown[this.namesTopDown.length - 1], 1, 0);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputHLSL.cpp 1567 int increment = 0; local
1699 out << increment; local
    [all...]
  /external/zlib/
inffast.c 13 /* Allow machine dependent optimization for post-increment or pre-increment.
15 Pre-increment preferred for:
18 Post-increment preferred for:
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
bitbuffer.h 57 write bits to bitstream buffer => increment cntBits
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
Menu.java 69 // TestShellActivity will process this intent once and increment the test index
  /frameworks/native/include/utils/
List.h 136 inline _Iter& operator++() { // pre-increment
140 const _Iter operator++(int) { // post-increment
145 inline _Iter& operator--() { // pre-increment
149 const _Iter operator--(int) { // post-increment
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingSwitch.java 54 // Add content descriptions for the increment and decrement buttons.
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingSwitch.java 55 // Add content descriptions for the increment and decrement buttons.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
dn.h 12 * so increment each by one (compared to ULTRIX)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
spray.x 64 * Just throw away the data and increment the counter
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
dn.h 12 * so increment each by one (compared to ULTRIX)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.x 64 * Just throw away the data and increment the counter
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
dn.h 12 * so increment each by one (compared to ULTRIX)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.x 64 * Just throw away the data and increment the counter
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DebugPortManager.java 26 * increment this value for each new <code>Client</code>.
  /system/core/include/sysutils/
List.h 137 inline _Iter& operator++() { // pre-increment
141 const _Iter operator++(int) { // post-increment
146 inline _Iter& operator--() { // pre-increment
150 const _Iter operator--(int) { // post-increment
  /system/netd/
List.h 137 inline _Iter& operator++() { // pre-increment
141 const _Iter operator++(int) { // post-increment
146 inline _Iter& operator--() { // pre-increment
150 const _Iter operator--(int) { // post-increment
  /frameworks/base/core/java/android/widget/
NumberPicker.java 66 * presents the current value as an editable input field with an increment button
176 * The increment button.
286 * The {@link Drawable} for pressed virtual (increment/decrement) buttons.
428 * Whether the increment virtual button is pressed.
605 if (v.getId() == R.id.increment) {
617 if (v.getId() == R.id.increment) {
626 // increment button
628 mIncrementButton = (ImageButton) findViewById(R.id.increment);
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 73 void increment(T &x) { function
82 increment(inc);
  /external/guava/guava/src/com/google/common/math/
DoubleUtils.java 165 boolean increment = (twiceSignifFloor & 1) != 0
167 long signifRounded = increment ? signifFloor + 1 : signifFloor;
LongMath.java 313 boolean increment;
319 increment = false;
322 increment = true;
325 increment = signum > 0;
328 increment = signum < 0;
338 increment = (mode == HALF_UP | (mode == HALF_EVEN & (div & 1) != 0));
340 increment = cmpRemToHalfDivisor > 0; // closer to the UP value
346 return increment ? div + signum : div;
  /external/icu4c/common/unicode/
uiter.h 191 * Return the code unit at the current index and increment
192 * the index (post-increment, like s[i++]),
196 * @return the current code unit (and post-increment the current index)
428 * (public) Return the code unit at the current index and increment
429 * the index (post-increment, like s[i++]),
499 * Return the code point at the current index and increment
500 * the index (post-increment, like s[i++]),
504 * @return the current code point (and post-increment the current index)
  /external/icu4c/io/
ufmt_cmn.c 153 /* increment our count */
186 /* increment the count consumed */

Completed in 653 milliseconds

1 2 3 4 5 6 7 891011>>