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

12 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cStringIO.c 69 Py_buffer pbuf; member in struct:__anon5472
609 PyBuffer_Release(&self->pbuf);
638 PyBuffer_Release(&self->pbuf);
702 self->pbuf=buf;
binascii.c 469 Py_buffer pbuf; local
477 if ( !PyArg_ParseTuple(args, "s*:b2a_base64", &pbuf) )
479 bin_data = pbuf.buf;
480 bin_len = pbuf.len;
486 PyBuffer_Release(&pbuf);
494 PyBuffer_Release(&pbuf);
525 PyBuffer_Release(&pbuf);
617 Py_buffer pbuf; local
623 if ( !PyArg_ParseTuple(args, "s*:rlecode_hqx", &pbuf) )
625 in_data = pbuf.buf;
877 Py_buffer pbuf; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
structseq.c 245 char *endofbuf, *pbuf = buf; local
257 strncpy(pbuf, typ->tp_name, len);
258 pbuf += len;
259 *pbuf++ = '(';
285 if ((pbuf+len) <= endofbuf) {
286 strcpy(pbuf, cname);
287 pbuf += strlen(cname);
288 *pbuf++ = '=';
289 strcpy(pbuf, crepr);
290 pbuf += strlen(crepr);
    [all...]
fileobject.c 1138 Py_buffer pbuf; local
1803 Py_buffer pbuf; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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...]
cStringIO.c 71 PyObject *pbuf; member in struct:__anon5805
587 Py_CLEAR(self->pbuf);
616 Py_XDECREF(self->pbuf);
675 self->pbuf=s;
binascii.c 473 Py_buffer pbuf; local
481 if ( !PyArg_ParseTuple(args, "s*:b2a_base64", &pbuf) )
483 bin_data = pbuf.buf;
484 bin_len = pbuf.len;
490 PyBuffer_Release(&pbuf);
498 PyBuffer_Release(&pbuf);
531 PyBuffer_Release(&pbuf);
626 Py_buffer pbuf; local
632 if ( !PyArg_ParseTuple(args, "s*:rlecode_hqx", &pbuf) )
634 in_data = pbuf.buf;
892 Py_buffer pbuf; local
    [all...]
bz2module.c 828 Py_buffer pbuf; local
833 if (!PyArg_ParseTuple(args, "s*:write", &pbuf))
835 buf = pbuf.buf;
836 len = pbuf.len;
870 PyBuffer_Release(&pbuf);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
structseq.c 244 char *endofbuf, *pbuf = buf; local
256 strncpy(pbuf, typ->tp_name, len);
257 pbuf += len;
258 *pbuf++ = '(';
284 if ((pbuf+len) <= endofbuf) {
285 strcpy(pbuf, cname);
286 pbuf += strlen(cname);
287 *pbuf++ = '=';
288 strcpy(pbuf, crepr);
289 pbuf += strlen(crepr);
    [all...]
  /external/ipsec-tools/src/libipsec/
pfkey_dump.c 488 char pbuf[NI_MAXSERV]; local
540 0, pbuf, sizeof(pbuf), NI_NUMERICSERV) != 0)
543 sport = atoi(pbuf);
561 0, pbuf, sizeof(pbuf), NI_NUMERICSERV) != 0)
564 dport = atoi(pbuf);
  /external/ipsec-tools/src/racoon/
isakmp_inf.c 129 vchar_t *pbuf = NULL;
281 if (!(pbuf = isakmp_parse(msg))) {
287 for (pa = (struct isakmp_parse_t *)pbuf->v; pa->type; pa++) {
322 if (pbuf != NULL)
323 vfree(pbuf);
338 vchar_t *pbuf;
455 vchar_t *pbuf;
128 vchar_t *pbuf = NULL; local
337 vchar_t *pbuf; local
454 vchar_t *pbuf; local
    [all...]
  /external/iputils/
tracepath6.c 385 char pbuf[NI_MAXSERV]; local
434 sprintf(pbuf, "%u", base_port);
443 gai = getaddrinfo(argv[0], pbuf, &hints, &ai0);
  /external/python/cpython2/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...]
cStringIO.c 69 Py_buffer pbuf; member in struct:__anon30296
609 PyBuffer_Release(&self->pbuf);
638 PyBuffer_Release(&self->pbuf);
702 self->pbuf=buf;
binascii.c 469 Py_buffer pbuf; local
477 if ( !PyArg_ParseTuple(args, "s*:b2a_base64", &pbuf) )
479 bin_data = pbuf.buf;
480 bin_len = pbuf.len;
486 PyBuffer_Release(&pbuf);
494 PyBuffer_Release(&pbuf);
525 PyBuffer_Release(&pbuf);
617 Py_buffer pbuf; local
623 if ( !PyArg_ParseTuple(args, "s*:rlecode_hqx", &pbuf) )
625 in_data = pbuf.buf
877 Py_buffer pbuf; local
    [all...]
bz2module.c 817 Py_buffer pbuf; local
822 if (!PyArg_ParseTuple(args, "s*:write", &pbuf))
824 buf = pbuf.buf;
825 len = pbuf.len;
859 PyBuffer_Release(&pbuf);
    [all...]
  /external/python/cpython2/Objects/
structseq.c 245 char *endofbuf, *pbuf = buf; local
257 strncpy(pbuf, typ->tp_name, len);
258 pbuf += len;
259 *pbuf++ = '(';
285 if ((pbuf+len) <= endofbuf) {
286 strcpy(pbuf, cname);
287 pbuf += strlen(cname);
288 *pbuf++ = '=';
289 strcpy(pbuf, crepr);
290 pbuf += strlen(crepr)
    [all...]
  /external/skia/src/utils/win/
SkWGL_win.cpp 448 HPBUFFER pbuf = extensions.createPbuffer(parentDC, pixelFormatsToTry[f], 1, 1, nullptr); local
449 if (0 != pbuf) {
450 HDC dc = extensions.getPbufferDC(pbuf);
454 return new SkWGLPbufferContext(pbuf, dc, glrc);
456 extensions.releasePbufferDC(pbuf, dc);
458 extensions.destroyPbuffer(pbuf);
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 234 char *pbuf, *dir = NULL; local
240 pbuf = os_strdup(wpa_s->conf->ctrl_interface);
241 if (pbuf == NULL)
243 if (os_strncmp(pbuf, "DIR=", 4) == 0) {
245 dir = pbuf + 4;
250 dir = pbuf;
255 os_free(pbuf);
261 os_free(pbuf);
277 os_free(pbuf);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
fileio.c 464 Py_buffer pbuf; local
472 if (!PyArg_ParseTuple(args, "w*", &pbuf))
476 len = pbuf.len;
482 n = read(self->fd, pbuf.buf, (int)len);
484 n = read(self->fd, pbuf.buf, len);
489 PyBuffer_Release(&pbuf);
662 Py_buffer pbuf; local
670 if (!PyArg_ParseTuple(args, "s*", &pbuf))
676 len = pbuf.len;
680 n = write(self->fd, pbuf.buf, (int)len);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
fileio.c 476 Py_buffer pbuf; local
484 if (!PyArg_ParseTuple(args, "w*", &pbuf))
490 n = read(self->fd, pbuf.buf, pbuf.len);
494 PyBuffer_Release(&pbuf);
657 Py_buffer pbuf; local
665 if (!PyArg_ParseTuple(args, "s*", &pbuf))
671 n = write(self->fd, pbuf.buf, pbuf.len);
676 PyBuffer_Release(&pbuf);
    [all...]
  /external/python/cpython2/Modules/_io/
fileio.c 477 Py_buffer pbuf; local
485 if (!PyArg_ParseTuple(args, "w*", &pbuf))
489 len = pbuf.len;
495 n = read(self->fd, pbuf.buf, (int)len);
497 n = read(self->fd, pbuf.buf, len);
502 PyBuffer_Release(&pbuf);
675 Py_buffer pbuf; local
683 if (!PyArg_ParseTuple(args, "s*", &pbuf))
689 len = pbuf.len;
693 n = write(self->fd, pbuf.buf, (int)len)
    [all...]
  /hardware/intel/common/libva/va/
va_trace.c 707 void **pbuf /* out */
728 if ((pbuf == NULL) || (*pbuf == NULL))
731 buf_list = (VACodedBufferSegment *)(*pbuf);
758 void *pbuf
762 unsigned char *p = pbuf;
3040 unsigned char *pbuf = NULL; local
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
dynobj.cc 1722 unsigned char* pbuf = new unsigned char[sz]; local
1779 unsigned char* pbuf = new unsigned char[sz]; local
1822 unsigned char* pbuf = new unsigned char[sz]; local
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/sgi/
hpc3.h 25 u32 pbuf; member in struct:hpc_dma_desc

Completed in 1549 milliseconds

12 3 4