HomeSort by relevance Sort by last modified time
    Searched defs:newbuf (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/main/java/java/io/
CharArrayWriter.java 85 char[] newbuf = new char[newLen]; local
86 System.arraycopy(buf, 0, newbuf, 0, count);
87 buf = newbuf;
BufferedReader.java 143 char[] newbuf = new char[newLength]; local
144 System.arraycopy(buf, 0, newbuf, 0, buf.length);
145 buf = newbuf;
  /external/e2fsprogs/util/
subst.c 275 char oldbuf[2048], newbuf[2048], *oldcp, *newcp; local
289 newcp = fgets(newbuf, sizeof(newbuf), new_f);
294 if (!oldcp || !newcp || strcmp(oldbuf, newbuf)) {
  /external/ipsec-tools/src/libipsec/
ipsec_dump_policy.c 102 char *newbuf; local
257 newbuf = (char *)realloc(buf, buflen);
258 if (newbuf == NULL) {
263 buf = newbuf;
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio_gsxb.c 419 Uint8 *newbuf; local
428 newbuf = SDL_MintAudio_audiobuf[SDL_MintAudio_numbuf];
429 Setbuffer(0, newbuf, newbuf + SDL_MintAudio_audiosize);
  /external/bluetooth/bluez/src/
sdp-xml.c 738 char *newbuf; local
740 newbuf = malloc(elem->size * 2);
741 if (!newbuf)
744 memcpy(newbuf, elem->text, elem->size);
748 elem->text = newbuf;
  /external/chromium/third_party/libevent/
buffer.c 279 void *newbuf; local
289 if ((newbuf = realloc(buf->buffer, length)) == NULL)
292 buf->orig_buffer = buf->buffer = newbuf;
  /frameworks/base/core/java/android/database/
CursorWindow.java 356 char[] newbuf = copyStringToBuffer_native( local
358 if (newbuf != null) {
359 buffer.data = newbuf;
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduComposer.java 338 mStack.newbuf();
541 mStack.newbuf();
629 mStack.newbuf();
848 mStack.newbuf(); // Switching buffer because we need to
904 mStack.newbuf(); // Leaving space for header lengh and data length
907 mStack.newbuf(); // Leaving space for Content-Type length
1065 void newbuf() { method in class:PduComposer.BufferStack
    [all...]
  /external/libxml2/
SAX2.c 2475 xmlChar *newbuf; local
    [all...]
tree.c 7057 xmlChar *newbuf; local
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.c 54 unsigned char *newbuf; local
73 newbuf = realloc(pr->buf, len);
74 if (newbuf == NULL)
76 pr->buf = newbuf;
    [all...]
  /external/quake/quake/src/QW/client/
gl_screen.c 837 unsigned char *newbuf, *srcbuf; local
879 newbuf = malloc(glheight * glwidth * 3);
881 glReadPixels (glx, gly, glwidth, glheight, GL_RGB, GL_UNSIGNED_BYTE, newbuf );
890 dest = newbuf + (w*3 * y);
904 src = newbuf + (glwidth * 3 * dy) + dx * 3;
923 src = newbuf + (w * 3 * y);
924 dest = newbuf + (w * y);
935 SCR_DrawStringToSnap (st, newbuf, w - strlen(st)*8, h - 1, w);
939 SCR_DrawStringToSnap (st, newbuf, w - strlen(st)*8, h - 11, w);
943 SCR_DrawStringToSnap (st, newbuf, w - strlen(st)*8, h - 21, w)
    [all...]
screen.c 787 unsigned char *newbuf, *srcbuf; local
845 newbuf = malloc(w*h);
848 dest = newbuf + (w * y);
881 SCR_DrawStringToSnap (st, newbuf, w - strlen(st)*8, 0, w);
885 SCR_DrawStringToSnap (st, newbuf, w - strlen(st)*8, 10, w);
889 SCR_DrawStringToSnap (st, newbuf, w - strlen(st)*8, 20, w);
891 WritePCXfile (pcxname, newbuf, w, h, w, host_basepal, true);
893 free(newbuf);
  /device/samsung/crespo/alsa-lib/src/seq/
seq.c 1231 char *newbuf; local
1259 snd_seq_event_t *newbuf; local
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 1388 milliseconds