HomeSort by relevance Sort by last modified time
    Searched defs:getauxval (Results 1 - 3 of 3) sorted by null

  /bionic/libc/bionic/
getauxval.cpp 37 extern "C" unsigned long int getauxval(unsigned long int type) { function
  /bionic/libc/private/
KernelArgumentBlock.h 52 // Similar to ::getauxval but doesn't require the libc global variables to be set up,
55 unsigned long getauxval(unsigned long type, bool* found_match = NULL) { function in class:KernelArgumentBlock
  /external/openssl/crypto/
armcap.c 37 * Use a weak reference to getauxval() so we can use it if it is available but
42 extern unsigned long getauxval(unsigned long type) __attribute__((weak));
44 static unsigned long (*getauxval)(unsigned long) = NULL; variable
103 if (getauxval != NULL)
105 if (getauxval(HWCAP) & HWCAP_NEON)
107 unsigned long hwcap = getauxval(HWCAP_CE);

Completed in 700 milliseconds