Home
last modified time | relevance | path

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

/dragonfly/contrib/binutils-2.34/gas/
H A Dmacro.c114 size_t from_len; in buffer_and_nest() local
123 from_len = 0; in buffer_and_nest()
126 from_len = strlen (from); in buffer_and_nest()
187 && strncasecmp (ptr->ptr + i, "IRPC", from_len = 4) != 0 in buffer_and_nest()
188 && strncasecmp (ptr->ptr + i, "IRP", from_len = 3) != 0 in buffer_and_nest()
193 from_len = 0; in buffer_and_nest()
195 ? strncasecmp (ptr->ptr + i, from, from_len) == 0 in buffer_and_nest()
196 : from_len > 0) in buffer_and_nest()
197 && (ptr->len == (i + from_len) in buffer_and_nest()
198 || ! (is_part_of_name (ptr->ptr[i + from_len]) in buffer_and_nest()
[all …]
/dragonfly/contrib/binutils-2.27/gas/
H A Dmacro.c114 size_t from_len; in buffer_and_nest() local
123 from_len = 0; in buffer_and_nest()
126 from_len = strlen (from); in buffer_and_nest()
187 && strncasecmp (ptr->ptr + i, "IRPC", from_len = 4) != 0 in buffer_and_nest()
188 && strncasecmp (ptr->ptr + i, "IRP", from_len = 3) != 0 in buffer_and_nest()
193 from_len = 0; in buffer_and_nest()
195 ? strncasecmp (ptr->ptr + i, from, from_len) == 0 in buffer_and_nest()
196 : from_len > 0) in buffer_and_nest()
197 && (ptr->len == (i + from_len) in buffer_and_nest()
198 || ! (is_part_of_name (ptr->ptr[i + from_len]) in buffer_and_nest()
[all …]
/dragonfly/usr.bin/xinstall/
H A Dxinstall.c874 compare(int from_fd, const char *from_name __unused, size_t from_len, in compare() argument
882 if (from_len != to_len) in compare()
885 if (from_len <= MAX_CMP_SIZE) { in compare()
888 p = mmap(NULL, from_len, PROT_READ, MAP_SHARED, in compare()
892 q = mmap(NULL, from_len, PROT_READ, MAP_SHARED, in compare()
895 munmap(p, from_len); in compare()
899 rv = memcmp(p, q, from_len); in compare()
900 munmap(p, from_len); in compare()
901 munmap(q, from_len); in compare()
/dragonfly/contrib/gdb-7/gdb/
H A Dsource.c920 const int from_len = strlen (rule->from); in substitute_path_rule_matches() local
924 if (path_len < from_len) in substitute_path_rule_matches()
932 path_start = alloca (from_len + 1); in substitute_path_rule_matches()
933 strncpy (path_start, path, from_len); in substitute_path_rule_matches()
934 path_start[from_len] = '\0'; in substitute_path_rule_matches()
943 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len])) in substitute_path_rule_matches()
975 int from_len; in rewrite_source_path() local
980 from_len = strlen (rule->from); in rewrite_source_path()
985 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len); in rewrite_source_path()
987 strcat (new_path, path + from_len); in rewrite_source_path()
H A Dutils.c3644 const size_t from_len = strlen (from); in substitute_path_component() local
3655 && (s[from_len] == '\0' || IS_DIR_SEPARATOR (s[from_len]) in substitute_path_component()
3656 || s[from_len] == DIRNAME_SEPARATOR)) in substitute_path_component()
3667 memmove (&s[to_len], &s[from_len], strlen (&s[from_len]) + 1); in substitute_path_component()
/dragonfly/crypto/libressl/tls/
H A Dtls_signer.c309 tls_rsa_priv_enc(int from_len, const unsigned char *from, unsigned char *to, in tls_rsa_priv_enc() argument
340 if (from_len < 0) in tls_rsa_priv_enc()
343 if (config->sign_cb(config->sign_cb_arg, pubkey_hash, from, from_len, in tls_rsa_priv_enc()
/dragonfly/usr.sbin/mld6query/
H A Dmld6query.c220 int from_len = sizeof(from); in dump() local
225 &from_len)) < 0) in dump()
/dragonfly/contrib/libedit/src/
H A Dreadline.c754 size_t from_len = strlen(from); in getto() local
762 if (len + from_len + 1 >= size) { in getto()
764 size += from_len + 1; in getto()
773 len += from_len; in getto()