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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v4/java/android/support/v4/util/
ContainerHelpers.java 24 public static int idealIntArraySize(int need) {
25 return idealByteArraySize(need * 4) / 4;
28 public static int idealLongArraySize(int need) {
29 return idealByteArraySize(need * 8) / 8;
32 public static int idealByteArraySize(int need) {
34 if (need <= (1 << i) - 12)
37 return need;
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 37 public static int idealByteArraySize(int need) {
39 if (need <= (1 << i) - 12)
42 return need;
45 public static int idealBooleanArraySize(int need) {
46 return idealByteArraySize(need);
49 public static int idealShortArraySize(int need) {
50 return idealByteArraySize(need * 2) / 2;
53 public static int idealCharArraySize(int need) {
54 return idealByteArraySize(need * 2) / 2;
57 public static int idealIntArraySize(int need) {
    [all...]
  /frameworks/base/core/java/android/text/style/
IconMarginSpan.java 61 int need = ht - (v + fm.descent - fm.ascent - istartv); local
62 if (need > 0)
63 fm.descent += need;
65 need = ht - (v + fm.bottom - fm.top - istartv);
66 if (need > 0)
67 fm.bottom += need;
DrawableMarginSpan.java 64 int need = ht - (v + fm.descent - fm.ascent - istartv); local
65 if (need > 0)
66 fm.descent += need;
68 need = ht - (v + fm.bottom - fm.top - istartv);
69 if (need > 0)
70 fm.bottom += need;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_resolve_map.c 33 * changed to the given value of \c need.
39 enum gen6_hiz_op need)
46 (*tail)->need = need;
58 (*tail)->need = need;
intel_resolve_map.h 59 * There are two possible ways to record which miptree slices need
62 * those slices that need a resolve.
78 enum gen6_hiz_op need; member in struct:intel_resolve_map
88 enum gen6_hiz_op need);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_resolve_map.c 33 * changed to the given value of \c need.
39 enum gen6_hiz_op need)
46 (*tail)->need = need;
58 (*tail)->need = need;
intel_resolve_map.h 59 * There are two possible ways to record which miptree slices need
62 * those slices that need a resolve.
78 enum gen6_hiz_op need; member in struct:intel_resolve_map
88 enum gen6_hiz_op need);
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/i686-linux-android/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/i686-linux-android/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/i686-linux-android/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.7/i686-linux-android/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /external/smack/src/org/xbill/DNS/
DNSOutput.java 56 need(int n) { method in class:DNSOutput
111 need(1);
122 need(2);
149 need(4);
164 need(len);
188 need(1 + s.length);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_config.h 58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file)
60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_config.h 58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file)
60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)

Completed in 3429 milliseconds

1 2 3 4 5 6 7 8 91011>>