Lines Matching full:loc
127 int* loc = GetPtr();
128 if (loc) *loc = value;
133 int* loc = GetPtr();
134 if (loc) (*loc)++;
138 int* loc = GetPtr();
139 if (loc)
140 (*loc) += value;
145 int* loc = GetPtr();
146 if (loc) (*loc)--;
150 int* loc = GetPtr();
151 if (loc) (*loc) -= value;
164 int* loc = GetPtr();
165 ASSERT(loc != NULL);
166 return loc;