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

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 38 public static int idealByteArraySize(int need) {
40 if (need <= (1 << i) - 12)
43 return need;
46 public static int idealBooleanArraySize(int need) {
47 return idealByteArraySize(need);
50 public static int idealShortArraySize(int need) {
51 return idealByteArraySize(need * 2) / 2;
54 public static int idealCharArraySize(int need) {
55 return idealByteArraySize(need * 2) / 2;
58 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 67 int need = ht - (v + fm.descent - fm.ascent - istartv); local
68 if (need > 0)
69 fm.descent += need;
71 need = ht - (v + fm.bottom - fm.top - istartv);
72 if (need > 0)
73 fm.bottom += need;
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/i686-unknown-linux-gnu/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
i386linux.x 21 *(.need)
i386linux.xbn 21 *(.need)
i386linux.xn 21 *(.need)
  /packages/apps/Gallery3D/src/com/cooliris/media/
LongSparseArray.java 354 public static int idealByteArraySize(int need) {
356 if (need <= (1 << i) - 12)
359 return need;
362 public static int idealBooleanArraySize(int need) {
363 return idealByteArraySize(need);
366 public static int idealShortArraySize(int need) {
367 return idealByteArraySize(need * 2) / 2;
370 public static int idealCharArraySize(int need) {
371 return idealByteArraySize(need * 2) / 2;
374 public static int idealIntArraySize(int need) {
    [all...]
  /dalvik/vm/mterp/x86/
stub.S 3 SAVE_PC_TO_GLUE(%ecx) # only need to export these two
4 SAVE_FP_TO_GLUE(%ecx) # only need to export these two
  /system/core/libnetutils/
Android.mk 14 # need "-lrt" on Linux simulator to pick up clock_gettime
  /external/oprofile/libabi/
abi.h 32 int need(std::string const key) const throw (abi_exception);
opimport.cpp 60 little_endian = theabi.need(string("little_endian")) == 1;
79 + theabi.need(off);
80 size_t nbytes = theabi.need(sz);
116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4);
134 src += abi.need("sizeof_struct_opd_header");
140 src += abi.need("sizeof_odb_descr_t");
144 src += abi.need("sizeof_odb_node_t");
147 unsigned int step = abi.need("sizeof_odb_node_t");
  /external/wpa_supplicant/
bignum.c 83 size_t need = mp_unsigned_bin_size((mp_int *) n); local
84 if (len && need > *len) {
85 *len = need;
93 *len = need;
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
bignum.c 83 size_t need = mp_unsigned_bin_size((mp_int *) n); local
84 if (len && need > *len) {
85 *len = need;
93 *len = need;
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_CMPL_FLOAT.S 36 mov r9, r0 @ Save copies - we may need to redo
  /dalvik/vm/mterp/armv5te/
stub.S 2 SAVE_PC_FP_TO_GLUE() @ only need to export these two
  /external/chromium/third_party/icu/source/test/testdata/
tstfiles.mk 4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
  /external/icu4c/test/testdata/
tstfiles.mk 4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
  /frameworks/base/cmds/bootanimation/
Android.mk 8 # need "-lrt" on Linux simulator to pick up clock_gettime
  /frameworks/base/media/libstagefright/codecs/common/
Config.mk 16 # Do we also need to check on ARCH_ARM_HAVE_ARMV7A? - probably not
  /frameworks/base/services/sensorservice/
Android.mk 15 # need "-lrt" on Linux simulator to pick up clock_gettime
  /external/webkit/WebCore/bindings/v8/
ScriptCachedFrameData.h 88 #error You need to consider whether you want Page Cache and either add a stub or a real implementation.
  /frameworks/base/opengl/libagl/
Android.mk 42 # we need to access the private Bionic header <bionic_tls.h>
43 # on ARM platforms, we need to mirror the ARCH_ARM_HAVE_TLS_REGISTER
  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocket.java 159 * @param need
163 public abstract void setNeedClientAuth(boolean need);

Completed in 616 milliseconds

1 2 3 4 5 6 7 8 910