MCPcopy Create free account
hub / github.com/java-native-access/jna / isMIPS

Method isMIPS

src/com/sun/jna/Platform.java:235–243  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

233 }
234
235 public static final boolean isMIPS() {
236 if (ARCH.equals("mips")
237 || ARCH.equals("mips64")
238 || ARCH.equals("mipsel")
239 || ARCH.equals("mips64el")) {
240 return true;
241 }
242 return false;
243 }
244
245 public static final boolean isLoongArch() {
246 return ARCH.startsWith("loongarch");

Callers 1

NativeClass · 0.95

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected