HomeSort by relevance Sort by last modified time
    Searched defs:pbuf (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
ec_gains.h 101 Word16 pbuf[5]; member in struct:__anon40114
  /external/ltp/testcases/kernel/syscalls/fork/
fork08.c 53 static char pbuf[10]; variable
165 sprintf(pbuf, "%d", getpid());
166 strcat(fnamebuf, pbuf);
fork07.c 57 static char pbuf[10]; variable
199 sprintf(pbuf, "%d", getpid());
200 strcat(fnamebuf, pbuf);
  /external/ltp/testcases/kernel/syscalls/open/
open09.c 47 char pbuf[BUFSIZ]; local
61 ret = read(fildes, pbuf, 1);
73 ret = write(fildes, pbuf, 1);
  /external/ltp/testcases/kernel/syscalls/write/
write05.c 78 char pbuf[BUFSIZ]; local
95 if (write(-1, pbuf, 1) != -1) {
138 if (write(pipefildes[1], pbuf, 1) != -1) {
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
open_memstream.c 31 char **pbuf; /* point to the stream */ member in struct:state
57 *st->pbuf = st->string = p;
114 open_memstream(char **pbuf, size_t *psize)
119 if (pbuf == NULL || psize == NULL) {
142 st->pbuf = pbuf;
145 *pbuf = st->string;
open_wmemstream.c 32 wchar_t **pbuf; /* point to the stream */ member in struct:state
59 *st->pbuf = st->string = p;
124 open_wmemstream(wchar_t **pbuf, size_t *psize)
129 if (pbuf == NULL || psize == NULL) {
152 st->pbuf = pbuf;
156 *pbuf = st->string;
  /cts/apps/CtsVerifier/jni/verifier/
com_android_cts_verifier_camera_StatsImage.cpp 62 unsigned char *pbuf = buf + 2*y*paw + 2*gx*gw + 2*aax; local
65 int byte0 = *pbuf++;
66 int byte1 = *pbuf++;
  /external/ipsec-tools/src/racoon/
security.c 71 vchar_t *pbuf = NULL; local
90 pbuf = isakmp_parsewoh(ISAKMP_NPTYPE_P, (struct isakmp_gen *)bp, len);
91 if (pbuf == NULL)
94 pa = (struct isakmp_parse_t *)pbuf->v;
99 vfree(pbuf);
106 vfree(pbuf);
isakmp_agg.c 342 vchar_t *pbuf = NULL; local
375 pbuf = isakmp_parse(msg);
376 if (pbuf == NULL)
378 pa = (struct isakmp_parse_t *)pbuf->v;
584 if (pbuf)
585 vfree(pbuf);
782 vchar_t *pbuf = NULL; local
797 pbuf = isakmp_parse(msg);
798 if (pbuf == NULL)
800 pa = (struct isakmp_parse_t *)pbuf->v
1322 vchar_t *pbuf = NULL; local
    [all...]
isakmp_base.c 296 vchar_t *pbuf = NULL; local
314 pbuf = isakmp_parse(msg);
315 if (pbuf == NULL)
317 pa = (struct isakmp_parse_t *)pbuf->v;
391 if (pbuf)
392 vfree(pbuf);
588 vchar_t *pbuf = NULL; local
605 pbuf = isakmp_parse(msg);
606 if (pbuf == NULL)
609 for (pa = (struct isakmp_parse_t *)pbuf->v
792 vchar_t *pbuf = NULL; local
1077 vchar_t *pbuf = NULL; local
    [all...]
isakmp_ident.c 256 vchar_t *pbuf = NULL; local
279 pbuf = isakmp_parse(msg);
280 if (pbuf == NULL)
282 pa = (struct isakmp_parse_t *)pbuf->v;
335 if (pbuf)
336 vfree(pbuf);
427 vchar_t *pbuf = NULL; local
446 pbuf = isakmp_parse(msg);
447 if (pbuf == NULL)
450 for (pa = (struct isakmp_parse_t *)pbuf->v
671 vchar_t *pbuf = NULL; local
861 vchar_t *pbuf = NULL; local
1123 vchar_t *pbuf = NULL; local
1343 vchar_t *pbuf = NULL; local
    [all...]
isakmp_quick.c 317 vchar_t *pbuf = NULL; /* for payload parsing */
350 pbuf = isakmp_parse(msg);
351 if (pbuf == NULL)
353 pa = (struct isakmp_parse_t *)pbuf->v;
532 if (pbuf)
533 vfree(pbuf);
697 vchar_t *pbuf = NULL; /* for payload parsing */
721 pbuf = isakmp_parse(msg);
722 if (pbuf == NULL)
725 for (pa = (struct isakmp_parse_t *)pbuf->v
316 vchar_t *pbuf = NULL; \/* for payload parsing *\/ local
696 vchar_t *pbuf = NULL; \/* for payload parsing *\/ local
840 vchar_t *pbuf = NULL; \/* for payload parsing *\/ local
1388 vchar_t *pbuf = NULL; \/* for payload parsing *\/ local
    [all...]
remoteconf.c 498 char buf[1024], *pbuf; local
499 pbuf = buf;
500 pbuf += sprintf (pbuf, "\tpeers_identifier %s",
503 pbuf += sprintf (pbuf, " \"%s\"", id->id->v);
513 char buf[1024], *pbuf; local
515 pbuf = buf;
516 pbuf += sprintf(pbuf, "remote %s", saddr2str(p->remote))
    [all...]
  /external/ltp/testcases/kernel/syscalls/fsync/
fsync02.c 79 char pbuf[BUFSIZ]; local
108 if ((ret = write(fd, pbuf, BUFSIZ)) != BUFSIZ)
183 if (write(fd, pbuf, BUFSIZ) != BUFSIZ)
184 tst_brkm(TBROK | TERRNO, cleanup, "write(fd, pbuf, ..) failed");
  /external/syslinux/core/fs/pxe/
core.c 139 void *pbuf; local
148 pbuf = netbuf_alloc(nbuf, len);
149 if (!pbuf) {
150 ddprintf("pbuf allocation error\n");
154 memcpy(pbuf, data, len);
181 void *pbuf; local
190 pbuf = netbuf_alloc(nbuf, len);
191 if (!pbuf) {
192 ddprintf("pbuf allocation error\n");
196 memcpy(pbuf, data, len)
    [all...]
  /external/libmtp/util/
mtp-probe.c 65 char pbuf[FILENAME_MAX]; local
76 strcpy(pbuf, path);
77 pbuf[len++] = '/';
80 strncpy(pbuf + len, "type", FILENAME_MAX - len);
81 pbuf[FILENAME_MAX - 1] = '\0'; /* Sentinel */
83 fd = open(pbuf, O_RDONLY);
101 strncpy(pbuf + len, "direction", FILENAME_MAX - len);
102 pbuf[FILENAME_MAX - 1] = '\0'; /* Sentinel */
104 fd = open(pbuf, O_RDONLY);
135 char pbuf[FILENAME_MAX] local
    [all...]
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_buffer.c 329 struct pb_buffer *pbuf = vmw_pb_buffer(buf); local
331 pb_reference(&pbuf, NULL);
  /external/mesa3d/src/glx/apple/
apple_glx_pbuffer.c 74 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer; local
79 cglerr = apple_cgl.set_pbuffer(ac->context_obj, pbuf->buffer_obj, 0, 0, 0);
87 apple_glapi_oglfw_viewport_scissor(0, 0, pbuf->width, pbuf->height);
99 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer; local
106 apple_cgl.destroy_pbuffer(pbuf->buffer_obj);
107 XFreePixmap(dpy, pbuf->xid);
112 apple_glx_pbuffer_destroy(Display * dpy, GLXPbuffer pbuf)
114 return !apple_glx_drawable_destroy_by_type(dpy, pbuf,
125 struct apple_glx_pbuffer *pbuf = NULL local
265 struct apple_glx_pbuffer *pbuf; local
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
pbuf.h 58 PBUF_RAM, /* pbuf data is stored in RAM */
59 PBUF_ROM, /* pbuf data is stored in ROM */
60 PBUF_REF, /* pbuf comes from the pbuf pool */
61 PBUF_POOL /* pbuf payload refers to RAM */
67 /** indicates this is a custom pbuf: pbuf_free and pbuf_header handle such a
68 a pbuf differently */
70 /** indicates this pbuf is UDP multicast to be looped back */
73 struct pbuf { struct
74 /** next pbuf in singly linked pbuf chain *
113 struct pbuf pbuf; member in struct:pbuf_custom
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_gain2_amr_wb.cpp 156 /* next 5 pbuf[] */
185 int16 *past_gain_pit, *past_gain_code, *past_qua_en, *gbuf, *pbuf, *prev_gc; local
196 pbuf = mem + 7;
219 tmp = median5(&pbuf[2]);
284 pbuf[i - 1] = pbuf[i];
287 pbuf[4] = *past_gain_pit;
360 tmp1 = pbuf[1];
365 pbuf[i - 1] = tmp1;
368 tmp1 = pbuf[i]
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 175 char *pbuf; local
203 pbuf = buf;
204 pbuf += snprintf(pbuf, buf_len - wpabuf_len(ap_wps_p2p_ie),
206 *pbuf++ = '\0';
207 os_memcpy(pbuf, wpabuf_head(ap_wps_p2p_ie), wpabuf_len(ap_wps_p2p_ie));
  /external/python/cpython2/Modules/_multiprocessing/
connection.h 194 Py_buffer pbuf; local
199 &pbuf, &offset))
202 buffer = pbuf.buf;
203 length = pbuf.len;
247 PyBuffer_Release(&pbuf);
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 1168 static char pbuf[10]; local
1171 (void)snprintf(pbuf, sizeof pbuf, "%c", ch);
1173 (void)snprintf(pbuf, sizeof pbuf, "\\%o", ch);
1174 return(pbuf);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_codecsmodule.c 236 Py_buffer pbuf; local
243 &pbuf, &errors, &final))
245 consumed = pbuf.len;
247 decoded = PyUnicode_DecodeUTF7Stateful(pbuf.buf, pbuf.len, errors,
249 PyBuffer_Release(&pbuf);
259 Py_buffer pbuf; local
266 &pbuf, &errors, &final))
268 consumed = pbuf.len;
270 decoded = PyUnicode_DecodeUTF8Stateful(pbuf.buf, pbuf.len, errors,
282 Py_buffer pbuf; local
305 Py_buffer pbuf; local
329 Py_buffer pbuf; local
361 Py_buffer pbuf; local
386 Py_buffer pbuf; local
409 Py_buffer pbuf; local
432 Py_buffer pbuf; local
463 Py_buffer pbuf; local
488 Py_buffer pbuf; local
505 Py_buffer pbuf; local
522 Py_buffer pbuf; local
539 Py_buffer pbuf; local
556 Py_buffer pbuf; local
578 Py_buffer pbuf; local
    [all...]

Completed in 676 milliseconds

1 2 3 4