Home | History | Annotate | Download | only in memcheck

Lines Matching defs:ppc

1155 static Bool parse_Addr_pair ( const HChar** ppc, Addr* result1, Addr* result2 )
1157 Bool ok = VG_(parse_Addr) (ppc, result1);
1160 if (**ppc != '-')
1162 (*ppc)++;
1163 ok = VG_(parse_Addr) (ppc, result2);
1172 static Bool parse_UInt_pair ( const HChar** ppc, UInt* result1, UInt* result2 )
1174 Bool ok = VG_(parse_UInt) (ppc, result1);
1177 if (**ppc != '-')
1179 (*ppc)++;
1180 ok = VG_(parse_UInt) (ppc, result2);
1193 const HChar** ppc = &str;
1197 Bool ok = parse_Addr_pair(ppc, &start, &end);
1203 if (**ppc == 0)
1205 if (**ppc != ',')
1207 (*ppc)++;