MCPcopy Create free account
hub / github.com/Genivia/RE-flex / opcode_long

Method opcode_long

include/reflex/pattern.h:1307–1310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1305 return c > META_MIN;
1306 }
1307 static inline Opcode opcode_long(Index index)
1308 {
1309 return 0xff000000 | (index & 0xffffff); // index <= Const::GMAX (0xfeffff max)
1310 }
1311 static inline Opcode opcode_take(Index index)
1312 {
1313 return 0xfe000000 | (index & 0xffffff); // index <= Const::AMAX (0xfdffff max)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected