reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Object/MachOObjectFile.cpp
 3456   Ptr = Opcodes.begin();
 3461   Ptr = Opcodes.end();
 3477   if (Ptr == Opcodes.end()) {
 3484     const uint8_t *OpcodeStart = Ptr;
 3485     uint8_t Byte = *Ptr++;
 3498         for (const uint8_t *P = Ptr; P < Opcodes.end(); ++P) {
 3596       SymStart = Ptr;
 3597       while (*Ptr && (Ptr < Opcodes.end())) {
 3597       while (*Ptr && (Ptr < Opcodes.end())) {
 3598         ++Ptr;
 3600       if (Ptr == Opcodes.end()) {
 3609                              Ptr-SymStart);
 3610       ++Ptr;
 3926   uint64_t Result = decodeULEB128(Ptr, &Count, Opcodes.end(), error);
 3927   Ptr += Count;
 3928   if (Ptr > Opcodes.end())
 3929     Ptr = Opcodes.end();
 3935   int64_t Result = decodeSLEB128(Ptr, &Count, Opcodes.end(), error);
 3936   Ptr += Count;
 3937   if (Ptr > Opcodes.end())
 3938     Ptr = Opcodes.end();
 3990   return (Ptr == Other.Ptr) &&
 3990   return (Ptr == Other.Ptr) &&