These methods are written outside Java in "native" code, that is, specific to the given machine. The ones you mention are part of the JDK but you can also write them yourself using the Java Native Interface (JNI).
This would normally use C to write the methods, but a lot of other languages, such as python allow you to write methods this way fairly easily.
Code is written this way either for performance, or because it needs to access platform specific infrastructure which cannot be done in plain java.
In the case of hashcodehashcode(), this is because often the hashcode will be related to the objects location in memory, which can only be accessed at the native level.
