Searched refs:result_buf (Results 1 – 8 of 8) sorted by relevance
/external/mdnsresponder/mDNSPosix/ |
D | nss_mdns.c | 411 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/ |
D | bufferobject.c | 529 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()
|
D | bytearrayobject.c | 452 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()
|
D | stringobject.c | 1310 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()
|
D | unicodeobject.c | 8013 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/ |
D | mmapmodule.c | 798 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/ |
D | fx_codec_flate.cpp | 595 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/ |
D | umac.c | 1047 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()
|