HomeSort by relevance Sort by last modified time
    Searched refs:need (Results 1 - 25 of 844) 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;
  /external/clang/test/Lexer/
string-literal-errors.cpp 27 #define foo() lots and lots of tokens, need at least 8 to fill up the smallvector buffer #BadThingsHappenNow
  /frameworks/base/core/java/android/text/style/
IconMarginSpan.java 60 int need = ht - (v + fm.descent - fm.ascent - istartv); local
61 if (need > 0)
62 fm.descent += need;
64 need = ht - (v + fm.bottom - fm.top - istartv);
65 if (need > 0)
66 fm.bottom += need;
DrawableMarginSpan.java 63 int need = ht - (v + fm.descent - fm.ascent - istartv); local
64 if (need > 0)
65 fm.descent += need;
67 need = ht - (v + fm.bottom - fm.top - istartv);
68 if (need > 0)
69 fm.bottom += 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/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xr 22 *(.need)
i386linux.xu 22 *(.need)
i386linux.x 25 *(.need)
i386linux.xbn 24 *(.need)
i386linux.xn 24 *(.need)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
i386linux.x 21 *(.need)
i386linux.xbn 20 *(.need)
i386linux.xn 20 *(.need)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
i386linux.x 21 *(.need)
i386linux.xbn 20 *(.need)
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xr 22 *(.need)
i386linux.xu 22 *(.need)
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
PositionMap.java 397 static int idealByteArraySize(int need) {
399 if (need <= (1 << i) - 12)
402 return need;
405 static int idealBooleanArraySize(int need) {
406 return idealByteArraySize(need);
409 static int idealShortArraySize(int need) {
410 return idealByteArraySize(need * 2) / 2;
413 static int idealCharArraySize(int need) {
414 return idealByteArraySize(need * 2) / 2;
417 static int idealIntArraySize(int need) {
    [all...]
  /external/droiddriver/
contributing_aosp.md 5 Follow instructions at https://source.android.com/source/downloading.html except those noted below. You need to set up authentication to be able to submit changes.
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 5 // In most cases, you should not need to change these default options in
9 // You need to edit the "zone" statement below to give the name of your
16 // In /etc/named.conf you will need to modify the "options" section to
21 // You also need a "zone" statement in /etc/named.conf to tell BIND the update

Completed in 1306 milliseconds

1 2 3 4 5 6 7 8 91011>>