HomeSort by relevance Sort by last modified time
    Searched refs:IS_EVEN (Results 1 - 10 of 10) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 35 private static final String IS_EVEN = "IS_EVEN";
49 curGroupMap.put(IS_EVEN, (i % 2 == 0) ? "This group is even" : "This group is odd");
56 curChildMap.put(IS_EVEN, (j % 2 == 0) ? "This child is even" : "This child is odd");
66 new String[] { NAME, IS_EVEN },
70 new String[] { NAME, IS_EVEN },
  /frameworks/media/libvideoeditor/vss/video_filters/src/
M4VIFI_ResizeRGB565toRGB565.c 68 if ((IS_EVEN(pPlaneIn->u_height) == FALSE) ||
69 (IS_EVEN(pPlaneOut->u_height) == FALSE)) {
73 if ((IS_EVEN(pPlaneIn->u_width) == FALSE) ||
74 (IS_EVEN(pPlaneOut->u_width) == FALSE)) {
M4VIFI_ResizeRGB888toRGB888.c 80 if ((IS_EVEN(pPlaneIn->u_height) == FALSE) ||
81 (IS_EVEN(pPlaneOut->u_height) == FALSE))
86 if ((IS_EVEN(pPlaneIn->u_width) == FALSE) ||
87 (IS_EVEN(pPlaneOut->u_width) == FALSE))
M4VFL_transition.c 262 #ifndef IS_EVEN
263 #define IS_EVEN(a) (!(a & 0x01))
302 if( (IS_EVEN(pPlaneIn1[0].u_height) == FALSE) ||
303 (IS_EVEN(pPlaneIn2[0].u_height) == FALSE) ||
304 (IS_EVEN(pPlaneOut[0].u_height) == FALSE) ||
312 if( (IS_EVEN(pPlaneIn1[0].u_width) == FALSE) ||
313 (IS_EVEN(pPlaneIn2[0].u_width) == FALSE) ||
314 (IS_EVEN(pPlaneOut[0].u_width) == FALSE) ||
M4VIFI_ResizeYUVtoBGR565.c 86 u32_check_size = IS_EVEN(pPlaneIn[0].u_height);
91 u32_check_size = IS_EVEN(pPlaneIn[0].u_width);
M4VIFI_ResizeYUVtoRGB565.c 89 u32_check_size = IS_EVEN(pPlaneIn[0].u_height);
94 u32_check_size = IS_EVEN(pPlaneIn[0].u_width);
  /cts/tests/src/android/app/cts/
ExpandableListTestActivity.java 39 private static final String IS_EVEN = "IS_EVEN";
56 curGroupMap.put(IS_EVEN, (i % 2 == 0) ? "This group is even" : "This group is odd");
63 curChildMap.put(IS_EVEN, (j % 2 == 0) ? "This child is even" : "This child is odd");
71 new String[] { NAME, IS_EVEN }, new int[] { R.id.text1, R.id.text2 }, childData,
73 new String[] { NAME, IS_EVEN }, new int[] { R.id.text1, R.id.text2 });
  /frameworks/media/libvideoeditor/vss/common/inc/
M4VIFI_Defines.h 142 #ifndef IS_EVEN
143 #define IS_EVEN(a) (!(a & 0x01))
  /external/icu4c/common/
uiter.cpp 26 #define IS_EVEN(n) (((n)&1)==0)
27 #define IS_POINTER_EVEN(p) IS_EVEN((size_t)p)
323 if(s!=NULL && (length==-1 || (length>=0 && IS_EVEN(length)))) {
  /frameworks/media/libvideoeditor/lvpp/
VideoEditorTools.cpp     [all...]

Completed in 1013 milliseconds