HomeSort by relevance Sort by last modified time
    Searched full:increment (Results 101 - 125 of 3761) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
atomic_count.hpp 23 inline void increment(atomic_count& a, long b) { a += b; } function in namespace:asio::detail
  /external/skia/include/private/
SkSemaphore.h 17 // Increment the counter by 1.
28 // Increment the counter N times.
66 * - You can only increment or decrement it, never read or write it.
67 * - Increment is spelled 'signal()'; decrement is spelled 'wait()'.
  /external/skia/tools/lua/
agg_dash.lua 13 function increment(table, tableKey, key, value) function
  /external/v8/src/base/
atomicops_internals_atomicword_compat.h 40 AtomicWord increment) {
42 reinterpret_cast<volatile Atomic32*>(ptr), increment);
46 AtomicWord increment) {
48 reinterpret_cast<volatile Atomic32*>(ptr), increment);
atomicops_internals_mips_gcc.h 66 // Atomically increment *ptr by "increment". Returns the new value of
67 // *ptr with the increment applied. This routine implies no memory barriers.
69 Atomic32 increment) {
76 "addu %1, %0, %2\n" // temp2 = temp + increment
79 "addu %1, %0, %2\n" // temp2 = temp + increment
82 : "Ir" (increment), "r" (ptr)
89 Atomic32 increment) {
91 Atomic32 res = NoBarrier_AtomicIncrement(ptr, increment);
  /frameworks/base/libs/hwui/renderstate/
Stencil.h 48 * into. An increment threshold of zero causes the stencil to use a constant reference value
49 * and GL_EQUAL for the test. A non-zero increment threshold causes the stencil to use that
57 * buffer for each fragment. An increment threshold of zero causes the stencil to use a constant
58 * reference value and GL_EQUAL for the test. A non-zero increment threshold causes the stencil
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
increment.rs 19 int4 RS_KERNEL increment(int4 in)
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 94 // Atomically increment *ptr by "increment". Returns the new value of
95 // *ptr with the increment applied. This routine implies no memory barriers.
97 Atomic32 increment) {
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
110 : "Ir" (increment), "m" (*ptr)
117 Atomic32 increment) {
119 Atomic32 res = NoBarrier_AtomicIncrement(ptr, increment);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 94 // Atomically increment *ptr by "increment". Returns the new value of
95 // *ptr with the increment applied. This routine implies no memory barriers.
97 Atomic32 increment) {
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
110 : "Ir" (increment), "m" (*ptr)
117 Atomic32 increment) {
119 Atomic32 res = NoBarrier_AtomicIncrement(ptr, increment);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 94 // Atomically increment *ptr by "increment". Returns the new value of
95 // *ptr with the increment applied. This routine implies no memory barriers.
97 Atomic32 increment) {
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
110 : "Ir" (increment), "m" (*ptr)
117 Atomic32 increment) {
119 Atomic32 res = NoBarrier_AtomicIncrement(ptr, increment);
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 94 // Atomically increment *ptr by "increment". Returns the new value of
95 // *ptr with the increment applied. This routine implies no memory barriers.
97 Atomic32 increment) {
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
110 : "Ir" (increment), "m" (*ptr)
117 Atomic32 increment) {
119 Atomic32 res = NoBarrier_AtomicIncrement(ptr, increment);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
unwind-3.d 9 Stack increment 56
  /external/mesa3d/src/glsl/
loop_controls.cpp 85 calculate_iterations(ir_rvalue *from, ir_rvalue *to, ir_rvalue *increment,
88 if (from == NULL || to == NULL || increment == NULL)
97 new(mem_ctx) ir_expression(ir_binop_div, sub->type, sub, increment);
126 iter = (increment->type->is_integer())
131 new(mem_ctx) ir_expression(ir_binop_mul, increment->type, iter,
132 increment);
190 if(ir->from && ir->to && ir->increment)
191 max_iterations = calculate_iterations(ir->from, ir->to, ir->increment, (ir_expression_operation)ir->cmp);
245 lv->increment,
254 ir->increment = lv->increment->clone(ir, NULL)
    [all...]
  /cts/tests/tests/transition/src/android/transition/cts/
PathMotionTest.java 35 float increment = minLength / 5f; local
36 for (float along = 0; along <= minLength; along += increment) {
  /external/clang/test/SemaCXX/
bitfield.cpp 23 typedef __typeof__(++t.n) Unsigned; // Increment is equivalent to compound-assignment.
28 typedef __typeof__(t.n++) Unsigned; // Post-increment's result has the type
bool.cpp 3 // RUN: -Wno-deprecated -Wdeprecated-increment-bool %s
11 // bool cannot be decremented, and gives a warning on increment
unreachable-code.cpp 8 ++i) { // expected-warning {{loop will run at most once (loop increment never executed)}}
20 ++i) { // expected-warning {{loop will run at most once (loop increment never executed)}}
  /external/clang/test/SemaObjC/
error-implicit-property.m 18 arg.P++; // expected-error {{no getter method 'P' for increment of property}}
22 arg.P++; // expected-error {{no setter method 'setP:' for increment of property}}
  /external/llvm/test/CodeGen/AArch64/
arm64-2011-10-18-LdStOptBug.ll 3 ; Can't fold the increment by 1<<12 into a post-increment load
  /external/llvm/test/Transforms/PGOProfile/
loop2.ll 12 ; GEN-NOT: call void @llvm.instrprof.increment
17 ; GEN-NOT: call void @llvm.instrprof.increment
27 ; GEN-NOT: call void @llvm.instrprof.increment
32 ; GEN-NOT: call void @llvm.instrprof.increment
42 ; GEN-NOT: call void @llvm.instrprof.increment
48 ; GEN: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([15 x i8], [15 x i8]* @__profn_test_nested_for, i32 0, i32 0), i64 53929068288, i32 3, i32 0)
58 ; GEN: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([15 x i8], [15 x i8]* @__profn_test_nested_for, i32 0, i32 0), i64 53929068288, i32 3, i32 1)
64 ; GEN: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([15 x i8], [15 x i8]* @__profn_test_nested_for, i32 0, i32 0), i64 53929068288, i32 3, i32 2)
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_macosx.h 67 Atomic32 increment) {
68 return OSAtomicAdd32(increment, const_cast<Atomic32*>(ptr));
72 Atomic32 increment) {
73 return OSAtomicAdd32Barrier(increment, const_cast<Atomic32*>(ptr));
158 Atomic64 increment) {
159 return OSAtomicAdd64(increment, reinterpret_cast<volatile int64_t*>(ptr));
163 Atomic64 increment) {
164 return OSAtomicAdd64Barrier(increment,
  /external/webrtc/webrtc/base/
event_tracer_unittest.cc 28 void Increment() {
58 TestStatistics::Get()->Increment();
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
copy_altivec.asm 40 add r3, r3, r4 ;# increment source pointer
41 add r5, r5, r6 ;# increment destination pointer
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FocusLogic.java 98 newIndex = handleDpadHorizontal(iconIdx, cntX, cntY, map, -1 /*increment*/, isRtl);
106 newIndex = handleDpadHorizontal(iconIdx, cntX, cntY, map, 1 /*increment*/, isRtl);
114 newIndex = handleDpadVertical(iconIdx, cntX, cntY, map, 1 /*increment*/);
117 newIndex = handleDpadVertical(iconIdx, cntX, cntY, map, -1 /*increment*/);
321 int[][] matrix, int increment, boolean isRtl) {
344 for (int x = xPos + increment; 0 <= x && x < cntX; x += increment) {
351 // Rule2: check (x1-n, yPos + increment), (x1-n, yPos - increment)
352 // (x2-n, yPos + 2*increment), (x2-n, yPos - 2*increment
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
once_test.go 14 func (o *one) Increment() {
19 once.Do(func() { o.Increment() })

Completed in 1624 milliseconds

1 2 3 45 6 7 8 91011>>