Home
last modified time | relevance | path

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

/external/netperf/
Dnetlib.c1218 struct ring_elt *first_link = NULL; in allocate_buffer_ring() local
1261 first_link = temp_link; in allocate_buffer_ring()
1314 if (first_link) { /* SAF Prefast made me do it... */ in allocate_buffer_ring()
1315 first_link->next = temp_link; in allocate_buffer_ring()
1318 return(first_link); /* it's a circle, doesn't matter which we return */ in allocate_buffer_ring()
1379 struct ring_elt *first_link; in allocate_exs_buffer_ring() local
1446 first_link = (struct ring_elt *) malloc (width * sizeof (struct ring_elt)); in allocate_exs_buffer_ring()
1447 if (first_link == NULL) { in allocate_exs_buffer_ring()
1453 prev_link = first_link + width - 1; in allocate_exs_buffer_ring()
1455 for (i = 0, temp_link = first_link; i < width; i++, temp_link++) { in allocate_exs_buffer_ring()
[all …]