Searched defs:result_buf (Results 1 - 8 of 8) sorted by relevance

/external/python/cpython2/Objects/
H A Dbufferobject.c529 char *result_buf = (char *)PyMem_Malloc(slicelength); local
531 if (result_buf == NULL)
536 result_buf[i] = source_buf[cur];
539 result = PyString_FromStringAndSize(result_buf,
541 PyMem_Free(result_buf);
H A Dbytearrayobject.c452 char *result_buf = (char *)PyMem_Malloc(slicelength); local
455 if (result_buf == NULL)
460 result_buf[i] = source_buf[cur];
462 result = PyByteArray_FromStringAndSize(result_buf, slicelength);
463 PyMem_Free(result_buf);
H A Dstringobject.c1310 char* result_buf; local
1335 result_buf = (char *)PyMem_Malloc(slicelength);
1336 if (result_buf == NULL)
1341 result_buf[i] = source_buf[cur];
1344 result = PyString_FromStringAndSize(result_buf,
1346 PyMem_Free(result_buf);
H A Dunicodeobject.c8013 Py_UNICODE* result_buf; local
8031 result_buf = (Py_UNICODE *)PyObject_MALLOC(slicelength*
8034 if (result_buf == NULL)
8038 result_buf[i] = source_buf[cur];
8041 result = PyUnicode_FromUnicode(result_buf, slicelength);
8042 PyObject_FREE(result_buf);
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_flate.cpp595 uint8_t* result_buf = FX_Alloc(uint8_t, dest_size); local
603 FXSYS_memcpy(result_buf + result_pos, tmp_buf, tmp_buf_size);
607 dest_buf = result_buf;
/external/python/cpython2/Modules/
H A Dmmapmodule.c798 char *result_buf = (char *)PyMem_Malloc(slicelen); local
802 if (result_buf == NULL)
806 result_buf[i] = self->data[cur];
808 result = PyString_FromStringAndSize(result_buf,
810 PyMem_Free(result_buf);
/external/mdnsresponder/mDNSPosix/
H A Dnss_mdns.c397 result_buf:
411 hostent * result_buf,
426 result_buf:
441 hostent * result_buf,
458 result_buf:
474 hostent * result_buf,
531 hostent * result_buf,
593 hostent * result_buf,
661 hostent * result_buf,
676 name, AF_INET, result_buf, bu
659 _nss_mdns_gethostbyname_r( const char *name, hostent * result_buf, char *buf, size_t buflen, int *errnop, int *h_errnop ) argument
682 _nss_mdns_gethostbyname2_r( const char *name, int af, hostent * result_buf, char *buf, size_t buflen, int *errnop, int *h_errnop ) argument
706 _nss_mdns_gethostbyaddr_r( const void *addr, socklen_t len, int af, hostent * result_buf, char *buf, size_t buflen, int *errnop, int *h_errnop ) argument
782 mdns_gethostbyname2( const char *name, int af, hostent * result_buf, char *buf, size_t buflen, int *errnop, int *h_errnop ) argument
1497 init_result( result_map_t * result, hostent * result_buf, char * buf, size_t buflen ) argument
[all...]
/external/openssh/
H A Dumac.c1047 UINT64 result_buf[STREAMS]; local
1048 UINT8 *nh_result = (UINT8 *)&result_buf;
1100 UINT64 result_buf[STREAMS]; local
1101 UINT8 *nh_result = (UINT8 *)&result_buf;

Completed in 333 milliseconds