/openbsd/gnu/lib/libstdc++/libstdc++/libio/ |
H A D | iofwide.c | 243 size_t to_len = to_end - to_start; in weak_alias() local 245 &to_start_copy, &to_len); in weak_alias() 249 else if (to_len < codecvt->__codecvt_do_max_length (codecvt)) in weak_alias() 305 size_t to_len = to_end - to_start; in do_unshift() local 307 res = iconv (codecvt->__cd_out, NULL, NULL, &to_start_copy, &to_len); in do_unshift() 311 else if (to_len < codecvt->__codecvt_do_max_length (codecvt)) in do_unshift() 371 size_t to_len = to_end - to_start; in do_in() local 374 &to_start_copy, &to_len); in do_in() 378 else if (to_len == 0) in do_in()
|
/openbsd/lib/libcrypto/bn/ |
H A D | bn_convert.c | 133 BN_bn2binpad(const BIGNUM *bn, unsigned char *to, int to_len) in BN_bn2binpad() argument 135 if (to_len < 0) in BN_bn2binpad() 138 return bn_bn2binpad_internal(bn, to, to_len, 0); in BN_bn2binpad() 214 BN_bn2lebinpad(const BIGNUM *bn, unsigned char *to, int to_len) in BN_bn2lebinpad() argument 216 if (to_len < 0) in BN_bn2lebinpad() 219 return bn_bn2binpad_internal(bn, to, to_len, 1); in BN_bn2lebinpad()
|
/openbsd/usr.bin/xinstall/ |
H A D | xinstall.c | 483 const char *to_name, off_t to_len) in compare() argument 490 if (from_len == 0 && from_len == to_len) in compare() 493 if (from_len != to_len) in compare()
|
/openbsd/gnu/usr.bin/binutils-2.17/gas/ |
H A D | macro.c | 167 int to_len = strlen (to); in buffer_and_nest() local 173 if (to_len == 4 && strcasecmp(to, "ENDR") == 0) in buffer_and_nest() 248 if (strncasecmp (ptr->ptr + i, to, to_len) == 0 in buffer_and_nest() 249 && (ptr->len == (i + to_len) in buffer_and_nest() 250 || ! (is_part_of_name (ptr->ptr[i + to_len]) in buffer_and_nest() 251 || is_name_ender (ptr->ptr[i + to_len])))) in buffer_and_nest()
|
/openbsd/gnu/usr.bin/binutils/gas/ |
H A D | macro.c | 154 int to_len = strlen (to); in buffer_and_nest() local 203 if (strncasecmp (ptr->ptr + i, to, to_len) == 0 in buffer_and_nest() 204 && (ptr->len == (i + to_len) in buffer_and_nest() 205 || ! ISALNUM (ptr->ptr[i + to_len]))) in buffer_and_nest()
|
/openbsd/usr.sbin/nsd/ |
H A D | xfrd-notify.c | 319 socklen_t to_len = xfrd_acl_sockaddr_to( in xfrd_notify_send_udp() local 326 (struct sockaddr*)&to, to_len) == -1) { in xfrd_notify_send_udp()
|
H A D | xfrd-tcp.c | 1570 socklen_t to_len = xfrd_acl_sockaddr_to( in xfrd_tcp_release() local 1572 if(to_len == tp->key.ip_len && memcmp(&to, &tp->key.ip, to_len) == 0) { in xfrd_tcp_release()
|
H A D | xfrd.c | 1736 socklen_t to_len = xfrd_acl_sockaddr_to(acl, &to); in xfrd_send_udp() local 1769 (struct sockaddr*)&to, to_len) == -1) in xfrd_send_udp()
|
/openbsd/gnu/usr.bin/perl/ext/XS-APItest/ |
H A D | APItest.xs | 7286 test_delimcpy(SV * from_sv, STRLEN trunc_from, char delim, STRLEN to_len, STRLEN trunc_to, char poi… 7294 Newx(to, to_len, char); 7295 PoisonWith(to, to_len, char, poison); 7298 assert(trunc_to <= to_len); 7303 av_push_simple(RETVAL, newSVpvn(to, to_len)); 7311 test_delimcpy_no_escape(SV * from_sv, STRLEN trunc_from, char delim, STRLEN to_len, STRLEN trunc_to… 7320 Newx(to, to_len, char); 7321 PoisonWith(to, to_len, char, poison); 7324 assert(trunc_to <= to_len); 7329 av_push_simple(av, newSVpvn(to, to_len));
|
/openbsd/gnu/usr.bin/perl/ |
H A D | util.c | 600 Ptrdiff_t to_len = to_end - to; in Perl_delimcpy_no_escape() local 606 assert(to_len >= 0); in Perl_delimcpy_no_escape() 616 if (copy_len > to_len) { in Perl_delimcpy_no_escape() 617 Copy(from, to, to_len, char); in Perl_delimcpy_no_escape() 624 if (copy_len < to_len) { in Perl_delimcpy_no_escape()
|