Home
last modified time | relevance | path

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

/external/libpcap/
Dnametoaddr.c250 struct netent result_buf; in pcap_nametonetaddr() local
270 err = getnetbyname_r(name, &result_buf, buf, sizeof buf, &np, in pcap_nametonetaddr()
283 struct netent result_buf; in pcap_nametonetaddr() local
286 np = getnetbyname_r(name, &result_buf, buf, (int)sizeof buf); in pcap_nametonetaddr()
291 struct netent result_buf; in pcap_nametonetaddr() local
294 if (getnetbyname_r(name, &result_buf, &net_data) == -1) in pcap_nametonetaddr()
297 np = &result_buf; in pcap_nametonetaddr()
523 struct protoent result_buf; in pcap_nametoproto() local
527 err = getprotobyname_r(str, &result_buf, buf, sizeof buf, &p); in pcap_nametoproto()
539 struct protoent result_buf; in pcap_nametoproto() local
[all …]
/external/openscreen/third_party/abseil/src/absl/strings/internal/
Dstr_join_internal.h242 char* result_buf = &*result.begin();
243 memcpy(result_buf, start->data(), start->size());
244 result_buf += start->size();
246 memcpy(result_buf, s.data(), s.size());
247 result_buf += s.size();
248 memcpy(result_buf, it->data(), it->size());
249 result_buf += it->size();
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/
Dstr_join_internal.h242 char* result_buf = &*result.begin();
243 memcpy(result_buf, start->data(), start->size());
244 result_buf += start->size();
246 memcpy(result_buf, s.data(), s.size());
247 result_buf += s.size();
248 memcpy(result_buf, it->data(), it->size());
249 result_buf += it->size();
/external/libtextclassifier/abseil-cpp/absl/strings/internal/
Dstr_join_internal.h242 char* result_buf = &*result.begin();
243 memcpy(result_buf, start->data(), start->size());
244 result_buf += start->size();
246 memcpy(result_buf, s.data(), s.size());
247 result_buf += s.size();
248 memcpy(result_buf, it->data(), it->size());
249 result_buf += it->size();
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/
Dstr_join_internal.h242 char* result_buf = &*result.begin();
243 memcpy(result_buf, start->data(), start->size());
244 result_buf += start->size();
246 memcpy(result_buf, s.data(), s.size());
247 result_buf += s.size();
248 memcpy(result_buf, it->data(), it->size());
249 result_buf += it->size();
/external/abseil-cpp/absl/strings/internal/
Dstr_join_internal.h242 char* result_buf = &*result.begin();
243 memcpy(result_buf, start->data(), start->size());
244 result_buf += start->size();
246 memcpy(result_buf, s.data(), s.size());
247 result_buf += s.size();
248 memcpy(result_buf, it->data(), it->size());
249 result_buf += it->size();
/external/angle/third_party/abseil-cpp/absl/strings/internal/
Dstr_join_internal.h242 char* result_buf = &*result.begin();
243 memcpy(result_buf, start->data(), start->size());
244 result_buf += start->size();
246 memcpy(result_buf, s.data(), s.size());
247 result_buf += s.size();
248 memcpy(result_buf, it->data(), it->size());
249 result_buf += it->size();
/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/OpenCL-CTS/test_conformance/api/
Dtest_null_buffer_arg.cpp59 cl_mem test_buf, cl_mem result_buf, test_type type) in test_setargs_and_execution() argument
94 status = clEnqueueReadBuffer(queue, result_buf, CL_TRUE, 0, in test_setargs_and_execution()
119 status = clEnqueueReadBuffer(queue, result_buf, CL_TRUE, 0, in test_setargs_and_execution()
/external/python/cpython2/Objects/
Dbufferobject.c538 char *result_buf = (char *)PyMem_Malloc(slicelength); in buffer_subscript() local
540 if (result_buf == NULL) in buffer_subscript()
545 result_buf[i] = source_buf[cur]; in buffer_subscript()
548 result = PyString_FromStringAndSize(result_buf, in buffer_subscript()
550 PyMem_Free(result_buf); in buffer_subscript()
Dbytearrayobject.c472 char *result_buf = (char *)PyMem_Malloc(slicelength); in bytearray_subscript() local
475 if (result_buf == NULL) in bytearray_subscript()
480 result_buf[i] = source_buf[cur]; in bytearray_subscript()
482 result = PyByteArray_FromStringAndSize(result_buf, slicelength); in bytearray_subscript()
483 PyMem_Free(result_buf); in bytearray_subscript()
Dstringobject.c1316 char* result_buf; in string_subscript() local
1341 result_buf = (char *)PyMem_Malloc(slicelength); in string_subscript()
1342 if (result_buf == NULL) in string_subscript()
1347 result_buf[i] = source_buf[cur]; in string_subscript()
1350 result = PyString_FromStringAndSize(result_buf, in string_subscript()
1352 PyMem_Free(result_buf); in string_subscript()
Dbytesobject.c1685 char* result_buf; in bytes_subscript() local
1714 result_buf = PyBytes_AS_STRING(result); in bytes_subscript()
1717 result_buf[i] = source_buf[cur]; in bytes_subscript()
Dunicodeobject.c8008 Py_UNICODE* result_buf; in unicode_subscript() local
8027 result_buf = (Py_UNICODE *)PyObject_MALLOC(slicelength* in unicode_subscript()
8030 if (result_buf == NULL) in unicode_subscript()
8034 result_buf[i] = source_buf[cur]; in unicode_subscript()
8037 result = PyUnicode_FromUnicode(result_buf, slicelength); in unicode_subscript()
8038 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/python/cpython3/Modules/
Dmmapmodule.c896 char *result_buf = (char *)PyMem_Malloc(slicelen); in mmap_subscript() local
901 if (result_buf == NULL) in mmap_subscript()
905 result_buf[i] = self->data[cur]; in mmap_subscript()
907 result = PyBytes_FromStringAndSize(result_buf, in mmap_subscript()
909 PyMem_Free(result_buf); in mmap_subscript()
/external/openssh/
Dumac.c1052 UINT64 result_buf[STREAMS]; in uhash_update() local
1053 UINT8 *nh_result = (UINT8 *)&result_buf; in uhash_update()
1105 UINT64 result_buf[STREAMS]; in uhash_final() local
1106 UINT8 *nh_result = (UINT8 *)&result_buf; in uhash_final()
/external/pdfium/core/fxcodec/flate/
Dflatemodule.cpp565 std::unique_ptr<uint8_t, FxFreeDeleter> result_buf( in FlateUncompress() local
577 memcpy(result_buf.get() + result_pos, tmp_buf.get(), cp_size); in FlateUncompress()
581 *dest_buf = std::move(result_buf); in FlateUncompress()
/external/python/cpython3/Objects/
Dbytearrayobject.c426 char *result_buf; in bytearray_subscript() local
433 result_buf = PyByteArray_AS_STRING(result); in bytearray_subscript()
436 result_buf[i] = source_buf[cur]; in bytearray_subscript()
Dbytesobject.c1599 char* result_buf; in bytes_subscript() local
1628 result_buf = PyBytes_AS_STRING(result); in bytes_subscript()
1631 result_buf[i] = source_buf[cur]; in bytes_subscript()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc7516 INTERCEPTOR(int, getprotoent_r, struct __sanitizer_protoent *result_buf,
7519 COMMON_INTERCEPTOR_ENTER(ctx, getprotoent_r, result_buf, buf, buflen,
7521 int res = REAL(getprotoent_r)(result_buf, buf, buflen, result);
7530 struct __sanitizer_protoent *result_buf, char *buf, SIZE_T buflen,
7533 COMMON_INTERCEPTOR_ENTER(ctx, getprotobyname_r, name, result_buf, buf,
7537 int res = REAL(getprotobyname_r)(name, result_buf, buf, buflen, result);
7546 struct __sanitizer_protoent *result_buf, char *buf,
7549 COMMON_INTERCEPTOR_ENTER(ctx, getprotobynumber_r, num, result_buf, buf,
7551 int res = REAL(getprotobynumber_r)(num, result_buf, buf, buflen, result);