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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/
instruction_packing-006.s 1 ;; sequence control operands need to be packed with nop's
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
empty.s 1 # An empty source file for tests that need no instructions.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
nan-2008.s 3 # We need some section contents for the ELF header flag compatibility check
nan-legacy.s 3 # We need some section contents for the ELF header flag compatibility check
  /frameworks/support/compat/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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
le-fpconst.s 2 # These need ARM specific support because 8 byte fp constants in little
  /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);
  /external/avahi/initscript/gentoo/
avahi-daemon.in 10 need dbus
avahi-dnsconfd.in 8 need avahi-daemon
  /external/v8/third_party/binutils/Linux_x64/Release/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.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)
  /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)
  /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)
  /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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
pop-op.s 2 # No need to check the canonical three constants.

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>