Home
last modified time | relevance | path

Searched refs:result_buf (Results 1 – 8 of 8) sorted by relevance

/external/mdnsresponder/mDNSPosix/
Dnss_mdns.c411 hostent * result_buf,
441 hostent * result_buf,
474 hostent * result_buf,
531 hostent * result_buf,
593 hostent * result_buf,
661 hostent * result_buf, in _nss_mdns_gethostbyname_r() argument
676 name, AF_INET, result_buf, buf, buflen, errnop, h_errnop in _nss_mdns_gethostbyname_r()
685 hostent * result_buf, in _nss_mdns_gethostbyname2_r() argument
700 name, af, result_buf, buf, buflen, errnop, h_errnop in _nss_mdns_gethostbyname2_r()
710 hostent * result_buf, in _nss_mdns_gethostbyaddr_r() argument
[all …]
/external/python/cpython2/Objects/
Dbufferobject.c529 char *result_buf = (char *)PyMem_Malloc(slicelength); in buffer_subscript() local
531 if (result_buf == NULL) in buffer_subscript()
536 result_buf[i] = source_buf[cur]; in buffer_subscript()
539 result = PyString_FromStringAndSize(result_buf, in buffer_subscript()
541 PyMem_Free(result_buf); in buffer_subscript()
Dbytearrayobject.c452 char *result_buf = (char *)PyMem_Malloc(slicelength); in bytearray_subscript() local
455 if (result_buf == NULL) in bytearray_subscript()
460 result_buf[i] = source_buf[cur]; in bytearray_subscript()
462 result = PyByteArray_FromStringAndSize(result_buf, slicelength); in bytearray_subscript()
463 PyMem_Free(result_buf); in bytearray_subscript()
Dstringobject.c1310 char* result_buf; in string_subscript() local
1335 result_buf = (char *)PyMem_Malloc(slicelength); in string_subscript()
1336 if (result_buf == NULL) in string_subscript()
1341 result_buf[i] = source_buf[cur]; in string_subscript()
1344 result = PyString_FromStringAndSize(result_buf, in string_subscript()
1346 PyMem_Free(result_buf); in string_subscript()
Dunicodeobject.c8013 Py_UNICODE* result_buf; in unicode_subscript() local
8031 result_buf = (Py_UNICODE *)PyObject_MALLOC(slicelength* in unicode_subscript()
8034 if (result_buf == NULL) in unicode_subscript()
8038 result_buf[i] = source_buf[cur]; in unicode_subscript()
8041 result = PyUnicode_FromUnicode(result_buf, slicelength); in unicode_subscript()
8042 PyObject_FREE(result_buf); in unicode_subscript()
/external/python/cpython2/Modules/
Dmmapmodule.c798 char *result_buf = (char *)PyMem_Malloc(slicelen); in mmap_subscript() local
802 if (result_buf == NULL) in mmap_subscript()
806 result_buf[i] = self->data[cur]; in mmap_subscript()
808 result = PyString_FromStringAndSize(result_buf, in mmap_subscript()
810 PyMem_Free(result_buf); in mmap_subscript()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp595 uint8_t* result_buf = FX_Alloc(uint8_t, dest_size); in FlateUncompress() local
603 FXSYS_memcpy(result_buf + result_pos, tmp_buf, tmp_buf_size); in FlateUncompress()
607 dest_buf = result_buf; in FlateUncompress()
/external/openssh/
Dumac.c1047 UINT64 result_buf[STREAMS]; in uhash_update() local
1048 UINT8 *nh_result = (UINT8 *)&result_buf; in uhash_update()
1100 UINT64 result_buf[STREAMS]; in uhash_final() local
1101 UINT8 *nh_result = (UINT8 *)&result_buf; in uhash_final()