/src/usr.bin/script/ |
script.c | 441 struct timespec tsi, tso; local in function:playback 471 tso.tv_sec = stamp.scr_sec; 472 tso.tv_nsec = stamp.scr_usec * 1000; 479 tsi = tso; 496 tsi.tv_sec = tso.tv_sec - tsi.tv_sec; 497 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec; 504 tsi = tso;
|
script.c | 441 struct timespec tsi, tso; local in function:playback 471 tso.tv_sec = stamp.scr_sec; 472 tso.tv_nsec = stamp.scr_usec * 1000; 479 tsi = tso; 496 tsi.tv_sec = tso.tv_sec - tsi.tv_sec; 497 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec; 504 tsi = tso;
|
script.c | 441 struct timespec tsi, tso; local in function:playback 471 tso.tv_sec = stamp.scr_sec; 472 tso.tv_nsec = stamp.scr_usec * 1000; 479 tsi = tso; 496 tsi.tv_sec = tso.tv_sec - tsi.tv_sec; 497 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec; 504 tsi = tso;
|
/src/sys/dev/usb/ |
if_mue.c | 905 bool tso, ipe, tpe; local in function:mue_uno_tx_prepare 911 tso = csum & (M_CSUM_TSOv4 | M_CSUM_TSOv6); 917 if (__predict_false((!tso && len > (int)MUE_FRAME_LEN(ifp->if_mtu)) || 918 ( tso && len > MUE_TSO_FRAME_LEN))) { 926 if (tso) {
|
if_mue.c | 905 bool tso, ipe, tpe; local in function:mue_uno_tx_prepare 911 tso = csum & (M_CSUM_TSOv4 | M_CSUM_TSOv6); 917 if (__predict_false((!tso && len > (int)MUE_FRAME_LEN(ifp->if_mtu)) || 918 ( tso && len > MUE_TSO_FRAME_LEN))) { 926 if (tso) {
|
if_mue.c | 905 bool tso, ipe, tpe; local in function:mue_uno_tx_prepare 911 tso = csum & (M_CSUM_TSOv4 | M_CSUM_TSOv6); 917 if (__predict_false((!tso && len > (int)MUE_FRAME_LEN(ifp->if_mtu)) || 918 ( tso && len > MUE_TSO_FRAME_LEN))) { 926 if (tso) {
|
/src/sys/netinet6/ |
ip6_output.c | 213 bool tso; local in function:ip6_output 800 tso = (m->m_pkthdr.csum_flags & M_CSUM_TSOv6) != 0; 812 if (dontfrag && (!tso && tlen > ifp->if_mtu)) { /* case 2-b */ 838 if (dontfrag || (!alwaysfrag && (tlen <= mtu || tso))) { 874 if (tso) {
|
ip6_output.c | 213 bool tso; local in function:ip6_output 800 tso = (m->m_pkthdr.csum_flags & M_CSUM_TSOv6) != 0; 812 if (dontfrag && (!tso && tlen > ifp->if_mtu)) { /* case 2-b */ 838 if (dontfrag || (!alwaysfrag && (tlen <= mtu || tso))) { 874 if (tso) {
|
ip6_output.c | 213 bool tso; local in function:ip6_output 800 tso = (m->m_pkthdr.csum_flags & M_CSUM_TSOv6) != 0; 812 if (dontfrag && (!tso && tlen > ifp->if_mtu)) { /* case 2-b */ 838 if (dontfrag || (!alwaysfrag && (tlen <= mtu || tso))) { 874 if (tso) {
|
/src/sys/dev/pci/igc/ |
if_igc.c | 3171 * Advanced Context Descriptor setup for VLAN, CSUM or TSO 3192 const bool tso = (csum_flags & (M_CSUM_TSOv4 | M_CSUM_TSOv6)) != 0; local in function:igc_tx_ctx_setup 3193 const bool tcp = tso || 3197 /* Indicate the whole packet as payload when not doing TSO */ 3198 if (!tso) { 3237 if (!tso) 3254 if (!tso) 3285 if (tso) { 3455 * XXX Sync with Linux, especially for jumbo MTU or TSO.
|
if_igc.c | 3171 * Advanced Context Descriptor setup for VLAN, CSUM or TSO 3192 const bool tso = (csum_flags & (M_CSUM_TSOv4 | M_CSUM_TSOv6)) != 0; local in function:igc_tx_ctx_setup 3193 const bool tcp = tso || 3197 /* Indicate the whole packet as payload when not doing TSO */ 3198 if (!tso) { 3237 if (!tso) 3254 if (!tso) 3285 if (tso) { 3455 * XXX Sync with Linux, especially for jumbo MTU or TSO.
|
if_igc.c | 3171 * Advanced Context Descriptor setup for VLAN, CSUM or TSO 3192 const bool tso = (csum_flags & (M_CSUM_TSOv4 | M_CSUM_TSOv6)) != 0; local in function:igc_tx_ctx_setup 3193 const bool tcp = tso || 3197 /* Indicate the whole packet as payload when not doing TSO */ 3198 if (!tso) { 3237 if (!tso) 3254 if (!tso) 3285 if (tso) { 3455 * XXX Sync with Linux, especially for jumbo MTU or TSO.
|