Home | History | Annotate | Download | only in src

Lines Matching full:loc

124     int* loc = GetPtr();
125 if (loc) *loc = value;
130 int* loc = GetPtr();
131 if (loc) (*loc)++;
135 int* loc = GetPtr();
136 if (loc)
137 (*loc) += value;
142 int* loc = GetPtr();
143 if (loc) (*loc)--;
147 int* loc = GetPtr();
148 if (loc) (*loc) -= value;
161 int* loc = GetPtr();
162 ASSERT(loc != NULL);
163 return loc;