Searched refs:len (Results 126 - 150 of 7563) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/other/
H A Darray4.C8 void sort (long len) argument
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20030224-1.c1 void zzz (char *s1, char *s2, int len, int *q) argument
7 for (i = 0; i < len; i++)
12 len += (b == 0 ? 0 : 1) + z;
14 *q = len;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/builtins/lib/
H A Dmemcmp.c5 memcmp (const void *s1, const void *s2, __SIZE_TYPE__ len) argument
16 while (len != 0 && *sp1 == *sp2)
17 sp1++, sp2++, len--;
19 if (len == 0)
/netbsd-6-1-5-RELEASE/lib/libarch/arm/
H A Darm_sync_icache.c41 arm_sync_icache(addr, len)
43 int len;
48 p.len = len;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A D20040916-1.c19 int len, d; local
30 len |= (*buff++);
33 while (len > 0)
36 len--;
/netbsd-6-1-5-RELEASE/lib/libc/locale/
H A Dwcsxfrm.c48 size_t len; local
52 len = wcslen(s2);
53 if (len<n)
64 return (len);
/netbsd-6-1-5-RELEASE/lib/libc/string/
H A DLint_swab.c12 swab(const void *src, void *dst, ssize_t len) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dstpncpy.c24 size_t @var{len})
26 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
27 and padding with zeros if necessary. If @var{len} < strlen(@var{src})
28 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
42 stpncpy (char *dst, const char *src, size_t len) argument
45 if (n > len)
46 n = len;
47 return strncpy (dst, src, len) + n;
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/master/
H A Dmail_flow.c71 ssize_t mail_flow_get(ssize_t len) argument
82 if (len <= 0)
83 msg_panic("%s: bad length %ld", myname, (long) len);
95 for (count = len; count > 0; count -= n)
100 msg_info("%s: %ld %ld", myname, (long) len, (long) (len - count));
101 return (len - count);
106 ssize_t mail_flow_put(ssize_t len) argument
116 if (len <= 0)
117 msg_panic("%s: bad length %ld", myname, (long) len);
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dstpncpy.c23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, size_t @var{len})
25 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
26 and padding with zeros if necessary. If @var{len} < strlen(@var{src})
27 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
41 stpncpy (char *dst, const char *src, size_t len) argument
44 if (n > len)
45 n = len;
46 return strncpy (dst, src, len) + n;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/6_containers/array/tuple_interface/
H A Dtuple_size.cc33 const size_t len = 5; local
34 typedef array<int, len> array_type;
39 const size_t len = 0; local
40 typedef array<float, len> array_type;
/netbsd-6-1-5-RELEASE/usr.sbin/pppd/pppdump/
H A Dpppdump.h34 int len; member in struct:packet
/netbsd-6-1-5-RELEASE/tests/lib/libc/ssp/
H A Dh_memcpy.c42 int len = atoi(argv[1]); local
44 (void)memcpy(b, "1020202020202", len);
45 (void)printf("%*.*s\n", len, len, b);
H A Dh_memmove.c42 int len = atoi(argv[1]); local
44 (void)memmove(b, "1020202020202", len);
45 (void)printf("%*.*s\n", len, len, b);
H A Dh_strncat.c42 int len = atoi(argv[1]); local
44 (void)strncat(b, "1020202020202", len);
46 (void)printf("%*.*s\n", len, len, b);
H A Dh_strncpy.c42 int len = atoi(argv[1]); local
43 (void)strncpy(b, "1020202020202", len);
45 (void)printf("%*.*s\n", len, len, b);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr41963.c12 float len; local
15 len = sqrtf (dst[0] * dst[0] + dst[1] * dst[1]);
16 if (len > 0.5f)
18 len = 1.0f / len;
19 dst[0] *= len;
20 dst[1] *= len;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/wind/
H A Dtest-punycode.c55 size_t len; local
57 len = sizeof(buf);
58 ret = wind_punycode_label_toascii(e->val, e->len, buf, &len);
65 memmove(buf, buf + 4, len - 4);
66 len -= 4;
68 if (len != strlen(e->pc)) {
69 printf("punycode %u (%s) wrong len, actual: %u, expected: %u\n",
71 (unsigned int)len, (unsigned int)strlen(e->pc));
76 if (strncasecmp(buf, e->pc, len) !
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libopts/
H A Dvalue-type.c38 value_type_hash (register const char *str, register unsigned int len) argument
69 return len + asso_values[(unsigned char)str[2]];
98 find_value_type_name (register const char *str, register unsigned int len) argument
100 if (len <= 14 && len >= 3)
102 register int key = value_type_hash (str, len);
108 if (*str == *s && !strncmp (str + 1, s + 1, len - 1) && s[len] == '\0')
117 find_value_type_id(char const * str, unsigned int len) argument
120 find_value_type_name(str, len);
[all...]
H A Dxat-attribute.c38 xat_attribute_hash (register const char *str, register unsigned int len) argument
69 return len + asso_values[(unsigned char)str[0]];
89 find_xat_attribute_name (register const char *str, register unsigned int len) argument
91 if (len <= 8 && len >= 4)
93 register int key = xat_attribute_hash (str, len);
99 if (*str == *s && !strncmp (str + 1, s + 1, len - 1) && s[len] == '\0')
108 find_xat_attribute_id(char const * str, unsigned int len) argument
111 find_xat_attribute_name(str, len);
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/
H A Dxat-attribute.c38 xat_attribute_hash (register const char *str, register unsigned int len) argument
69 return len + asso_values[(unsigned char)str[0]];
92 find_xat_attribute_name (register const char *str, register unsigned int len) argument
94 if (len <= 8 && len >= 4)
96 register int key = xat_attribute_hash (str, len);
102 if (*str == *s && !strncmp (str + 1, s + 1, len - 1) && s[len] == '\0')
111 find_xat_attribute_id(char const * str, unsigned int len) argument
114 find_xat_attribute_name(str, len);
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/src/
H A Dfile-list.c64 int len = getline (&line_buf, &line_len, fp); local
67 if (len < 0)
71 if (len > 0 && line_buf[len - 1] == '\n')
72 line_buf[--len] = '\0';
73 while (len > 0
74 && (line_buf[len - 1] == ' '
75 || line_buf[len - 1] == '\t'
76 || line_buf[len - 1] == '\r'))
77 line_buf[--len]
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/ap/
H A Dctrl_iface_ap.c31 int len, res, ret; local
40 len = 0;
41 ret = os_snprintf(buf + len, buflen - len, MACSTR "\n",
43 if (ret < 0 || (size_t) ret >= buflen - len)
44 return len;
45 len += ret;
47 res = ieee802_11_get_mib_sta(hapd, sta, buf + len, buflen - len);
49 len
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/drivers/
H A Dpriv_netlink.h55 #define NLMSG_ALIGN(len) (((len) + NLMSG_ALIGNTO - 1) & ~(NLMSG_ALIGNTO - 1))
57 #define NLMSG_LENGTH(len) ((len) + NLMSG_ALIGN(sizeof(struct nlmsghdr)))
58 #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
60 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
63 #define NLMSG_OK(nlh,len) ((len) >
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/lto/
H A D20080904_0.C7 Base(char *buf, unsigned len) argument
9 _len(len)
21 Derived(char *buf, unsigned len) argument
22 : Base(buf, len),
23 _ctr(len)

Completed in 181 milliseconds

1234567891011>>