HomeSort by relevance Sort by last modified time
    Searched refs:newbuf (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/mesa3d/src/glx/apple/
apple_xgl_api_stereo.c 93 GLenum newbuf[n + 2]; local
106 newbuf[outi++] = bufs[i];
111 newbuf[outi++] = GL_BACK_LEFT;
112 newbuf[outi++] = GL_BACK_RIGHT;
116 newbuf[outi++] = GL_FRONT_LEFT;
117 newbuf[outi++] = GL_FRONT_RIGHT;
120 __ogl_framework_api->DrawBuffers(outi, newbuf);
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 58 final byte [] newbuf = new byte [Math.max (mbuflen << 1, capacity)];
61 for (int i = 0; i < pos; ++ i) newbuf [i] = mbuf [i];
63 System.arraycopy (mbuf, 0, newbuf, 0, pos);
65 m_buf = mbuf = newbuf;
82 final byte [] newbuf = new byte [Math.max (mbuflen << 1, capacity)];
85 for (int i = 0; i < pos; ++ i) newbuf [i] = mbuf [i];
87 System.arraycopy (mbuf, 0, newbuf, 0, pos);
89 m_buf = mbuf = newbuf;
107 final byte [] newbuf = new byte [Math.max (mbuflen << 1, capacity)];
110 for (int i = 0; i < pos; ++ i) newbuf [i] = mbuf [i]
    [all...]
  /external/selinux/libselinux/src/
fgetfilecon.c 24 char *newbuf; local
31 newbuf = realloc(buf, size);
32 if (!newbuf)
35 buf = newbuf;
getfilecon.c 24 char *newbuf; local
31 newbuf = realloc(buf, size);
32 if (!newbuf)
35 buf = newbuf;
getpeercon.c 28 char *newbuf; local
30 newbuf = realloc(buf, size);
31 if (!newbuf)
34 buf = newbuf;
lgetfilecon.c 24 char *newbuf; local
31 newbuf = realloc(buf, size);
32 if (!newbuf)
35 buf = newbuf;
seusers.c 19 char *newbuf = strdup(buffer); local
24 if (!newbuf)
27 start = newbuf;
31 free(newbuf);
78 free(newbuf);
84 free(newbuf);
  /external/ltp/testcases/kernel/syscalls/dup2/
dup204.c 68 struct stat oldbuf, newbuf; local
88 SAFE_FSTAT(cleanup, nfd[i], &newbuf);
90 if (oldbuf.st_ino != newbuf.st_ino)
dup202.c 91 struct stat oldbuf, newbuf; local
120 SAFE_FSTAT(cleanup, *TC[i].nfd, &newbuf);
122 if (oldbuf.st_mode != newbuf.st_mode)
  /external/volley/src/main/java/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 75 byte[] newbuf = mPool.getBuf((count + i) * 2);
76 System.arraycopy(buf, 0, newbuf, 0, count);
78 buf = newbuf;
  /external/curl/src/
tool_paramhlp.c 92 char *newbuf; local
108 newbuf = realloc(buffer, alloc + 1);
109 if(!newbuf) {
113 buffer = newbuf;
122 newbuf = realloc(buffer, nused + 1);
123 if(!newbuf) {
127 buffer = newbuf;
  /external/curl/tests/server/
fake_ntlm.c 51 char *newbuf; local
86 newbuf = realloc(outbuf, newsize);
87 if(!newbuf) {
91 outbuf = 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/mdnsresponder/mDNSShared/
dnssd_clientlib.c 220 unsigned char *newbuf; local
223 newbuf = malloc((size_t)newlen);
224 if (!newbuf) return(kDNSServiceErr_NoMemory);
225 memcpy(newbuf, txtRec->buffer, txtRec->datalen);
227 txtRec->buffer = newbuf;
  /external/curl/lib/
curl_ntlm_wb.c 280 char *newbuf; local
303 newbuf = Curl_saferealloc(buf, len_out + NTLM_BUFSIZE);
304 if(!newbuf)
307 buf = newbuf;
  /external/e2fsprogs/util/
subst.c 286 char oldbuf[2048], newbuf[2048], *oldcp, *newcp; local
291 newcp = fgets(newbuf, sizeof(newbuf), new_f);
296 if (!oldcp || !newcp || strcmp(oldbuf, newbuf)) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
RecyclableBufferedInputStream.java 154 byte[] newbuf = new byte[newLength];
155 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length);
158 localBuf = buf = newbuf;
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
PduComposer.java 338 mStack.newbuf();
541 mStack.newbuf();
629 mStack.newbuf();
846 mStack.newbuf(); // Switching buffer because we need to
902 mStack.newbuf(); // Leaving space for header lengh and data length
905 mStack.newbuf(); // Leaving space for Content-Type length
1070 void newbuf() { method in class:PduComposer.BufferStack
    [all...]
  /external/selinux/sandbox/
seunshare.c 317 char *newbuf = NULL; local
343 if (asprintf(&newbuf, "\'%s\'", path) == -1) {
348 if (asprintf(&newbuf, "%s \'%s\'", buf, path) == -1) {
354 free(buf); buf = newbuf;
355 newbuf = NULL;
359 if (asprintf(&newbuf, "/usr/bin/rsync -trlHDq %s '%s'", buf, dst) == -1) {
363 *cmdbuf=newbuf;
  /external/elfutils/libdwfl/
elf-from-memory.c 183 unsigned char *newbuf = realloc (buffer, phnum * phentsize); local
184 if (newbuf == NULL)
190 buffer = newbuf;
  /external/libxml2/
buf.c 439 xmlChar *newbuf; local
478 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
479 if (newbuf == NULL) {
483 buf->contentIO = newbuf;
484 buf->content = newbuf + start_buf;
486 newbuf = (xmlChar *) xmlRealloc(buf->content, size);
487 if (newbuf == NULL) {
491 buf->content = newbuf;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cStringIO.c 390 char *newbuf; local
414 newbuf = (char*)realloc(oself->buf, newsize);
415 if (!newbuf) {
420 oself->buf = newbuf;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cStringIO.c 379 char *newbuf; local
391 newbuf = (char*)realloc(oself->buf, oself->buf_size);
392 if (!newbuf) {
399 oself->buf = newbuf;
  /external/boringssl/src/crypto/bytestring/
cbb.c 108 uint8_t *newbuf; local
117 newbuf = OPENSSL_realloc(base->buf, newcap);
118 if (newbuf == NULL) {
122 base->buf = newbuf;
  /external/python/cpython2/Modules/
cStringIO.c 390 char *newbuf; local
414 newbuf = (char*)realloc(oself->buf, newsize);
415 if (!newbuf) {
420 oself->buf = newbuf;

Completed in 902 milliseconds

1 2 3