HomeSort by relevance Sort by last modified time
    Searched full:localbuf (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 145 private int fillbuf(InputStream localIn, byte[] localBuf)
149 int result = localIn.read(localBuf);
157 if (markpos == 0 && marklimit > localBuf.length) {
159 int newLength = localBuf.length * 2;
164 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length);
167 localBuf = buf = newbuf;
169 System.arraycopy(localBuf, markpos, localBuf, 0, localBuf.lengt
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
RecyclableBufferedInputStream.java 121 private int fillbuf(InputStream localIn, byte[] localBuf)
125 int result = localIn.read(localBuf);
133 //Added count == localBuf.length so that we do not immediately double the buffer size before reading any data
134 // when marklimit > localBuf.length. Instead, we will double the buffer size only after reading the initial
135 // localBuf worth of data without finding what we're looking for in the stream. This allows us to set a
138 if (markpos == 0 && marklimit > localBuf.length && count == localBuf.length) {
140 int newLength = localBuf.length * 2;
145 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 402 unsigned char *localbuf = info->buf; local
405 YASM_WRITE_8(localbuf, RDFREC_SEGRELOC);
407 YASM_WRITE_8(localbuf, RDFREC_RELOC);
408 YASM_WRITE_8(localbuf, 8); /* record length */
410 YASM_WRITE_8(localbuf, rsd->scnum +
412 yasm_intnum_get_sized(reloc->reloc.addr, localbuf, 4, 32, 0, 0, 0);
413 localbuf += 4; /* offset of relocation */
414 YASM_WRITE_8(localbuf, reloc->size); /* size of relocation */
415 YASM_WRITE_16_L(localbuf, reloc->refseg); /* relocated symbol */
429 unsigned char *localbuf; local
528 unsigned char *localbuf; local
671 unsigned char *localbuf; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
macho-objfmt.c 654 unsigned char *localbuf = info->buf; local
659 yasm_intnum_get_sized(reloc->reloc.addr, localbuf, 4, 32, 0, 0, 0);
660 localbuf += 4; /* address of relocation */
674 YASM_WRITE_32_L(localbuf,
735 unsigned char *localbuf; local
742 localbuf = info->buf;
744 memset(localbuf, 0, 16);
745 strncpy((char *)localbuf, msd->sectname, 16);
746 localbuf += 16;
747 memset(localbuf, 0, 16)
845 unsigned char *localbuf; local
1036 unsigned char *localbuf; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
xdf-objfmt.c 339 unsigned char *localbuf = info->buf; local
347 yasm_intnum_get_sized(reloc->reloc.addr, localbuf, 4, 32, 0, 0, 0);
348 localbuf += 4; /* address of relocation */
349 YASM_WRITE_32_L(localbuf, xsymd->index); /* relocated symbol */
355 YASM_WRITE_32_L(localbuf, xsymd->index); /* base symbol */
360 YASM_WRITE_32_L(localbuf, 0); /* no base symbol */
362 YASM_WRITE_8(localbuf, reloc->type); /* type of relocation */
363 YASM_WRITE_8(localbuf, reloc->size); /* size of relocation */
364 YASM_WRITE_8(localbuf, reloc->shift); /* relocation shift */
365 YASM_WRITE_8(localbuf, 0); /* flags *
381 unsigned char *localbuf; local
463 unsigned char *localbuf; local
544 unsigned char *localbuf; local
    [all...]
  /external/e2fsprogs/lib/et/
vfprintf.c 33 char localbuf[BUFSIZ]; local
37 iop->_ptr = iop->_base = localbuf;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.c 769 unsigned char *localbuf; local
890 unsigned char *localbuf; local
1001 unsigned char *localbuf; local
1169 unsigned char *localbuf; local
    [all...]
  /external/llvm/lib/Support/
regerror.c 123 regatoi(const llvm_regex_t *preg, char *localbuf, int localbufsize)
133 (void)snprintf(localbuf, localbufsize, "%d", r->code);
134 return(localbuf);
  /ndk/sources/host-tools/ndk-stack/regex/
regerror.c 118 regatoi(const regex_t *preg, char *localbuf, int localbufsize)
128 (void)snprintf(localbuf, localbufsize, "%d", r->code);
129 return(localbuf);
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 106 static const char *regatoi(const regex_t *preg, char *localbuf, size_t buflen);
204 * static const char *regatoi(const regex_t *preg, char *localbuf,
210 char *localbuf,
221 (void)snprintf(localbuf, buflen, "%d", r->code);
222 return localbuf;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
poplib.py 357 localbuf = self.sslobj.read()
358 if len(localbuf) == 0:
360 self.buffer += localbuf
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
poplib.py 357 localbuf = self.sslobj.read()
358 if len(localbuf) == 0:
360 self.buffer += localbuf
  /external/deqp/framework/opengl/
gluDrawUtil.cpp 326 std::vector<deUint8> localBuf(layout.size);
329 copyToLayout(&localBuf[0], layout.attributes[attrNdx], srcArrays[attrNdx]);
332 gl.bufferData(GL_ARRAY_BUFFER, (int)localBuf.size(), &localBuf[0], usage);
  /prebuilts/ndk/5/platforms/android-8/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/6/platforms/android-8/arch-arm/usr/lib/
libc.so 

Completed in 429 milliseconds