HomeSort by relevance Sort by last modified time
    Searched refs:NELEM (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /system/core/include/utils/
misc.h 26 #ifndef NELEM
27 # define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
  /libcore/luni/src/main/native/
java_nio_ByteOrder.cpp 31 jniRegisterNativeMethods(env, "java/nio/ByteOrder", gMethods, NELEM(gMethods));
libcore_io_AsynchronousCloseMonitor.cpp 34 jniRegisterNativeMethods(env, "libcore/io/AsynchronousCloseMonitor", gMethods, NELEM(gMethods));
sun_misc_Unsafe.cpp 30 jniRegisterNativeMethods(env, "sun/misc/Unsafe", gMethods, NELEM(gMethods));
java_io_FileDescriptor.cpp 34 jniRegisterNativeMethods(env, "java/io/FileDescriptor", gMethods, NELEM(gMethods));
java_lang_Double.cpp 49 jniRegisterNativeMethods(env, "java/lang/Double", gMethods, NELEM(gMethods));
java_lang_Float.cpp 49 jniRegisterNativeMethods(env, "java/lang/Float", gMethods, NELEM(gMethods));
java_util_zip_Adler32.cpp 44 jniRegisterNativeMethods(env, "java/util/zip/Adler32", gMethods, NELEM(gMethods));
java_util_zip_CRC32.cpp 44 jniRegisterNativeMethods(env, "java/util/zip/CRC32", gMethods, NELEM(gMethods));
  /frameworks/base/core/tests/coretests/apks/install_jni_lib/
com_android_frameworks_coretests_JNITest.cpp 32 NELEM(sMethods));
  /frameworks/base/services/core/jni/
com_android_server_SystemServer.cpp 48 gMethods, NELEM(gMethods));
com_android_server_VibratorService.cpp 58 method_table, NELEM(method_table));
  /frameworks/base/core/jni/android/graphics/
CanvasProperty.cpp 56 return AndroidRuntime::registerNativeMethods(env, kClassPathName, gMethods, NELEM(gMethods));
  /frameworks/base/core/jni/
com_android_internal_util_VirtualRefBasePtr.cpp 45 return AndroidRuntime::registerNativeMethods(env, kClassPathName, gMethods, NELEM(gMethods));
android_database_SQLiteGlobal.cpp 86 sMethods, NELEM(sMethods));
android_hardware_UsbDevice.cpp 58 method_table, NELEM(method_table));
android_database_SQLiteDebug.cpp 86 gMethods, NELEM(gMethods));
android_server_NetworkManagementSocketTagger.cpp 94 return jniRegisterNativeMethods(env, "com/android/server/NetworkManagementSocketTagger", gQTagUidMethods, NELEM(gQTagUidMethods));
  /frameworks/native/opengl/libs/
hooks.h 38 #undef NELEM
39 #define NELEM(x) (sizeof(x)/sizeof(*(x)))
  /frameworks/webview/chromium/plat_support/
draw_gl_functor.cpp 33 #define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
69 COMPILE_ASSERT(NELEM(aw_info.transform) == NELEM(gl_info->transform),
71 for (int i = 0; i < NELEM(aw_info.transform); ++i) {
150 int res = env->RegisterNatives(clazz, kJniMethods, NELEM(kJniMethods));
graphics_utils.cpp 34 #define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
118 int res = env->RegisterNatives(clazz, kJniMethods, NELEM(kJniMethods));
  /libcore/dalvik/src/main/native/
org_apache_harmony_dalvik_NativeTestTarget.cpp 42 return jniRegisterNativeMethods(env, "org/apache/harmony/dalvik/NativeTestTarget", gMethods, NELEM(gMethods));
  /packages/apps/Nfc/nci/jni/
NativeP2pDevice.cpp 91 gMethods, NELEM(gMethods));
  /external/conscrypt/src/compat/native/
JNIHelp.h 32 #ifndef NELEM
33 # define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
  /libnativehelper/include/nativehelper/
JNIHelp.h 32 #ifndef NELEM
33 # define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011