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

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 127 * Make sure we have 'need' elements from current position p. Last valid
128 * p index is data.size()-1. p+need-1 is the data index 'need' elements
129 * ahead. If we need 1 element, (p+1-1)==p must be < data.size().
132 protected virtual void SyncAhead( int need )
134 int n = ( _p + need - 1 ) - _data.Count + 1; // how many more elements we need?
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
LookaheadStream.h 82 /** Make sure we have 'need' elements from current position p. Last valid
83 * p index is data.size()-1. p+need-1 is the data index 'need' elements
84 * ahead. If we need 1 element, (p+1-1)==p must be < data.size().
86 public void sync(int need) {
87 int n = (p+need-1) - data.size() + 1; // how many more elements we need?
ANTLRLookaheadStream.h 58 - (void) sync:(NSInteger) need;
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLServerSocketImpl.java 152 public void setNeedClientAuth(boolean need) {
153 sslParameters.setNeedClientAuth(need);
  /external/jmonkeyengine/
Android.mk 15 # stripped out even if they're compiled into the jar. You will need
  /external/llvm/test/MC/X86/AlignedBundling/
long-nop-pad.s 16 # To align this group to a bundle end, we need a 15-byte NOP and a 12-byte NOP.
25 # To align this group to a bundle end, we need two 15-byte NOPs, and a 1-byte.
pad-bundle-groups.s 20 # We'll need a 6-byte NOP before this group
41 # And here we'll need a 11-byte NOP
  /external/nanopb-c/generator/
protoc-gen-nanopb.bat 8 :: path is already set up properly and there is no need to give
  /frameworks/av/media/libstagefright/codecs/hevcdec/
Android.mk 23 # We need this because the current asm generates the following link error:
  /frameworks/native/opengl/libs/GLES_trace/
Android.mk 28 # we need to access the private Bionic header <bionic_tls.h>
  /packages/apps/Browser/
Android.mk 22 # We need the sound recorder for the Media Capture API.
  /external/elfutils/src/libdwfl/
segment.c 54 size_t need = need_start + need_end; local
55 if (need == 0)
58 if (dwfl->lookup_alloc - dwfl->lookup_elts < need)
92 memmove (&dwfl->lookup_addr[i + need], &dwfl->lookup_addr[i],
94 memmove (&dwfl->lookup_segndx[i + need], &dwfl->lookup_segndx[i],
97 memmove (&dwfl->lookup_module[i + need], &dwfl->lookup_module[i],
120 dwfl->lookup_elts += need;
  /external/openssh/
bitmap.c 169 size_t i, j, k, need = bitmap_nbytes(b); local
171 if (l < need || b->top >= b->len)
173 if (l > need)
174 l = need;
180 s[need - 1 - k++] = (b->d[i] >> (j * 8)) & 0xff;
dh.c 258 dh_gen_key(DH *dh, int need)
262 if (need < 0 || dh->p == NULL ||
264 need > INT_MAX / 2 || 2 * need >= pbits)
270 dh->length = MIN(need * 2, pbits - 1);
296 * This just returns the group, we still need to generate the exchange
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseArray.java 370 public static int idealIntArraySize(int need) {
371 return idealByteArraySize(need * 4) / 4;
374 public static int idealByteArraySize(int need) {
376 if (need <= (1 << i) - 12)
379 return need;
  /external/zlib/src/contrib/blast/
blast.c 58 * Return need bits from the input stream. This always leaves less than
59 * eight bits in the buffer. bits() works properly for need == 0.
68 local int bits(struct state *s, int need)
72 /* load at least need bits into val */
74 while (s->bitcnt < need) {
84 /* drop need bits and update buffer, always zero to seven bits left */
85 s->bitbuf = val >> need;
86 s->bitcnt -= need;
88 /* return need bits, zeroing the bits above that */
89 return val & ((1 << need) - 1)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
GroupingListAdapter.java 169 * Scans over the entire cursor looking for duplicate phone numbers that need
204 private int idealLongArraySize(int need) {
205 return idealByteArraySize(need * 8) / 8;
209 private int idealByteArraySize(int need) {
211 if (need <= (1 << i) - 12)
214 return need;
  /frameworks/native/libs/input/tests/
Android.mk 27 # NOTE: This is a compile time test, and does not need to be
  /frameworks/native/opengl/libagl/
Android.mk 41 # we need to access the private Bionic header <bionic_tls.h>
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRLookaheadStream.h 53 - (void) sync:(NSInteger) need;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRLookaheadStream.h 53 - (void) sync:(NSInteger) need;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRLookaheadStream.h 53 - (void) sync:(NSInteger) need;
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLServerSocketTest.java 127 public void setNeedClientAuth(boolean need) {
  /external/llvm/test/MC/ARM/
macho-relocs-with-addend.s 5 @ (scattered) still need to have the type set correctly.
  /external/vboot_reference/scripts/image_signing/
set_lsb_release.sh 51 # If there are no key/value pairs to process, we don't need write access.

Completed in 542 milliseconds

1 23 4 5 6 7 8 91011>>