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

1 2 3 4 5 6 7 8 91011>>

  /system/core/libutils/include/utils/
misc.h 28 #ifndef NELEM
29 # define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
  /frameworks/base/core/jni/android/graphics/
ColorFilter.cpp 80 NELEM(colorfilter_methods));
82 NELEM(porterduff_methods));
84 NELEM(lighting_methods));
86 colormatrix_methods, NELEM(colormatrix_methods));
PathEffect.cpp 105 NELEM(gPathEffectMethods));
107 gComposePathEffectMethods, NELEM(gComposePathEffectMethods));
109 NELEM(gSumPathEffectMethods));
111 NELEM(gDashPathEffectMethods));
113 gPathDashPathEffectMethods, NELEM(gPathDashPathEffectMethods));
115 gCornerPathEffectMethods, NELEM(gCornerPathEffectMethods));
117 gDiscretePathEffectMethods, NELEM(gDiscretePathEffectMethods));
CanvasProperty.cpp 49 NELEM(gMethods));
MaskFilter.cpp 85 NELEM(gMaskFilterMethods));
87 NELEM(gBlurMaskFilterMethods));
89 gEmbossMaskFilterMethods, NELEM(gEmbossMaskFilterMethods));
91 NELEM(gTableMaskFilterMethods));
DrawFilter.cpp 110 NELEM(drawfilter_methods));
112 NELEM(paintflags_methods));
  /frameworks/base/core/jni/
android_os_HidlSupport.cpp 35 return RegisterMethodsOrDie(env, kHidlSupportPathName, gHidlSupportMethods, NELEM(gHidlSupportMethods));
com_android_internal_os_ZygoteInit.cpp 42 gMethods, NELEM(gMethods));
android_app_Activity.cpp 48 return RegisterMethodsOrDie(env, kActivityPathName, g_methods, NELEM(g_methods));
com_android_internal_os_ClassLoaderFactory.cpp 50 return RegisterMethodsOrDie(env, kClassLoaderFactoryPathName, g_methods, NELEM(g_methods));
com_android_internal_util_VirtualRefBasePtr.cpp 45 return RegisterMethodsOrDie(env, kClassPathName, gMethods, NELEM(gMethods));
android_database_SQLiteGlobal.cpp 89 sMethods, NELEM(sMethods));
  /frameworks/base/services/core/jni/
com_android_server_devicepolicy_CryptoTestHelper.cpp 39 env, "com/android/server/devicepolicy/CryptoTestHelper", methods, NELEM(methods));
  /frameworks/rs/rsov/driver/
rsovCore.h 38 #define NELEM(x) (sizeof(x) / sizeof((x)[0]))
  /libcore/luni/src/main/native/
sun_misc_Unsafe.cpp 30 jniRegisterNativeMethods(env, "sun/misc/Unsafe", gMethods, NELEM(gMethods));
java_lang_invoke_MethodHandle.cpp 36 jniRegisterNativeMethods(env, "java/lang/invoke/MethodHandle", gMethods, NELEM(gMethods));
libcore_io_AsynchronousCloseMonitor.cpp 35 jniRegisterNativeMethods(env, "libcore/io/AsynchronousCloseMonitor", gMethods, NELEM(gMethods));
libcore_util_NativeAllocationRegistry.cpp 37 gMethods, NELEM(gMethods));
  /libcore/dalvik/src/main/native/
org_apache_harmony_dalvik_NativeTestTarget.cpp 74 jniRegisterNativeMethods(env, "org/apache/harmony/dalvik/NativeTestTarget", gMethods_NormalOnly, NELEM(gMethods_NormalOnly));
75 jniRegisterNativeMethods(env, "org/apache/harmony/dalvik/NativeTestTarget", gMethods, NELEM(gMethods));
76 jniRegisterNativeMethods(env, "org/apache/harmony/dalvik/NativeTestTarget", gMethods_Fast, NELEM(gMethods_Fast));
77 jniRegisterNativeMethods(env, "org/apache/harmony/dalvik/NativeTestTarget", gMethods_Critical, NELEM(gMethods_Critical));
  /libcore/ojluni/src/main/native/
String.c 43 jniRegisterNativeMethods(env, "java/lang/String", gMethods, NELEM(gMethods));
  /frameworks/minikin/tests/unittest/
WordBreakerTests.cpp 28 #ifndef NELEM
29 #define NELEM(x) ((sizeof(x) / sizeof((x)[0])))
39 breaker.setText(buf, NELEM(buf));
46 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end
56 breaker.setText(buf, NELEM(buf));
63 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end
73 breaker.setText(buf, NELEM(buf));
75 EXPECT_EQ((ssize_t)NELEM(buf), breaker.followingWithLocale(Locale("en-US"), 0));
77 EXPECT_EQ((ssize_t)NELEM(buf), breaker.wordEnd());
84 breaker.setText(buf, NELEM(buf))
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
fiptool.h 18 #define NELEM(x) (sizeof (x) / sizeof *(x))
  /frameworks/native/opengl/libs/
hooks.h 39 #undef NELEM
40 #define NELEM(x) (sizeof(x)/sizeof(*(x)))
  /art/benchmark/micro-native/
micro_native.cc 24 #define NELEM(x) (sizeof(x)/sizeof((x)[0]))
132 jniRegisterNativeMethods(env, CLASS_NAME, gMethods_NormalOnly, NELEM(gMethods_NormalOnly));
133 jniRegisterNativeMethods(env, CLASS_NAME, gMethods, NELEM(gMethods));
134 jniRegisterNativeMethods(env, CLASS_NAME, gMethods_Fast, NELEM(gMethods_Fast));
138 jniRegisterNativeMethods(env, CLASS_NAME, gMethods_Critical, NELEM(gMethods_Critical));
  /frameworks/base/native/webview/plat_support/
draw_gl_functor.cpp 34 #define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
77 COMPILE_ASSERT(NELEM(aw_info.transform) == NELEM(gl_info->transform),
79 for (int i = 0; i < NELEM(aw_info.transform); ++i) {
158 int res = env->RegisterNatives(clazz, kJniMethods, NELEM(kJniMethods));

Completed in 537 milliseconds

1 2 3 4 5 6 7 8 91011>>