HomeSort by relevance Sort by last modified time
    Searched refs:need (Results 76 - 100 of 844) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/python/
embed.i 18 extensions. This file contains everything you need to build
25 may need to provide additional link libraries when compiling.
embed15.i 18 extensions. This file contains everything you need to build
25 may need to provide additional link libraries when compiling.
  /external/openssh/
sshbuf.c 323 size_t rlen, need; local
344 need = len + buf->size - buf->alloc;
345 rlen = roundup(buf->alloc + need, SSHBUF_SIZE_INC);
346 SSHBUF_DBG(("need %zu initial rlen %zu", need, rlen));
348 rlen = buf->alloc + need;
kex.c 589 u_int mode, ctos, need, dh_need, authlen; local
650 need = dh_need = 0;
653 need = MAX(need, newkeys->enc.key_len);
654 need = MAX(need, newkeys->enc.block_size);
655 need = MAX(need, newkeys->enc.iv_len);
656 need = MAX(need, newkeys->mac.key_len)
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 116 * Return need bits from the input stream. This always leaves less than
117 * eight bits in the buffer. bits() works properly for need == 0.
126 local int bits(struct state *s, int need)
130 /* load at least need bits into val */
132 while (s->bitcnt < need) {
139 /* drop need bits and update buffer, always zero to seven bits left */
140 s->bitbuf = (int)(val >> need);
141 s->bitcnt -= need;
143 /* return need bits, zeroing the bits above that */
144 return (int)(val & ((1L << need) - 1))
    [all...]
  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 183 * Scans over the entire cursor looking for duplicate phone numbers that need
218 private int idealLongArraySize(int need) {
219 return idealByteArraySize(need * 8) / 8;
223 private int idealByteArraySize(int need) {
225 if (need <= (1 << i) - 12)
228 return need;
  /cts/tools/utils/
monsoon.py 369 need = (native_hz - offset + FLAGS.hz - 1) / FLAGS.hz
370 if need > len(collected): # still need more input samples
376 # Adjust for consuming 'need' input samples.
377 offset += need * FLAGS.hz
379 this_sample = sum(collected[:need]) / need
394 collected = collected[need:]
  /external/openssh/openbsd-compat/
md5.c 11 * except that you don't need to include two pages of legalese
71 size_t have, need; local
73 /* Check how many bytes we already have and how many more we need. */
75 need = MD5_BLOCK_LENGTH - have;
80 if (len >= need) {
82 memcpy(ctx->buffer + have, input, need);
84 input += need;
85 len -= need;
  /external/vboot_reference/utility/
dev_debug_vboot 264 # Make sure we have the programs we need
265 need="futility"
266 [ -z "${OPT_BIOS}" ] && need="$need flashrom"
267 [ -z "${OPT_KERNEL}" ] && need="$need cgpt"
268 require_utils $need
  /external/wpa_supplicant_8/src/crypto/
md4-internal.c 54 * except that you don't need to include two pages of legalese
110 size_t have, need; local
112 /* Check how many bytes we already have and how many more we need. */
114 need = MD4_BLOCK_LENGTH - have;
119 if (len >= need) {
121 os_memcpy(ctx->buffer + have, input, need);
123 input += need;
124 len -= need;
  /frameworks/av/media/libnbaio/
NBLog.cpp 181 size_t need = entry->mLength + 3; // mEvent, mLength, data[length], mLength local
182 // need = number of bytes remaining to write
183 if (written > need) {
184 written = need;
192 if (rear + written == mSize && (need -= written) > 0) {
193 for (i = 0; i < need; ++i) {
196 written += need;
  /frameworks/native/opengl/libs/
Android.mk 39 # we need to access the private Bionic header <bionic_tls.h>
82 # we need to access the private Bionic header <bionic_tls.h>
110 # we need to access the private Bionic header <bionic_tls.h>
  /development/samples/SupportPercentDemos/
Android.mk 18 # We need to add some special AAPT flags to generate R classes
  /external/lldb/
lldb-build.mk 1 # clang populates much of what we need
  /external/skia/platform_tools/android/examples/hello_skia_app/jni/
Android.mk 34 # jnigraphics defines the function AndroidBitmap_lockPixels, which we need in order to draw into
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
Android.mk 45 # We need to dup libwebrtc_isacfix$(MY_LIB_SUFFIX) because ibwebrtc_isacfix_neon$(MY_LIB_SUFFIX)
  /frameworks/base/media/mca/filterfw/jni/
Android.mk 36 # Need FilterFW lib
39 # Also need the JNI headers.
  /frameworks/base/media/mca/filterfw/native/
libfilterfw.mk 19 # Uncomment the requirements below, once we need them:
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/
Android.mk 25 # comment it out for now since we need use some hidden APIs
  /frameworks/rs/api/
rs_core.spec 27 To use RenderScript, you need to utilize the RenderScript runtime APIs documented here as well
  /ndk/build/core/
prebuilt-static-library.mk 27 # Prebuilt static libraries don't need to be copied to TARGET_OUT
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macresource.py 15 def need(restype, resid, filename=None, modname=None): function
117 need('Estr', 1, filename="errors.rsrc", modname=__name__)
  /build/core/
executable_prefer_symlink.mk 42 # $(my_symlink) doesn't need to depend on $(PRIVATE_SRC_BINARY_NAME): we can generate symlink to nonexistent file.
51 # We need this so that the installed files could be picked up based on the
  /external/fio/tools/
fio_generate_plots 27 echo You need gnuplot installed to generate graphs
  /external/libvncserver/x11vnc/misc/turbovnc/
README 32 implementation. You will need to download it from the VirtualGL
84 If you need additional ./configure options or env. var. settings,
101 You will need a TurboVNC viewer, you can get one here:
114 There is not a big need for graphics card manufacturers to optimize the

Completed in 1376 milliseconds

1 2 34 5 6 7 8 91011>>