HomeSort by relevance Sort by last modified time
    Searched refs:increment (Results 176 - 200 of 543) sorted by null

1 2 3 4 5 6 78 91011>>

  /dalvik/vm/alloc/
HeapSource.cpp 332 void* dvmHeapSourceMorecore(void* mspace, intptr_t increment)
346 if (increment != 0) {
347 char* new_brk = original_brk + increment;
348 if (increment > 0) {
352 mprotect(original_brk, increment, PROT_READ | PROT_WRITE);
355 assert(original_brk + increment > heap->base);
357 size_t size = -increment;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 14 // Edges are instrumented to increment the path number register, such that the
127 // increment. Notice this is incrementing the path counter
129 // increment is determined by getIncrement().
133 // Get/set the path number increment that this edge will be instrumented
134 // with. This is distinct from the path counter increment and the
135 // weight. The counter increment counts the number of executions of
139 void setIncrement(long increment);
149 // The increment that the code will be instrumented with.
158 // Whether this edge is a path counter increment.
201 // increment and initialization
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 544 SecI != SecE; SecI.increment(EC)) {
552 RelI != RelE; RelI.increment(EC)) {
658 SecI != SecE; SecI.increment(EC)) {
688 RelI != RelE; RelI.increment(EC)) {
699 SymI != SymE; SymI.increment(EC)) {
726 SecI != SecE; SecI.increment(EC)) {
738 RelI != RelE; RelI.increment(EC)) {
791 SymI != SymE; SymI.increment(EC)) {
    [all...]
  /external/chromium_org/media/base/
audio_buffer_unittest.cc 17 float increment) {
20 "i=%d/%d start=%f, increment=%f", i, frames, start, increment));
22 start += increment;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
OutputHLSL.cpp 2166 int increment = 0; local
2321 out << increment; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_clone.cpp 154 if (this->increment)
155 new_loop->increment = this->increment->clone(mem_ctx, ht);
ir_validate.cpp 123 if ((ir->from == NULL) || (ir->to == NULL) || (ir->increment == NULL)) {
128 " increment: %p\n",
130 (void *) ir->increment);
139 if ((ir->from != NULL) || (ir->to != NULL) || (ir->increment != NULL)) {
144 " increment: %p\n",
146 (void *) ir->increment);
ir_hv_accept.cpp 107 if (this->increment) {
108 s = this->increment->accept(v);
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8TestUtil.java 171 long increment = LIM / numShards;
175 increment * i,
176 increment * (i + 1),
  /external/mesa3d/src/glsl/
ir_clone.cpp 154 if (this->increment)
155 new_loop->increment = this->increment->clone(mem_ctx, ht);
ir_validate.cpp 123 if ((ir->from == NULL) || (ir->to == NULL) || (ir->increment == NULL)) {
128 " increment: %p\n",
130 (void *) ir->increment);
139 if ((ir->from != NULL) || (ir->to != NULL) || (ir->increment != NULL)) {
144 " increment: %p\n",
146 (void *) ir->increment);
  /frameworks/base/core/java/android/widget/
NumberPicker.java 68 * presents the current value as an editable input field with an increment button
201 * The increment button.
311 * The {@link Drawable} for pressed virtual (increment/decrement) buttons.
453 * Whether the increment virtual button is pressed.
635 if (v.getId() == R.id.increment) {
647 if (v.getId() == R.id.increment) {
656 // increment button
658 mIncrementButton = (ImageButton) findViewById(R.id.increment);
    [all...]
  /art/runtime/gc/space/
dlmalloc_space.h 71 void* MoreCore(intptr_t increment);
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 105 public void visitIincInsn(int var, int increment) {
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityNodeObject.h 188 virtual void increment() OVERRIDE;
  /external/chromium_org/third_party/WebKit/public/web/
WebAccessibilityObject.h 170 WEBKIT_EXPORT bool increment() const;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h 394 static void SbrkHook(const void* result, ptrdiff_t increment);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h 331 static void SbrkHook(const void* result, ptrdiff_t increment);
heap-profiler.cc 391 static void SbrkHook(const void* result, ptrdiff_t increment) {
394 increment, (uintptr_t) result);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.cc 64 extern "C" PERFTOOLS_DLL_DECL void* __sbrk(ptrdiff_t increment) {
  /external/eigen/blas/
dspr.f 53 * On entry, INCX specifies the increment for the elements of
122 * Set the start point in X if the increment is not unity.
sspr.f 53 * On entry, INCX specifies the increment for the elements of
122 * Set the start point in X if the increment is not unity.
  /external/llvm/include/llvm/Support/
FileSystem.h 875 directory_iterator &increment(error_code &ec) { function in class:llvm::sys::fs::directory_iterator
922 recursive_directory_iterator &increment(error_code &ec) { function in class:llvm::sys::fs::recursive_directory_iterator
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingKnob.java 98 mNextButton = (Button) findViewById(R.id.increment);
108 // Add content descriptions for the increment and decrement buttons.
  /external/chromium_org/content/renderer/dom_storage/
dom_storage_dispatcher.cc 48 int IncrementPendingCountN(int increment) {
50 pending_count_ += increment;

Completed in 1099 milliseconds

1 2 3 4 5 6 78 91011>>