Searched refs:Increment (Results 1 - 25 of 123) sorted by last modified time

12345

/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_unittest.cc50 void Increment() { function in class:webrtc::__anon33522::ProtectedCount
94 the_count->Increment();
125 the_count->Increment();
/external/vixl/src/a64/
H A Dinstrument-a64.cc53 void Counter::Increment() { function in class:vixl::Counter
164 // Increment the instruction counter, and dump all counters if a sample period
168 counter->Increment();
258 counter->Increment();
266 counter->Increment();
274 counter->Increment();
286 counter->Increment();
295 counter->Increment();
303 counter->Increment();
311 counter->Increment();
[all...]
H A Dinstrument-a64.h58 void Increment();
/external/webp/src/utils/
H A Dutils.c87 static void Increment(int* const v) { function
158 #define Increment(v) do {} while(0) macro
185 Increment(&num_malloc_calls);
195 Increment(&num_calloc_calls);
205 Increment(&num_free_calls);
/external/valgrind/main/none/tests/arm/
H A Dvfp.stdout.exp904 ---- VLDM (Increment After, writeback) ----
950 ---- VSTM (Increment After, no writeback) ----
983 ---- VSTM (Increment After, writeback) ----
/external/stlport/src/
H A Dsparc_atomic.s36 add %o2, 0x1, %o3 ! Increment and store current
H A Dsparc_atomic64.s34 addx %o2, 0x1, %o3 ! Increment and store current
/external/protobuf/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() { function in class:Counter
H A Dsample4.h47 int Increment();
H A Dsample4_unittest.cc35 // Tests the Increment() method.
36 TEST(Counter, Increment) {
42 EXPECT_EQ(0, c.Increment());
43 EXPECT_EQ(1, c.Increment());
44 EXPECT_EQ(2, c.Increment());
/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h48 void Increment();
51 InstrProfIterator(InstrProfReader *Reader) : Reader(Reader) { Increment(); }
53 InstrProfIterator &operator++() { Increment(); return *this; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp349 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS)); local
364 // Increment the pointers.
367 Increment);
368 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
466 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy()); local
483 // Increment the pointers.
485 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
487 Increment);
3261 // Increment the pointer, VAList, to the next vaarg
H A DLegalizeVectorTypes.cpp815 // Increment the pointer to the other part.
891 // Increment the pointer to the other part.
1393 // Increment the pointer to the other half.
2783 unsigned Increment = NewVTWidth / 8; local
2784 Offset += Increment;
2786 DAG.getConstant(Increment, BasePtr.getValueType()));
2795 isNonTemporal, isInvariant, MinAlign(Align, Increment),
2811 isNonTemporal, isInvariant, MinAlign(Align, Increment),
2901 unsigned Increment = LdEltVT.getSizeInBits() / 8; local
2906 unsigned i = 0, Offset = Increment;
2955 unsigned Increment = NewVTWidth / 8; local
3023 unsigned Increment = ValEltVT.getSizeInBits() / 8; local
[all...]
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp80 void InstrProfIterator::Increment() { function in class:InstrProfIterator
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4646 // Increment the expected index. If it wraps around, just follow it
4677 // Increment the expected index. If it wraps around, it may still be
7746 // Increment index.
8531 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8, local
8545 Increment);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2382 // Increment the address by four for the next argument to store
2401 // Increment the address by eight for the next argument to store
2693 // Increment the address by four for the next argument to store
3059 // Increment the address by four for the next argument to store
8181 SDValue Increment = DAG.getConstant(IncValue, getPointerTy()); local
8182 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
/external/llvm/lib/Target/R600/
H A DSIInsertWaits.cpp207 Counters Increment = getHwCounts(MI); local
211 LastIssued.Array[i] += Increment.Array[i];
212 Sum += Increment.Array[i];
220 if (Increment.Named.EXP) {
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp20846 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
20854 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
20938 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
20957 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
21119 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
21131 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
/external/libhevc/common/arm/
H A Dihevc_sao_edge_offset_class0.s172 ADD r12,r12,r1 @Increment the pu1_src pointer by src_strd
/external/gtest/test/
H A Dgtest-port_test.cc1061 void Increment() { function in class:testing::internal::AtomicCounterWithMutex
1092 param.first->Increment();
/external/clang/lib/Sema/
H A DSemaStmt.cpp1460 // variables Increment and DRE.
1461 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment, argument
1468 Increment = true;
1472 Increment = false;
1485 Increment = true;
1488 Increment = false;
H A DSemaDeclCXX.cpp9398 Expr *Increment local
9405 nullptr, S.MakeFullDiscardedValueExpr(Increment),
/external/clang/test/SemaTemplate/
H A Dalias-church-numerals.cpp32 template<typename A> using Increment = typename IncrementHelper<A>::Result;
34 using Arr = int[TwoHundredAndFiftySix<Increment, Const<int, 0>>::value];
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h911 const Stmt *const Increment = Node.getInc(); local
912 return (Increment != nullptr &&
913 InnerMatcher.matches(*Increment, Finder, Builder));
/external/chromium_org/v8/src/arm/
H A Dcode-stubs-arm.cc112 isolate()->counters()->code_stubs()->Increment();

Completed in 7053 milliseconds

12345