HomeSort by relevance Sort by last modified time
    Searched defs:nmemb (Results 1 - 11 of 11) sorted by null

  /external/valgrind/memcheck/tests/
undef_malloc_args.c 28 size_t nmemb = 1; local
29 (void) VALGRIND_MAKE_MEM_UNDEFINED(&nmemb, 1);
30 new_p = calloc(nmemb, def_size);
42 size_t nmemb = 16;
45 new_p = memalign(nmemb, size);
  /external/strace/
netlink_netlink_diag.c 95 const size_t nmemb = len / current_wordsize; local
97 if (!nmemb)
100 print_array(tcp, addr, nmemb, &buf, current_wordsize,
netlink_packet_diag.c 117 const size_t nmemb = len / sizeof(dml); local
119 if (!nmemb)
122 print_array(tcp, addr, nmemb, &dml, sizeof(dml),
159 const unsigned int nmemb = len / sizeof(struct sock_filter); local
160 if (!nmemb || (unsigned short) nmemb != nmemb)
163 print_sock_fprog(tcp, addr, nmemb);
netlink_unix_diag.c 104 const size_t nmemb = len / sizeof(inode); local
106 if (!nmemb)
109 print_array(tcp, addr, nmemb, &inode, sizeof(inode),
numa.c 51 const kernel_ulong_t nmemb = local
54 if (nmemb < maxnodes / bits_per_long ||
55 (maxnodes && !nmemb)) {
61 print_array(tcp, addr, nmemb, &buf, current_wordsize,
mem.c 342 kernel_ulong_t nmemb = len >> 16; local
349 print_array(tcp, map, nmemb, &entry, sizeof(entry),
nlattr.c 198 const size_t nmemb = len / sizeof(mem); local
200 if (!nmemb)
204 print_array(tcp, addr, nmemb, &mem, sizeof(mem),
rtnl_tc.c 256 const size_t nmemb = len / sizeof(data); local
258 if (!nmemb)
261 print_array(tcp, addr, nmemb, &data, sizeof(data),
netlink.c 473 const size_t nmemb = len / sizeof(cookie); local
475 print_array(tcp, addr, nmemb, &cookie, sizeof(cookie),
  /external/tensorflow/tensorflow/core/platform/cloud/
curl_http_request.cc 313 size_t nmemb, void* userdata) {
320 size_t curl_bytes_received = size * nmemb;
358 size_t nmemb, void* this_object) {
362 const size_t bytes_to_copy = size * nmemb;
370 size_t CurlHttpRequest::ReadCallback(void* ptr, size_t size, size_t nmemb,
376 size * nmemb, that->post_body_buffer_.size() - that->post_body_read_);
384 size_t nmemb, void* this_object) {
387 StringPiece header(reinterpret_cast<const char*>(ptr), size * nmemb); local
399 return size * nmemb;
  /external/python/cpython3/Modules/
_testbuffer.c 308 Py_ssize_t nmemb; /* number of members in a single item */ local
320 nmemb = get_nmemb(structobj);
321 assert(nmemb >= 1);
329 /* nmemb >= 1 */
330 args = PyTuple_New(2 + nmemb);
341 for (j = 1; j < 2+nmemb; j++)
354 PyFloat_Check(item)) && nmemb == 1) {
358 PySequence_Length(item) == nmemb) {
359 for (j = 0; j < nmemb; j++) {
381 for (i = 2; i < 2+nmemb; i++)
399 Py_ssize_t i, nmemb; local
    [all...]

Completed in 309 milliseconds