Home
last modified time | relevance | path

Searched refs:IncrementLoc (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dcounters.cc45 IncrementLoc(ptr_); in Increment()
52 IncrementLoc(ptr_, value); in Increment()
Dcounters.h106 void IncrementLoc(int* loc) { (*loc)++; } in IncrementLoc() function
107 void IncrementLoc(int* loc, int value) { (*loc) += value; } in IncrementLoc() function
132 if (int* loc = GetPtr()) IncrementLoc(loc); in Increment()
136 if (int* loc = GetPtr()) IncrementLoc(loc, value); in Increment()