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

12 3 4 5 6 7 8 910

  /dalvik/vm/mterp/armv5te/
OP_MONITOR_ENTER.S 11 EXPORT_PC() @ need for precise GC, MONITOR_TRACKING
  /dalvik/vm/mterp/x86/
OP_MONITOR_ENTER.S 13 EXPORT_PC() # need for precise GC, MONITOR_TRACKING
OP_SGET.S 34 EXPORT_PC() # could throw, need to export
OP_SGET_WIDE.S 35 EXPORT_PC() # could throw, need to export
  /hardware/libhardware/
Android.mk 23 # need "-lrt" on Linux simulator to pick up clock_gettime
  /system/extras/tests/framebuffer/
Android.mk 16 # need this for clock_gettime()
  /dalvik/vm/arch/arm/
CallOldABI.S 88 @ Standard gcc stack frame setup. We don't need to push the original
96 @ We need to push a variable number of arguments onto the stack.
100 @ In theory we don't need to keep sp -- we can do an ldmdb instead of
107 @ argv can't go into r0-r3 because we need to use it to load those.
119 @ to the stack. We need to push the last item in argv first, and we
157 @ In theory, we need to use the "return type" arg to figure out what
159 @ all we need to do is copy r0-r1 into the JValue union.
  /external/zlib/contrib/blast/
blast.c 56 * Return need bits from the input stream. This always leaves less than
57 * eight bits in the buffer. bits() works properly for need == 0.
66 local int bits(struct state *s, int need)
70 /* load at least need bits into val */
72 while (s->bitcnt < need) {
82 /* drop need bits and update buffer, always zero to seven bits left */
83 s->bitbuf = val >> need;
84 s->bitcnt -= need;
86 /* return need bits, zeroing the bits above that */
87 return val & ((1 << need) - 1)
    [all...]
  /frameworks/base/opengl/libs/
Android.mk 29 # we need to access the private Bionic header <bionic_tls.h>
83 # we need to access the private Bionic header <bionic_tls.h>
119 # we need to access the private Bionic header <bionic_tls.h>
  /bionic/libstdc++/
Android.mk 4 # Note that we need to access private Bionic headers
  /build/target/product/
generic_x86.mk 2 # It includes the base Android platform. If you need Google-specific features,
  /dalvik/vm/mterp/x86-atom/
OP_SHR_LONG.S 39 cmpl $$0, 4(rFP, %edx, 4) # check if we need to consider sign
  /external/expat/
Android.mk 3 # We need to build this for both the device (as a shared library)
  /external/libpng/
Android.mk 3 # We need to build this for both the device (as a shared library)
  /external/libxml2/
Android.mk 3 # We need to build this for both the device (as a shared library)
  /external/netcat/data/
showmount.d 33 000 # procedure number -- put what you need here:
  /frameworks/base/services/surfaceflinger/
Android.mk 31 # need "-lrt" on Linux simulator to pick up clock_gettime
  /hardware/libhardware_legacy/
Android.mk 24 # need "-lrt" on Linux simulator to pick up clock_gettime
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLServerSocketImpl.java 182 public void setNeedClientAuth(boolean need) {
183 sslParameters.setNeedClientAuth(need);
  /system/core/init/
Android.mk 46 # We need this so that the installed files could be picked up based on the
  /external/oprofile/libabi/
abi.cpp 38 int abi::need(string const key) const throw (abi_exception) function in class:abi
  /external/chromium/third_party/libevent/
buffer.c 38 /* If we have vasprintf, we need to define this before we include stdio.h. */
115 * Optimization comes with a price; we need to notify the
266 size_t need = buf->misalign + buf->off + datlen; local
269 if (buf->totallen >= need)
284 while (length < need)
302 size_t need = buf->misalign + buf->off + datlen; local
305 if (buf->totallen < need) {
  /external/wpa_supplicant/
md4.c 62 * except that you don't need to include two pages of legalese
118 size_t have, need; local
120 /* Check how many bytes we already have and how many more we need. */
122 need = MD4_BLOCK_LENGTH - have;
127 if (len >= need) {
129 os_memcpy(ctx->buffer + have, input, need);
131 input += need;
132 len -= need;
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md4.c 62 * except that you don't need to include two pages of legalese
118 size_t have, need; local
120 /* Check how many bytes we already have and how many more we need. */
122 need = MD4_BLOCK_LENGTH - have;
127 if (len >= need) {
129 os_memcpy(ctx->buffer + have, input, need);
131 input += need;
132 len -= need;
  /dalvik/libdex/
Android.mk 46 ifneq ($(SDK_ONLY),true) # SDK_only doesn't need device version

Completed in 662 milliseconds

12 3 4 5 6 7 8 910