HomeSort by: relevance | last modified time | path
    Searched refs:tot_len (Results 1 - 12 of 12) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
args.c 201 gfc_charlen_type arglen, tot_len = 0; local
224 if (tot_len + thisarg > command_len)
226 thisarg = command_len - tot_len; /* Truncate. */
230 else if (i != argc - 1 && tot_len + arglen == command_len)
233 memcpy (&command[tot_len], argv[i], thisarg);
237 tot_len += arglen;
239 tot_len++;
243 *length = tot_len;
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
args.c 201 gfc_charlen_type arglen, tot_len = 0; local
224 if (tot_len + thisarg > command_len)
226 thisarg = command_len - tot_len; /* Truncate. */
230 else if (i != argc - 1 && tot_len + arglen == command_len)
233 memcpy (&command[tot_len], argv[i], thisarg);
237 tot_len += arglen;
239 tot_len++;
243 *length = tot_len;
  /src/external/gpl3/gcc/dist/libgfortran/io/
write.c 2149 size_t tot_len; local
2386 tot_len = base_name_len + clen;
2391 ext_name[tot_len] = '(';
2392 tot_len++;
2394 snprintf (ext_name + tot_len, ext_name_len - tot_len, "%d",
2396 tot_len += strlen (ext_name + tot_len);
2397 ext_name[tot_len] = ((int) dim_i == obj->var_rank - 1) ? ')' : ',';
2398 tot_len++
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
write.c 2125 size_t tot_len; local
2347 tot_len = base_name_len + clen;
2352 ext_name[tot_len] = '(';
2353 tot_len++;
2355 snprintf (ext_name + tot_len, ext_name_len - tot_len, "%d",
2357 tot_len += strlen (ext_name + tot_len);
2358 ext_name[tot_len] = ((int) dim_i == obj->var_rank - 1) ? ')' : ',';
2359 tot_len++
    [all...]
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_pwd.c 892 u16 tot_len = 0; local
976 tot_len = WPA_GET_BE16(pos);
978 "total length = %d", tot_len);
979 if (tot_len > 15000)
987 data->inbuf = wpabuf_alloc(tot_len);
1090 tot_len = len;
1096 "length = %d", tot_len);
1107 wpabuf_put_be16(resp, tot_len);
  /src/sbin/ping/
ping.c 1063 int tot_len,
1083 if (hlen < (int)sizeof(*ip) || tot_len < hlen + ICMP_MINLEN) {
1087 tot_len, inet_ntoa(from->sin_addr));
1094 net_len = tot_len - hlen;
1135 if (tot_len != opack_ip->ip_len) {
1137 switch (opack_ip->ip_len - tot_len) {
1159 "instead of %d", tot_len, opack_ip->ip_len);
1189 if ((size_t)(tot_len - hlen) >
  /src/external/bsd/wpa/dist/src/eap_server/
eap_server_pwd.c 872 u16 tot_len; local
910 tot_len = WPA_GET_BE16(pos);
912 "length = %d", tot_len);
913 if (tot_len > 15000)
920 data->inbuf = wpabuf_alloc(tot_len);
  /src/sys/dist/pf/net/
pf.c 3540 len = pd->tot_len - off - (th->th_off << 2);
5794 pd.tot_len = ntohs(h->ip_len);
5815 pd.p_len = pd.tot_len - off - (th.th_off << 2);
5988 kif->pfik_bytes[0][dir == PF_OUT][action != PF_PASS] += pd.tot_len;
5994 r->bytes[dirndx] += pd.tot_len;
5997 a->bytes[dirndx] += pd.tot_len;
6003 s->nat_rule.ptr->bytes[dirndx] += pd.tot_len;
6007 s->src_node->bytes[dirndx] += pd.tot_len;
6011 s->nat_src_node->bytes[dirndx] += pd.tot_len;
6015 s->bytes[dirndx] += pd.tot_len;
    [all...]
pf_norm.c 897 r->bytes[dir == PF_OUT] += pd->tot_len;
1144 r->bytes[dir == PF_OUT] += pd->tot_len;
1322 r->bytes[dir == PF_OUT] += pd->tot_len;
pfvar.h 1083 u_int64_t tot_len; /* Make Mickey money */ member in struct:pf_pdesc
  /src/external/bsd/nsd/dist/
xdp-server.c 848 __be16 ipv4_old_len = ipv4->tot_len;
850 ipv4->tot_len = htons(sizeof(*ipv4)) + udp->len;
851 csum16_replace(&ipv4->check, ipv4_old_len, ipv4->tot_len);
  /src/external/gpl3/gcc/dist/libcpp/
lex.cc 2535 const unsigned int tot_len = accum + len1 + len2;
2536 uchar *dest = _cpp_unaligned_alloc (pfile, tot_len + 1);
2538 token->val.str.len = tot_len;
2534 const unsigned int tot_len = accum + len1 + len2; local

Completed in 74 milliseconds