crypto/heimdal/appl/telnet/telnetd/ext.h
148
void putf (char *cp, char *where);
crypto/heimdal/appl/telnet/telnetd/utility.c
438
void putf(char *cp, char *where)
crypto/heimdal/appl/telnet/telnetd/utility.c
461
putlocation = where;
crypto/heimdal/lib/hx509/file.c
195
enum { BEFORE, SEARCHHEADER, INHEADER, INDATA, DONE } where;
crypto/heimdal/lib/hx509/file.c
197
where = BEFORE;
crypto/heimdal/lib/hx509/file.c
215
switch (where) {
crypto/heimdal/lib/hx509/file.c
224
where = SEARCHHEADER;
crypto/heimdal/lib/hx509/file.c
230
where = INDATA;
crypto/heimdal/lib/hx509/file.c
236
where = INDATA;
crypto/heimdal/lib/hx509/file.c
253
where = DONE;
crypto/heimdal/lib/hx509/file.c
273
if (where == DONE) {
crypto/heimdal/lib/hx509/file.c
281
where = BEFORE;
crypto/heimdal/lib/hx509/file.c
289
if (where != BEFORE) {
crypto/krb5/src/include/gssrpc/rpc_msg.h
97
caddr_t where;
crypto/krb5/src/lib/rpc/clnt_raw.c
179
msg.acpted_rply.ar_results.where = resultsp;
crypto/krb5/src/lib/rpc/clnt_tcp.c
303
reply_msg.acpted_rply.ar_results.where = NULL;
crypto/krb5/src/lib/rpc/clnt_udp.c
300
reply_msg.acpted_rply.ar_results.where = NULL;
crypto/krb5/src/lib/rpc/pmap_rmt.c
347
msg.acpted_rply.ar_results.where = (caddr_t)&r;
crypto/krb5/src/lib/rpc/rpc_prot.c
95
return ((*(ar->ar_results.proc))(xdrs, ar->ar_results.where));
crypto/krb5/src/lib/rpc/svc.c
257
rply.acpted_rply.ar_results.where = xdr_location;
crypto/krb5/src/lib/rpc/svc_tcp.c
489
xdr_location = msg->acpted_rply.ar_results.where;
crypto/krb5/src/lib/rpc/svc_tcp.c
492
msg->acpted_rply.ar_results.where = NULL;
crypto/krb5/src/lib/rpc/svc_udp.c
263
xdr_location = msg->acpted_rply.ar_results.where;
crypto/krb5/src/lib/rpc/svc_udp.c
266
msg->acpted_rply.ar_results.where = NULL;
crypto/krb5/src/lib/rpc/xdr_rec.c
494
caddr_t where;
crypto/krb5/src/lib/rpc/xdr_rec.c
498
where = rstrm->in_base;
crypto/krb5/src/lib/rpc/xdr_rec.c
500
where += i;
crypto/krb5/src/lib/rpc/xdr_rec.c
502
if ((len = (*(rstrm->readit))(rstrm->tcp_handle, where, len)) == -1)
crypto/krb5/src/lib/rpc/xdr_rec.c
504
rstrm->in_finger = where;
crypto/krb5/src/lib/rpc/xdr_rec.c
505
where += len;
crypto/krb5/src/lib/rpc/xdr_rec.c
506
rstrm->in_boundry = where;
crypto/openssh/channels.c
1100
open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
crypto/openssh/channels.c
1109
fatal_r(r, "%s: channel %i: open", where, c->self);
crypto/openssh/channels.c
3372
channel_parse_id(struct ssh *ssh, const char *where, const char *what)
crypto/openssh/channels.c
3378
error_r(r, "%s: parse id", where);
crypto/openssh/channels.c
3382
error_r(r, "%s: bad channel id %u", where, id);
crypto/openssh/channels.c
3390
channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
crypto/openssh/channels.c
3392
int id = channel_parse_id(ssh, where, what);
crypto/openssh/channels.c
4496
channel_permit_all(struct ssh *ssh, int where)
crypto/openssh/channels.c
4498
struct permission_set *pset = permission_set_get(ssh, where);
crypto/openssh/channels.c
4508
channel_add_permission(struct ssh *ssh, int who, int where,
crypto/openssh/channels.c
4511
int local = where == FORWARD_LOCAL;
crypto/openssh/channels.c
4512
struct permission_set *pset = permission_set_get(ssh, where);
crypto/openssh/channels.c
4515
fwd_ident(who, where), host, port);
crypto/openssh/channels.c
4520
permission_set_add(ssh, who, where,
crypto/openssh/channels.c
4530
channel_disable_admin(struct ssh *ssh, int where)
crypto/openssh/channels.c
4532
channel_clear_permission(ssh, FORWARD_ADM, where);
crypto/openssh/channels.c
4533
permission_set_add(ssh, FORWARD_ADM, where,
crypto/openssh/channels.c
4541
channel_clear_permission(struct ssh *ssh, int who, int where)
crypto/openssh/channels.c
4546
permission_set_get_array(ssh, who, where, &permp, &npermp);
crypto/openssh/channels.c
620
fwd_ident(int who, int where)
crypto/openssh/channels.c
623
if (where == FORWARD_LOCAL)
crypto/openssh/channels.c
625
else if (where == FORWARD_REMOTE)
crypto/openssh/channels.c
628
if (where == FORWARD_LOCAL)
crypto/openssh/channels.c
630
else if (where == FORWARD_REMOTE)
crypto/openssh/channels.c
633
fatal("Unknown forward permission list %d/%d", who, where);
crypto/openssh/channels.c
638
permission_set_get(struct ssh *ssh, int where)
crypto/openssh/channels.c
642
switch (where) {
crypto/openssh/channels.c
650
fatal_f("invalid forwarding direction %d", where);
crypto/openssh/channels.c
656
permission_set_get_array(struct ssh *ssh, int who, int where,
crypto/openssh/channels.c
659
struct permission_set *pset = permission_set_get(ssh, where);
crypto/openssh/channels.c
677
permission_set_add(struct ssh *ssh, int who, int where,
crypto/openssh/channels.c
685
permission_set_get_array(ssh, who, where, &permp, &npermp);
crypto/openssh/channels.c
688
fatal_f("%s overflow", fwd_ident(who, where));
crypto/openssh/monitor_wrap.c
1145
int where = listen ? FORWARD_REMOTE : FORWARD_LOCAL;
crypto/openssh/monitor_wrap.c
1148
channel_clear_permission(ssh, FORWARD_ADM, where);
crypto/openssh/monitor_wrap.c
1156
channel_disable_admin(ssh, where);
crypto/openssh/monitor_wrap.c
1170
where, host, port);
crypto/openssh/regress/unittests/test_helper/test_helper.c
429
memvalcmp(const u_int8_t *s, u_char v, size_t l, size_t *where)
crypto/openssh/regress/unittests/test_helper/test_helper.c
435
*where = i;
crypto/openssh/regress/unittests/test_helper/test_helper.c
446
size_t where = -1;
crypto/openssh/regress/unittests/test_helper/test_helper.c
456
r = memvalcmp(aa1, v, l, &where);
crypto/openssh/regress/unittests/test_helper/test_helper.c
463
snprintf(tmp, sizeof(tmp), "(%s)[%zu]", a1, where);
crypto/openssh/regress/unittests/test_helper/test_helper.c
465
((u_char *)aa1)[where], v);
crypto/openssh/ssh.c
2073
int where = FORWARD_LOCAL;
crypto/openssh/ssh.c
2075
channel_clear_permission(ssh, FORWARD_ADM, where);
crypto/openssh/ssh.c
2083
channel_disable_admin(ssh, where);
crypto/openssh/ssh.c
2097
where, addr, port);
crypto/openssl/apps/include/s_apps.h
47
void apps_ssl_info_callback(const SSL *s, int where, int ret);
crypto/openssl/apps/lib/s_cb.c
547
void apps_ssl_info_callback(const SSL *s, int where, int ret)
crypto/openssl/apps/lib/s_cb.c
552
w = where & ~SSL_ST_MASK;
crypto/openssl/apps/lib/s_cb.c
561
if (where & SSL_CB_LOOP) {
crypto/openssl/apps/lib/s_cb.c
563
} else if (where & SSL_CB_ALERT) {
crypto/openssl/apps/lib/s_cb.c
564
str = (where & SSL_CB_READ) ? "read" : "write";
crypto/openssl/apps/lib/s_cb.c
569
} else if (where & SSL_CB_EXIT) {
crypto/openssl/crypto/bio/bio_addr.c
129
const void *where, size_t wherelen,
crypto/openssl/crypto/bio/bio_addr.c
138
strncpy(ap->s_un.sun_path, where, sizeof(ap->s_un.sun_path) - 1);
crypto/openssl/crypto/bio/bio_addr.c
148
ap->s_in.sin_addr = *(struct in_addr *)where;
crypto/openssl/crypto/bio/bio_addr.c
158
ap->s_in6.sin6_addr = *(struct in6_addr *)where;
crypto/openssl/crypto/bio/bio_addr.c
607
const void *where, size_t wherelen,
crypto/openssl/crypto/bio/bio_addr.c
632
BIO_ADDR_rawmake(addr, family, where, wherelen, port);
crypto/openssl/include/openssl/bio.h
846
const void *where, size_t wherelen, unsigned short port);
crypto/openssl/include/openssl/stack.h
43
int OPENSSL_sk_insert(OPENSSL_STACK *sk, const void *data, int where);
crypto/openssl/test/bio_addr_test.c
37
void *where;
crypto/openssl/test/bio_addr_test.c
43
where = &(sa.sin.sin_addr);
crypto/openssl/test/bio_addr_test.c
48
where = &(sa.sin6.sin6_addr);
crypto/openssl/test/bio_addr_test.c
54
where = &(sa.sunaddr.sun_path);
crypto/openssl/test/bio_addr_test.c
67
memset(where, 'a', wherelen);
crypto/openssl/test/bio_addr_test.c
73
if (!TEST_true(BIO_ADDR_rawmake(addr, family, where, wherelen, 1000))) {
crypto/openssl/test/cert_comp_test.c
108
static void cert_comp_info_cb(const SSL *s, int where, int ret)
crypto/openssl/test/helpers/handshake.c
81
static void info_cb(const SSL *s, int where, int ret)
crypto/openssl/test/helpers/handshake.c
83
if (where & SSL_CB_ALERT) {
crypto/openssl/test/helpers/handshake.c
85
if (where & SSL_CB_WRITE) {
crypto/openssl/test/sslapitest.c
7754
int where;
crypto/openssl/test/sslapitest.c
8043
static void sslapi_info_callback(const SSL *s, int where, int ret)
crypto/openssl/test/sslapitest.c
8057
if (!TEST_false((SSL_is_server(s) && (where & SSL_ST_CONNECT) != 0))
crypto/openssl/test/sslapitest.c
8058
|| !TEST_false(!SSL_is_server(s) && (where & SSL_ST_ACCEPT) != 0)
crypto/openssl/test/sslapitest.c
8059
|| !TEST_int_ne(state[++info_cb_this_state].where, 0)) {
crypto/openssl/test/sslapitest.c
8065
if (!TEST_true((where & state[info_cb_this_state].where) != 0)) {
crypto/openssl/test/sslapitest.c
8069
if ((where & SSL_CB_LOOP) != 0
crypto/openssl/test/sslapitest.c
8080
if ((where & SSL_CB_HANDSHAKE_DONE)
include/rpc/rpc_msg.h
94
caddr_t where;
lib/libc/csu/aarch64/reloc.c
65
Elf_Addr *ptr, *where, target;
lib/libc/csu/aarch64/reloc.c
70
where = (Elf_Addr *)r->r_offset;
lib/libc/csu/aarch64/reloc.c
72
*where = target;
lib/libc/csu/amd64/reloc.c
56
Elf_Addr *ptr, *where, target;
lib/libc/csu/amd64/reloc.c
61
where = (Elf_Addr *)r->r_offset;
lib/libc/csu/amd64/reloc.c
65
*where = target;
lib/libc/csu/i386/reloc.c
79
Elf_Addr *where, target;
lib/libc/csu/i386/reloc.c
83
where = (Elf_Addr *)r->r_offset;
lib/libc/csu/i386/reloc.c
85
uint32_t))*where)(cpu_feature, cpu_feature2,
lib/libc/csu/i386/reloc.c
87
*where = target;
lib/libc/csu/powerpc64/reloc.c
48
Elf_Addr *ptr, *where, target;
lib/libc/csu/powerpc64/reloc.c
53
where = (Elf_Addr *)r->r_offset;
lib/libc/csu/powerpc64/reloc.c
56
*where = target;
lib/libc/csu/riscv/reloc.c
45
Elf_Addr *ptr, *where, target;
lib/libc/csu/riscv/reloc.c
50
where = (Elf_Addr *)r->r_offset;
lib/libc/csu/riscv/reloc.c
53
*where = target;
lib/libc/rpc/clnt_bcast.c
565
msg.acpted_rply.ar_results.where =
lib/libc/rpc/clnt_bcast.c
575
msg.acpted_rply.ar_results.where =
lib/libc/rpc/clnt_dg.c
442
reply_msg.acpted_rply.ar_results.where = resultsp;
lib/libc/rpc/clnt_dg.c
445
reply_msg.acpted_rply.ar_results.where = NULL;
lib/libc/rpc/clnt_raw.c
183
msg.acpted_rply.ar_results.where = resultsp;
lib/libc/rpc/clnt_vc.c
396
reply_msg.acpted_rply.ar_results.where = NULL;
lib/libc/rpc/rpc_prot.c
114
return ((*(ar->ar_results.proc))(xdrs, ar->ar_results.where));
lib/libc/rpc/svc.c
366
rply.acpted_rply.ar_results.where = xdr_location;
lib/libc/rpc/svc_dg.c
343
xdr_where = msg->acpted_rply.ar_results.where;
lib/libc/rpc/svc_dg.c
345
msg->acpted_rply.ar_results.where = NULL;
lib/libc/rpc/svc_nl.c
289
xdr_where = msg->acpted_rply.ar_results.where;
lib/libc/rpc/svc_nl.c
291
msg->acpted_rply.ar_results.where = NULL;
lib/libc/rpc/svc_raw.c
175
xdr_where = msg->acpted_rply.ar_results.where;
lib/libc/rpc/svc_raw.c
177
msg->acpted_rply.ar_results.where = NULL;
lib/libc/rpc/svc_vc.c
640
xdr_where = msg->acpted_rply.ar_results.where;
lib/libc/rpc/svc_vc.c
642
msg->acpted_rply.ar_results.where = NULL;
lib/libc/xdr/xdr_rec.c
632
char *where;
lib/libc/xdr/xdr_rec.c
639
where = rstrm->in_base;
lib/libc/xdr/xdr_rec.c
641
where += i;
lib/libc/xdr/xdr_rec.c
643
if ((len = (*(rstrm->readit))(rstrm->tcp_handle, where, len)) == -1)
lib/libc/xdr/xdr_rec.c
645
rstrm->in_finger = where;
lib/libc/xdr/xdr_rec.c
646
where += len;
lib/libc/xdr/xdr_rec.c
647
rstrm->in_boundry = where;
lib/libkldelf/ef_aarch64.c
45
char *where;
lib/libkldelf/ef_aarch64.c
53
where = (char *)dest + (relbase + rela->r_offset - dataoff);
lib/libkldelf/ef_aarch64.c
62
if (where < (char *)dest || where >= (char *)dest + len)
lib/libkldelf/ef_aarch64.c
68
le64enc(where, addr);
lib/libkldelf/ef_aarch64.c
72
le64enc(where, addr);
lib/libkldelf/ef_amd64.c
101
le64enc(where, addr);
lib/libkldelf/ef_amd64.c
105
le64enc(where, addr);
lib/libkldelf/ef_amd64.c
47
char *where;
lib/libkldelf/ef_amd64.c
56
where = (char *)dest + (relbase + rel->r_offset - dataoff);
lib/libkldelf/ef_amd64.c
63
where = (char *)dest + (relbase + rela->r_offset - dataoff);
lib/libkldelf/ef_amd64.c
72
if (where < (char *)dest || where >= (char *)dest + len)
lib/libkldelf/ef_amd64.c
80
addend = le32dec(where);
lib/libkldelf/ef_amd64.c
83
addend = le64dec(where);
lib/libkldelf/ef_amd64.c
93
le64enc(where, addr);
lib/libkldelf/ef_amd64.c
97
le32enc(where, addr);
lib/libkldelf/ef_arm.c
48
char *where;
lib/libkldelf/ef_arm.c
57
where = (char *)dest + (relbase + rel->r_offset - dataoff);
lib/libkldelf/ef_arm.c
64
where = (char *)dest + (relbase + rela->r_offset - dataoff);
lib/libkldelf/ef_arm.c
73
if (where < (char *)dest || where >= (char *)dest + len)
lib/libkldelf/ef_arm.c
77
addend = le32dec(where);
lib/libkldelf/ef_arm.c
82
le32enc(where, addr);
lib/libkldelf/ef_arm.c
86
le32enc(where, addr);
lib/libkldelf/ef_i386.c
47
char *where;
lib/libkldelf/ef_i386.c
56
where = (char *)dest + (relbase + rel->r_offset - dataoff);
lib/libkldelf/ef_i386.c
63
where = (char *)dest + (relbase + rela->r_offset - dataoff);
lib/libkldelf/ef_i386.c
72
if (where < (char *)dest || where >= (char *)dest + len)
lib/libkldelf/ef_i386.c
76
addend = le32dec(where);
lib/libkldelf/ef_i386.c
81
le32enc(where, addr);
lib/libkldelf/ef_i386.c
85
le32enc(where, addr);
lib/libkldelf/ef_i386.c
89
le32enc(where, addr);
lib/libkldelf/ef_powerpc.c
47
char *where;
lib/libkldelf/ef_powerpc.c
55
where = (char *)dest + (relbase + rela->r_offset - dataoff);
lib/libkldelf/ef_powerpc.c
64
if (where < (char *)dest || where >= (char *)dest + len)
lib/libkldelf/ef_powerpc.c
72
le64enc(where, addr);
lib/libkldelf/ef_powerpc.c
74
be64enc(where, addr);
lib/libkldelf/ef_powerpc.c
76
be32enc(where, addr);
lib/libkldelf/ef_powerpc.c
80
be32enc(where, addr);
lib/libkldelf/ef_powerpc.c
85
le64enc(where, addr);
lib/libkldelf/ef_powerpc.c
87
be64enc(where, addr);
lib/libkldelf/ef_riscv.c
50
char *where;
lib/libkldelf/ef_riscv.c
58
where = (char *)dest + (relbase + rela->r_offset - dataoff);
lib/libkldelf/ef_riscv.c
67
if (where < (char *)dest || where >= (char *)dest + len)
lib/libkldelf/ef_riscv.c
73
le64enc(where, addr);
lib/libkldelf/ef_riscv.c
77
le64enc(where, addr);
libexec/rtld-elf/aarch64/reloc.c
200
struct tlsdesc_entry *where, int flags, RtldLockState *lockstate)
libexec/rtld-elf/aarch64/reloc.c
216
where->func = _rtld_tlsdesc_undef;
libexec/rtld-elf/aarch64/reloc.c
217
where->addend = rela->r_addend;
libexec/rtld-elf/aarch64/reloc.c
225
where->func = _rtld_tlsdesc_static;
libexec/rtld-elf/aarch64/reloc.c
226
where->offset = obj->tlsoffset + offs;
libexec/rtld-elf/aarch64/reloc.c
229
where->func = _rtld_tlsdesc_dynamic;
libexec/rtld-elf/aarch64/reloc.c
230
where->data = reloc_tlsdesc_alloc(obj->tlsindex, offs);
libexec/rtld-elf/aarch64/reloc.c
249
Elf_Addr *where, target;
libexec/rtld-elf/aarch64/reloc.c
251
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/aarch64/reloc.c
269
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/aarch64/reloc.c
286
*where = target;
libexec/rtld-elf/aarch64/reloc.c
290
reloc_tlsdesc(obj, rela, (struct tlsdesc_entry *)where,
libexec/rtld-elf/aarch64/reloc.c
325
Elf_Addr *where, target;
libexec/rtld-elf/aarch64/reloc.c
327
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/aarch64/reloc.c
339
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/aarch64/reloc.c
353
Elf_Addr *where, target, *ptr;
libexec/rtld-elf/aarch64/reloc.c
356
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/aarch64/reloc.c
360
*where = target;
libexec/rtld-elf/aarch64/reloc.c
404
Elf_Addr *where, target;
libexec/rtld-elf/aarch64/reloc.c
413
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/aarch64/reloc.c
423
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/aarch64/reloc.c
432
reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/aarch64/reloc.c
440
if (*where != target && !ld_bind_not)
libexec/rtld-elf/aarch64/reloc.c
441
*where = target;
libexec/rtld-elf/aarch64/reloc.c
474
Elf_Addr *where, symval;
libexec/rtld-elf/aarch64/reloc.c
540
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/aarch64/reloc.c
545
*where = symval + rela->r_addend;
libexec/rtld-elf/aarch64/reloc.c
561
reloc_tlsdesc(obj, rela, (struct tlsdesc_entry *)where,
libexec/rtld-elf/aarch64/reloc.c
582
*where = def->st_value + rela->r_addend +
libexec/rtld-elf/aarch64/reloc.c
593
*where += (Elf_Addr)defobj->tlsindex;
libexec/rtld-elf/aarch64/reloc.c
596
*where += (Elf_Addr)(def->st_value + rela->r_addend);
libexec/rtld-elf/aarch64/reloc.c
599
*where = (Elf_Addr)(obj->relocbase + rela->r_addend);
libexec/rtld-elf/aarch64/rtld_machdep.h
58
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/amd64/reloc.c
140
Elf_Addr *where, symval;
libexec/rtld-elf/amd64/reloc.c
221
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/amd64/reloc.c
222
where32 = (Elf32_Addr *)where;
libexec/rtld-elf/amd64/reloc.c
228
*where = symval + rela->r_addend;
libexec/rtld-elf/amd64/reloc.c
237
rela->r_addend - (Elf_Addr)where);
libexec/rtld-elf/amd64/reloc.c
256
*where = symval;
libexec/rtld-elf/amd64/reloc.c
276
*where = (Elf_Addr)(def->st_value - defobj->tlsoffset +
libexec/rtld-elf/amd64/reloc.c
301
*where += (Elf_Addr)defobj->tlsindex;
libexec/rtld-elf/amd64/reloc.c
304
*where += (Elf_Addr)(def->st_value + rela->r_addend);
libexec/rtld-elf/amd64/reloc.c
311
*where = (Elf_Addr)(obj->relocbase + rela->r_addend);
libexec/rtld-elf/amd64/reloc.c
345
Elf_Addr *where;
libexec/rtld-elf/amd64/reloc.c
350
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/amd64/reloc.c
351
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/amd64/reloc.c
379
Elf_Addr *where, target;
libexec/rtld-elf/amd64/reloc.c
385
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/amd64/reloc.c
396
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/amd64/reloc.c
415
reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/amd64/reloc.c
419
dbg("reloc_jmpslot: *%p = %p", where, (void *)target);
libexec/rtld-elf/amd64/reloc.c
421
*where = target;
libexec/rtld-elf/amd64/reloc.c
429
Elf_Addr *where, target, *ptr;
libexec/rtld-elf/amd64/reloc.c
432
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/amd64/reloc.c
436
*where = target;
libexec/rtld-elf/amd64/reloc.c
485
Elf_Addr *where, target;
libexec/rtld-elf/amd64/reloc.c
491
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/amd64/reloc.c
501
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/amd64/rtld_machdep.h
52
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/arm/reloc.c
105
where = (Elf_Addr *)(relocbase + rel->r_offset);
libexec/rtld-elf/arm/reloc.c
107
*where += (Elf_Addr)relocbase;
libexec/rtld-elf/arm/reloc.c
118
load_ptr(void *where)
libexec/rtld-elf/arm/reloc.c
122
memcpy(&res, where, sizeof(res));
libexec/rtld-elf/arm/reloc.c
128
store_ptr(void *where, Elf_Addr val)
libexec/rtld-elf/arm/reloc.c
131
memcpy(where, &val, sizeof(val));
libexec/rtld-elf/arm/reloc.c
138
Elf_Addr *where;
libexec/rtld-elf/arm/reloc.c
144
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/arm/reloc.c
158
addend = *where;
libexec/rtld-elf/arm/reloc.c
167
- (Elf_Addr)where + (addend << 2);
libexec/rtld-elf/arm/reloc.c
173
obj->path, where,
libexec/rtld-elf/arm/reloc.c
179
*where = (*where & 0xff000000) | (tmp & 0x00ffffff);
libexec/rtld-elf/arm/reloc.c
182
obj->path, (void *)*where, where, defobj->path);
libexec/rtld-elf/arm/reloc.c
193
if (__predict_true(RELOC_ALIGNED_P(where))) {
libexec/rtld-elf/arm/reloc.c
194
tmp = *where + (Elf_Addr)defobj->relocbase +
libexec/rtld-elf/arm/reloc.c
196
*where = tmp;
libexec/rtld-elf/arm/reloc.c
198
tmp = load_ptr(where) +
libexec/rtld-elf/arm/reloc.c
201
store_ptr(where, tmp);
libexec/rtld-elf/arm/reloc.c
205
obj->path, (void *)tmp, where, defobj->path);
libexec/rtld-elf/arm/reloc.c
209
if (__predict_true(RELOC_ALIGNED_P(where))) {
libexec/rtld-elf/arm/reloc.c
210
tmp = *where + (Elf_Addr)obj->relocbase;
libexec/rtld-elf/arm/reloc.c
211
*where = tmp;
libexec/rtld-elf/arm/reloc.c
213
tmp = load_ptr(where) +
libexec/rtld-elf/arm/reloc.c
215
store_ptr(where, tmp);
libexec/rtld-elf/arm/reloc.c
244
if (__predict_true(RELOC_ALIGNED_P(where)))
libexec/rtld-elf/arm/reloc.c
245
*where = tmp;
libexec/rtld-elf/arm/reloc.c
247
store_ptr(where, tmp);
libexec/rtld-elf/arm/reloc.c
261
if (__predict_true(RELOC_ALIGNED_P(where)))
libexec/rtld-elf/arm/reloc.c
262
*where = tmp;
libexec/rtld-elf/arm/reloc.c
264
store_ptr(where, tmp);
libexec/rtld-elf/arm/reloc.c
282
if (__predict_true(RELOC_ALIGNED_P(where))) {
libexec/rtld-elf/arm/reloc.c
283
tmp += *where;
libexec/rtld-elf/arm/reloc.c
284
*where = tmp;
libexec/rtld-elf/arm/reloc.c
286
tmp += load_ptr(where);
libexec/rtld-elf/arm/reloc.c
287
store_ptr(where, tmp);
libexec/rtld-elf/arm/reloc.c
299
(void *)rel->r_offset, (void *)load_ptr(where),
libexec/rtld-elf/arm/reloc.c
359
Elf_Addr *where;
libexec/rtld-elf/arm/reloc.c
363
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/arm/reloc.c
364
*where += (Elf_Addr )obj->relocbase;
libexec/rtld-elf/arm/reloc.c
380
Elf_Addr *where;
libexec/rtld-elf/arm/reloc.c
386
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/arm/reloc.c
395
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/arm/reloc.c
432
reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/arm/reloc.c
439
if (*where != target && !ld_bind_not)
libexec/rtld-elf/arm/reloc.c
440
*where = target;
libexec/rtld-elf/arm/reloc.c
91
Elf_Addr *where;
libexec/rtld-elf/arm/rtld_machdep.h
52
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/i386/reloc.c
138
Elf_Addr *where, symval, add;
libexec/rtld-elf/i386/reloc.c
203
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/i386/reloc.c
209
*where += symval;
libexec/rtld-elf/i386/reloc.c
217
*where += symval - (Elf_Addr)where;
libexec/rtld-elf/i386/reloc.c
235
*where = symval;
libexec/rtld-elf/i386/reloc.c
238
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/i386/reloc.c
261
*where += add;
libexec/rtld-elf/i386/reloc.c
263
*where -= add;
libexec/rtld-elf/i386/reloc.c
266
*where += (Elf_Addr)defobj->tlsindex;
libexec/rtld-elf/i386/reloc.c
269
*where += (Elf_Addr)def->st_value;
libexec/rtld-elf/i386/reloc.c
296
Elf_Addr *where;
libexec/rtld-elf/i386/reloc.c
301
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/i386/reloc.c
302
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/i386/reloc.c
329
Elf_Addr *where, target;
libexec/rtld-elf/i386/reloc.c
335
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/i386/reloc.c
345
reloc_jmpslot(where, target, defobj, obj, rel);
libexec/rtld-elf/i386/reloc.c
364
reloc_jmpslot(Elf_Addr *where, Elf_Addr target, const Obj_Entry *obj __unused,
libexec/rtld-elf/i386/reloc.c
367
dbg("reloc_jmpslot: *%p = %p", where, (void *)target);
libexec/rtld-elf/i386/reloc.c
369
*where = target;
libexec/rtld-elf/i386/reloc.c
376
Elf_Addr *where, target;
libexec/rtld-elf/i386/reloc.c
378
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/i386/reloc.c
380
target = call_ifunc_resolver(obj->relocbase + *where);
libexec/rtld-elf/i386/reloc.c
382
*where = target;
libexec/rtld-elf/i386/reloc.c
429
Elf_Addr *where, target;
libexec/rtld-elf/i386/reloc.c
435
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/i386/reloc.c
445
reloc_jmpslot(where, target, defobj, obj, rel);
libexec/rtld-elf/i386/rtld_machdep.h
50
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/powerpc/reloc.c
144
Elf_Addr *where;
libexec/rtld-elf/powerpc/reloc.c
165
where = (Elf_Addr *)(relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
166
*where = (Elf_Addr)(relocbase + rela->r_addend);
libexec/rtld-elf/powerpc/reloc.c
180
Elf_Addr *where, symval = 0;
libexec/rtld-elf/powerpc/reloc.c
239
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
248
if (*where != symval + rela->r_addend) {
libexec/rtld-elf/powerpc/reloc.c
249
*where = symval + rela->r_addend;
libexec/rtld-elf/powerpc/reloc.c
253
*where = (Elf_Addr) defobj->tlsindex;
libexec/rtld-elf/powerpc/reloc.c
273
*(Elf_Addr **)where = *where * sizeof(Elf_Addr)
libexec/rtld-elf/powerpc/reloc.c
278
*where += (Elf_Addr)(def->st_value + rela->r_addend
libexec/rtld-elf/powerpc/reloc.c
285
if (*where != symval) {
libexec/rtld-elf/powerpc/reloc.c
286
*where = symval;
libexec/rtld-elf/powerpc/reloc.c
372
Elf_Word *where = (Elf_Word *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
384
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/powerpc/reloc.c
391
distance = (Elf_Addr)pltresolve - (Elf_Addr)(where + 1);
libexec/rtld-elf/powerpc/reloc.c
394
(void *)where, (void *)pltresolve, reloff, distance);
libexec/rtld-elf/powerpc/reloc.c
399
where[0] = 0x39600000 | reloff;
libexec/rtld-elf/powerpc/reloc.c
400
where[1] = 0x48000000 | (distance & 0x03fffffc);
libexec/rtld-elf/powerpc/reloc.c
409
where[0] = 0x3d600000 | _ppc_ha(&jmptab[reloff]);
libexec/rtld-elf/powerpc/reloc.c
410
where[1] = 0x858b0000 | _ppc_la(&jmptab[reloff]);
libexec/rtld-elf/powerpc/reloc.c
411
where[2] = 0x7d8903a6;
libexec/rtld-elf/powerpc/reloc.c
412
where[3] = 0x4e800420;
libexec/rtld-elf/powerpc/reloc.c
478
Elf_Addr *where;
libexec/rtld-elf/powerpc/reloc.c
488
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
500
*where = 0;
libexec/rtld-elf/powerpc/reloc.c
507
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/powerpc/reloc.c
609
Elf_Addr *where, target, *ptr;
libexec/rtld-elf/powerpc/reloc.c
618
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
624
*where = target;
libexec/rtld-elf/powerpc/reloc.c
635
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
641
*where = target;
libexec/rtld-elf/powerpc/reloc.c
662
Elf_Addr *where, target;
libexec/rtld-elf/powerpc/reloc.c
671
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc/reloc.c
681
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/powerpc/rtld_machdep.h
51
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/powerpc64/reloc.c
139
Elf_Addr *where;
libexec/rtld-elf/powerpc64/reloc.c
160
where = (Elf_Addr *)(relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
161
*where = (Elf_Addr)(relocbase + rela->r_addend);
libexec/rtld-elf/powerpc64/reloc.c
175
Elf_Addr *where, symval = 0;
libexec/rtld-elf/powerpc64/reloc.c
234
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
243
if (*where != symval + rela->r_addend) {
libexec/rtld-elf/powerpc64/reloc.c
244
*where = symval + rela->r_addend;
libexec/rtld-elf/powerpc64/reloc.c
248
*where = (Elf_Addr) defobj->tlsindex;
libexec/rtld-elf/powerpc64/reloc.c
268
*(Elf_Addr **)where = *where * sizeof(Elf_Addr)
libexec/rtld-elf/powerpc64/reloc.c
273
*where += (Elf_Addr)(def->st_value + rela->r_addend
libexec/rtld-elf/powerpc64/reloc.c
280
if (*where != symval) {
libexec/rtld-elf/powerpc64/reloc.c
281
*where = symval;
libexec/rtld-elf/powerpc64/reloc.c
371
Elf_Addr *where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
376
dbg(" reloc_plt_object: where=%p,reloff=%lx,glink=%#lx", (void *)where,
libexec/rtld-elf/powerpc64/reloc.c
381
*where = (Elf_Addr)obj->glink + 32 +
libexec/rtld-elf/powerpc64/reloc.c
386
*where = (Elf_Addr)obj->glink + 4*reloff + 32;
libexec/rtld-elf/powerpc64/reloc.c
439
Elf_Addr *where;
libexec/rtld-elf/powerpc64/reloc.c
449
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
462
bzero(where, sizeof(struct funcdesc));
libexec/rtld-elf/powerpc64/reloc.c
464
*where = 0;
libexec/rtld-elf/powerpc64/reloc.c
472
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/powerpc64/reloc.c
568
Elf_Addr *where, target, *ptr;
libexec/rtld-elf/powerpc64/reloc.c
577
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
583
*where = target;
libexec/rtld-elf/powerpc64/reloc.c
594
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
600
*where = target;
libexec/rtld-elf/powerpc64/reloc.c
621
Elf_Addr *where, target;
libexec/rtld-elf/powerpc64/reloc.c
630
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/powerpc64/reloc.c
640
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/powerpc64/rtld_machdep.h
51
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/riscv/reloc.c
146
Elf_Addr *where;
libexec/rtld-elf/riscv/reloc.c
148
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/riscv/reloc.c
152
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/riscv/reloc.c
181
Elf_Addr *where;
libexec/rtld-elf/riscv/reloc.c
183
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/riscv/reloc.c
198
*where = (Elf_Addr)(defobj->relocbase + def->st_value);
libexec/rtld-elf/riscv/reloc.c
214
Elf_Addr *where, target, *ptr;
libexec/rtld-elf/riscv/reloc.c
217
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/riscv/reloc.c
221
*where = target;
libexec/rtld-elf/riscv/reloc.c
267
Elf_Addr *where, target;
libexec/rtld-elf/riscv/reloc.c
277
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/riscv/reloc.c
288
reloc_jmpslot(where, target, defobj, obj,
libexec/rtld-elf/riscv/reloc.c
297
reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/riscv/reloc.c
305
if (*where != target && !ld_bind_not)
libexec/rtld-elf/riscv/reloc.c
306
*where = target;
libexec/rtld-elf/riscv/reloc.c
322
Elf_Addr *where, symval;
libexec/rtld-elf/riscv/reloc.c
337
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/riscv/reloc.c
372
*where = symval + rela->r_addend;
libexec/rtld-elf/riscv/reloc.c
380
*where += (Elf_Addr)defobj->tlsindex;
libexec/rtld-elf/riscv/reloc.c
401
*where += (Elf_Addr)(def->st_value + rela->r_addend
libexec/rtld-elf/riscv/reloc.c
428
*where = (def->st_value + rela->r_addend +
libexec/rtld-elf/riscv/reloc.c
432
*where = (Elf_Addr)(obj->relocbase + rela->r_addend);
libexec/rtld-elf/riscv/rtld_machdep.h
65
Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/rtld.c
1062
Elf_Addr *where;
libexec/rtld-elf/rtld.c
1075
where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
libexec/rtld-elf/rtld.c
1101
target = reloc_jmpslot(where, target, defobj, obj, rel);
libexec/rtld-elf/rtld.c
3419
Elf_Addr *where;
libexec/rtld-elf/rtld.c
3426
where = (Elf_Addr *)(obj->relocbase + entry);
libexec/rtld-elf/rtld.c
3427
*where++ += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/rtld.c
3431
where[i] += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/rtld.c
3432
where += CHAR_BIT * sizeof(Elf_Relr) - 1;
sbin/dhclient/dispatch.c
366
add_timeout(time_t when_s, void (*where)(void *), void *what)
sbin/dhclient/dispatch.c
373
add_timeout_timespec(when, where, what);
sbin/dhclient/dispatch.c
377
add_timeout_timespec(struct timespec when, void (*where)(void *), void *what)
sbin/dhclient/dispatch.c
384
if (q->func == where && q->what == what) {
sbin/dhclient/dispatch.c
400
q->func = where;
sbin/dhclient/dispatch.c
406
q->func = where;
sbin/dhclient/dispatch.c
437
cancel_timeout(void (*where)(void *), void *what)
sbin/dhclient/dispatch.c
444
if (q->func == where && q->what == what) {
sbin/recoverdisk/recoverdisk.c
395
write_buf(int fd, const void *buf, uint64_t length, uint64_t where)
sbin/recoverdisk/recoverdisk.c
399
i = pwrite(fd, buf, length, (off_t)where);
sbin/recoverdisk/recoverdisk.c
404
(uintmax_t)where,
stand/common/reloc_elf.c
111
memcpy(where, &val, sizeof(val));
stand/common/reloc_elf.c
122
*where = val;
stand/common/reloc_elf.c
132
Elf_Addr addend, addr, *where, val;
stand/common/reloc_elf.c
140
where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
stand/common/reloc_elf.c
149
where = (Elf_Addr *)((char *)data + relbase + rela->r_offset -
stand/common/reloc_elf.c
159
if ((char *)where < (char *)data || (char *)where >= (char *)data + len)
stand/common/reloc_elf.c
163
addend = *where;
stand/common/reloc_elf.c
174
*where = addr;
stand/common/reloc_elf.c
181
*where = val;
stand/common/reloc_elf.c
53
Elf64_Addr *where, val;
stand/common/reloc_elf.c
65
where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
stand/common/reloc_elf.c
76
where = (Elf_Addr *)((char *)data + relbase + rela->r_offset -
stand/common/reloc_elf.c
88
if ((char *)where < (char *)data || (char *)where >= (char *)data + len)
stand/common/reloc_elf.c
92
addend = *where;
stand/efi/libefi/efihttp.c
64
static off_t efihttp_fs_seek(struct open_file *f, off_t offset, int where);
stand/efi/libefi/efihttp.c
696
efihttp_fs_seek(struct open_file *f, off_t offset, int where)
stand/efi/libefi/efihttp.c
705
if (where == SEEK_SET && fh->offset == offset)
stand/efi/libefi/efihttp.c
707
if (where == SEEK_SET && fh->offset < offset) {
stand/efi/libefi/efihttp.c
722
} else if (where == SEEK_SET) {
stand/efi/libefi/efihttp.c
738
return efihttp_fs_seek(f, offset, where);
stand/ficl/dict.c
700
void hashForget(FICL_HASH *pHash, void *where)
stand/ficl/dict.c
706
assert(where);
stand/ficl/dict.c
712
while ((void *)pWord >= where)
stand/ficl/ficl.h
691
void hashForget (FICL_HASH *pHash, void *where);
stand/ficl/tools.c
720
void *where;
stand/ficl/tools.c
725
where = ((FICL_WORD *)stackPopPtr(pVM->pStack))->name;
stand/ficl/tools.c
726
hashForget(pHash, where);
stand/ficl/tools.c
727
pDict->here = PTRtoCELL where;
stand/libsa/bzipfs.c
308
bzf_seek(struct open_file *f, off_t offset, int where)
stand/libsa/bzipfs.c
314
switch (where) {
stand/libsa/bzipfs.c
65
static off_t bzf_seek(struct open_file *f, off_t offset, int where);
stand/libsa/cd9660.c
641
cd9660_seek(struct open_file *f, off_t offset, int where)
stand/libsa/cd9660.c
645
switch (where) {
stand/libsa/cd9660.c
67
static off_t cd9660_seek(struct open_file *f, off_t offset, int where);
stand/libsa/ext2fs.c
847
ext2fs_seek(struct open_file *f, off_t offset, int where)
stand/libsa/ext2fs.c
851
switch (where) {
stand/libsa/ext2fs.c
98
static off_t ext2fs_seek(struct open_file *f, off_t offset, int where);
stand/libsa/gzipfs.c
288
zf_seek(struct open_file *f, off_t offset, int where)
stand/libsa/gzipfs.c
294
switch (where) {
stand/libsa/gzipfs.c
48
static off_t zf_seek(struct open_file *f, off_t offset, int where);
stand/libsa/lseek.c
101
if (f->f_ralen != 0 && where != SEEK_END) {
stand/libsa/lseek.c
106
switch (where) {
stand/libsa/lseek.c
129
if (where == SEEK_CUR)
stand/libsa/lseek.c
137
return (f->f_ops->fo_seek)(f, offset, where);
stand/libsa/lseek.c
64
lseek(int fd, off_t offset, int where)
stand/libsa/lseek.c
79
switch (where) {
stand/libsa/nfs.c
126
static off_t nfs_seek(struct open_file *f, off_t offset, int where);
stand/libsa/nfs.c
718
nfs_seek(struct open_file *f, off_t offset, int where)
stand/libsa/nfs.c
723
switch (where) {
stand/libsa/nullfs.c
86
off_t null_seek (struct open_file *f, off_t offset, int where)
stand/libsa/splitfs.c
233
splitfs_seek(struct open_file *f, off_t offset, int where)
stand/libsa/splitfs.c
243
switch (where) {
stand/libsa/splitfs.c
48
static off_t splitfs_seek(struct open_file *f, off_t offset, int where);
stand/libsa/stand.h
116
off_t (*fo_seek)(struct open_file *f, off_t offset, int where);
stand/libsa/stand.h
430
extern off_t null_seek(struct open_file *f, off_t offset, int where);
stand/libsa/tftp.c
709
tftp_seek(struct open_file *f, off_t offset, int where)
stand/libsa/tftp.c
714
switch (where) {
stand/libsa/ufs.c
826
ufs_seek(struct open_file *f, off_t offset, int where)
stand/libsa/ufs.c
830
switch (where) {
stand/libsa/ufs.c
88
static off_t ufs_seek(struct open_file *f, off_t offset, int where);
stand/libsa/zfs/zfs.c
182
zfs_seek(struct open_file *f, off_t offset, int where)
stand/libsa/zfs/zfs.c
186
switch (where) {
stand/libsa/zfs/zfs.c
53
static off_t zfs_seek(struct open_file *f, off_t offset, int where);
stand/userboot/userboot/host.c
75
host_seek(struct open_file *f, off_t offset, int where)
stand/userboot/userboot/host.c
78
return (CALLBACK(seek, f->f_fsdata, offset, where));
sys/amd64/amd64/elf_machdep.c
279
Elf64_Addr *where, val;
sys/amd64/amd64/elf_machdep.c
291
where = (Elf_Addr *) (relocbase + rel->r_offset);
sys/amd64/amd64/elf_machdep.c
299
addend = *(Elf32_Addr *)where;
sys/amd64/amd64/elf_machdep.c
302
addend = *where;
sys/amd64/amd64/elf_machdep.c
308
where = (Elf_Addr *) (relocbase + rela->r_offset);
sys/amd64/amd64/elf_machdep.c
333
if (*where != val)
sys/amd64/amd64/elf_machdep.c
334
*where = val;
sys/amd64/amd64/elf_machdep.c
341
where32 = (Elf32_Addr *)where;
sys/amd64/amd64/elf_machdep.c
342
val32 = (Elf32_Addr)(addr + addend - (Elf_Addr)where);
sys/amd64/amd64/elf_machdep.c
352
where32 = (Elf32_Addr *)where;
sys/amd64/amd64/elf_machdep.c
373
if (*where != addr)
sys/amd64/amd64/elf_machdep.c
374
*where = addr;
sys/amd64/amd64/elf_machdep.c
380
if (*where != val)
sys/amd64/amd64/elf_machdep.c
381
*where = val;
sys/amd64/amd64/elf_machdep.c
387
if (*where != val)
sys/amd64/amd64/elf_machdep.c
388
*where = val;
sys/amd64/linux/linux_sysvec.c
809
Elf64_Addr *where, val;
sys/amd64/linux/linux_sysvec.c
834
where = (Elf_Addr *)(mapping + rela->r_offset);
sys/amd64/linux/linux_sysvec.c
846
if (*where != val)
sys/amd64/linux/linux_sysvec.c
847
*where = val;
sys/amd64/linux32/linux32_sysvec.c
907
Elf32_Addr *where;
sys/amd64/linux32/linux32_sysvec.c
931
where = (Elf32_Addr *)(mapping + rel->r_offset);
sys/amd64/linux32/linux32_sysvec.c
932
addend = *where;
sys/amd64/linux32/linux32_sysvec.c
942
if (*where != addr)
sys/amd64/linux32/linux32_sysvec.c
943
*where = addr;
sys/arm/arm/elf_machdep.c
164
load_ptr(Elf_Addr *where)
sys/arm/arm/elf_machdep.c
168
if (RELOC_ALIGNED_P(where))
sys/arm/arm/elf_machdep.c
169
return *where;
sys/arm/arm/elf_machdep.c
170
memcpy(&res, where, sizeof(res));
sys/arm/arm/elf_machdep.c
175
store_ptr(Elf_Addr *where, Elf_Addr val)
sys/arm/arm/elf_machdep.c
177
if (RELOC_ALIGNED_P(where))
sys/arm/arm/elf_machdep.c
178
*where = val;
sys/arm/arm/elf_machdep.c
180
memcpy(where, &val, sizeof(val));
sys/arm/arm/elf_machdep.c
189
Elf_Addr *where;
sys/arm/arm/elf_machdep.c
200
where = (Elf_Addr *) (relocbase + rel->r_offset);
sys/arm/arm/elf_machdep.c
201
addend = load_ptr(where);
sys/arm/arm/elf_machdep.c
207
where = (Elf_Addr *) (relocbase + rela->r_offset);
sys/arm/arm/elf_machdep.c
219
if (load_ptr(where) != addr)
sys/arm/arm/elf_machdep.c
220
store_ptr(where, addr);
sys/arm/arm/elf_machdep.c
233
store_ptr(where, addr + load_ptr(where));
sys/arm/arm/elf_machdep.c
249
store_ptr(where, addr);
sys/arm/arm/elf_machdep.c
259
if (*where != addr)
sys/arm/arm/elf_machdep.c
260
*where = addr;
sys/arm64/arm64/elf_machdep.c
179
reloc_instr_imm(Elf32_Addr *where, Elf_Addr val, u_int msb, u_int lsb)
sys/arm64/arm64/elf_machdep.c
187
*where |= (Elf32_Addr)val;
sys/arm64/arm64/elf_machdep.c
201
Elf_Addr *where, addr, addend, val;
sys/arm64/arm64/elf_machdep.c
210
where = (Elf_Addr *) (relocbase + rel->r_offset);
sys/arm64/arm64/elf_machdep.c
211
addend = *where;
sys/arm64/arm64/elf_machdep.c
217
where = (Elf_Addr *) (relocbase + rela->r_offset);
sys/arm64/arm64/elf_machdep.c
235
*where = elf_relocaddr(lf, relocbase + addend);
sys/arm64/arm64/elf_machdep.c
248
error = reloc_instr_imm((Elf32_Addr *)where,
sys/arm64/arm64/elf_machdep.c
249
addr + addend - (Elf_Addr)where, 15, 2);
sys/arm64/arm64/elf_machdep.c
255
error = reloc_instr_imm((Elf32_Addr *)where,
sys/arm64/arm64/elf_machdep.c
256
addr + addend - (Elf_Addr)where, 20, 2);
sys/arm64/arm64/elf_machdep.c
263
error = reloc_instr_imm((Elf32_Addr *)where,
sys/arm64/arm64/elf_machdep.c
264
addr + addend - (Elf_Addr)where, 27, 2);
sys/arm64/arm64/elf_machdep.c
272
*where = addr + addend;
sys/arm64/arm64/elf_machdep.c
277
if (*where != val)
sys/arm64/arm64/elf_machdep.c
278
*where = val;
sys/arm64/linux/linux_sysvec.c
544
Elf_Addr *where;
sys/arm64/linux/linux_sysvec.c
566
where = (Elf_Addr *)(mapping + rela->r_offset);
sys/arm64/linux/linux_sysvec.c
577
if (*where != addr)
sys/arm64/linux/linux_sysvec.c
578
*where = addr;
sys/cddl/dev/dtrace/x86/dis_tables.c
6490
char *where;
sys/cddl/dev/dtrace/x86/dis_tables.c
6498
where = opcode + strlen(opcode) - 1;
sys/cddl/dev/dtrace/x86/dis_tables.c
6499
while (where > opcode && *where != ' ')
sys/cddl/dev/dtrace/x86/dis_tables.c
6500
--where;
sys/cddl/dev/dtrace/x86/dis_tables.c
6501
if (*where == ' ')
sys/cddl/dev/dtrace/x86/dis_tables.c
6502
++where;
sys/cddl/dev/dtrace/x86/dis_tables.c
6505
if (strncmp(where, unsigned_ops[i],
sys/compat/linuxkpi/common/include/linux/pci.h
696
pci_read_config_byte(const struct pci_dev *pdev, int where, u8 *val)
sys/compat/linuxkpi/common/include/linux/pci.h
699
*val = (u8)pci_read_config(pdev->dev.bsddev, where, 1);
sys/compat/linuxkpi/common/include/linux/pci.h
704
pci_read_config_word(const struct pci_dev *pdev, int where, u16 *val)
sys/compat/linuxkpi/common/include/linux/pci.h
707
*val = (u16)pci_read_config(pdev->dev.bsddev, where, 2);
sys/compat/linuxkpi/common/include/linux/pci.h
712
pci_read_config_dword(const struct pci_dev *pdev, int where, u32 *val)
sys/compat/linuxkpi/common/include/linux/pci.h
715
*val = (u32)pci_read_config(pdev->dev.bsddev, where, 4);
sys/compat/linuxkpi/common/include/linux/pci.h
720
pci_write_config_byte(const struct pci_dev *pdev, int where, u8 val)
sys/compat/linuxkpi/common/include/linux/pci.h
723
pci_write_config(pdev->dev.bsddev, where, val, 1);
sys/compat/linuxkpi/common/include/linux/pci.h
728
pci_write_config_word(const struct pci_dev *pdev, int where, u16 val)
sys/compat/linuxkpi/common/include/linux/pci.h
731
pci_write_config(pdev->dev.bsddev, where, val, 2);
sys/compat/linuxkpi/common/include/linux/pci.h
736
pci_write_config_dword(const struct pci_dev *pdev, int where, u32 val)
sys/compat/linuxkpi/common/include/linux/pci.h
739
pci_write_config(pdev->dev.bsddev, where, val, 4);
sys/dev/al_eth/al_eth.c
473
al_eth_fpga_read_pci_config(void *handle, int where, uint32_t *val)
sys/dev/al_eth/al_eth.c
477
*val = al_reg_read32((void*)((u_long)handle + where));
sys/dev/al_eth/al_eth.c
483
al_eth_fpga_write_pci_config(void *handle, int where, uint32_t val)
sys/dev/al_eth/al_eth.c
487
al_reg_write32((void*)((u_long)handle + where), val);
sys/dev/al_eth/al_eth.c
492
al_eth_read_pci_config(void *handle, int where, uint32_t *val)
sys/dev/al_eth/al_eth.c
496
*val = pci_read_config((device_t)handle, where, sizeof(*val));
sys/dev/al_eth/al_eth.c
501
al_eth_write_pci_config(void *handle, int where, uint32_t val)
sys/dev/al_eth/al_eth.c
505
pci_write_config((device_t)handle, where, val, sizeof(val));
sys/dev/drm2/drm_os_freebsd.h
626
pci_read_config_byte(device_t kdev, int where, u8 *val)
sys/dev/drm2/drm_os_freebsd.h
629
*val = (u8)pci_read_config(kdev, where, 1);
sys/dev/drm2/drm_os_freebsd.h
634
pci_write_config_byte(device_t kdev, int where, u8 val)
sys/dev/drm2/drm_os_freebsd.h
637
pci_write_config(kdev, where, val, 1);
sys/dev/drm2/drm_os_freebsd.h
642
pci_read_config_word(device_t kdev, int where, uint16_t *val)
sys/dev/drm2/drm_os_freebsd.h
645
*val = (uint16_t)pci_read_config(kdev, where, 2);
sys/dev/drm2/drm_os_freebsd.h
650
pci_write_config_word(device_t kdev, int where, uint16_t val)
sys/dev/drm2/drm_os_freebsd.h
653
pci_write_config(kdev, where, val, 2);
sys/dev/drm2/drm_os_freebsd.h
658
pci_read_config_dword(device_t kdev, int where, uint32_t *val)
sys/dev/drm2/drm_os_freebsd.h
661
*val = (uint32_t)pci_read_config(kdev, where, 4);
sys/dev/drm2/drm_os_freebsd.h
666
pci_write_config_dword(device_t kdev, int where, uint32_t val)
sys/dev/drm2/drm_os_freebsd.h
669
pci_write_config(kdev, where, val, 4);
sys/dev/hyperv/pcib/vmbus_pcib.c
1285
_hv_pcifront_read_config(struct hv_pci_dev *hpdev, int where, int size,
sys/dev/hyperv/pcib/vmbus_pcib.c
1289
bus_size_t addr = CFG_PAGE_OFFSET + where;
sys/dev/hyperv/pcib/vmbus_pcib.c
1294
if (where + size <= PCIR_COMMAND) {
sys/dev/hyperv/pcib/vmbus_pcib.c
1295
memcpy(val, ((uint8_t *)&hpdev->desc.v_id) + where, size);
sys/dev/hyperv/pcib/vmbus_pcib.c
1296
} else if (where >= PCIR_REVID && where + size <=
sys/dev/hyperv/pcib/vmbus_pcib.c
1298
memcpy(val, ((uint8_t *)&hpdev->desc.rev) + where -
sys/dev/hyperv/pcib/vmbus_pcib.c
1300
} else if (where >= PCIR_SUBVEND_0 && where + size <=
sys/dev/hyperv/pcib/vmbus_pcib.c
1302
memcpy(val, (uint8_t *)&hpdev->desc.subsystem_id + where -
sys/dev/hyperv/pcib/vmbus_pcib.c
1304
} else if (where >= PCIR_BIOS && where + size <=
sys/dev/hyperv/pcib/vmbus_pcib.c
1308
} else if ((where >= PCIR_INTLINE && where + size <=
sys/dev/hyperv/pcib/vmbus_pcib.c
1309
PCIR_INTPIN) ||(where == PCIR_INTPIN && size == 1)) {
sys/dev/hyperv/pcib/vmbus_pcib.c
1316
} else if (where + size <= CFG_PAGE_SIZE) {
sys/dev/hyperv/pcib/vmbus_pcib.c
1351
_hv_pcifront_write_config(struct hv_pci_dev *hpdev, int where, int size,
sys/dev/hyperv/pcib/vmbus_pcib.c
1355
bus_size_t addr = CFG_PAGE_OFFSET + where;
sys/dev/hyperv/pcib/vmbus_pcib.c
1358
if (where >= PCIR_SUBVEND_0 && where + size <= PCIR_CAP_PTR)
sys/dev/hyperv/pcib/vmbus_pcib.c
1361
if (where >= PCIR_COMMAND && where + size <= CFG_PAGE_SIZE) {
sys/dev/ofw/openfirm.h
159
int OF_seek(ihandle_t instance, uint64_t where);
sys/i386/i386/elf_machdep.c
176
Elf_Addr *where;
sys/i386/i386/elf_machdep.c
187
where = (Elf_Addr *) (relocbase + rel->r_offset);
sys/i386/i386/elf_machdep.c
188
addend = *where;
sys/i386/i386/elf_machdep.c
194
where = (Elf_Addr *) (relocbase + rela->r_offset);
sys/i386/i386/elf_machdep.c
206
if (*where != addr)
sys/i386/i386/elf_machdep.c
207
*where = addr;
sys/i386/i386/elf_machdep.c
221
if (*where != addr)
sys/i386/i386/elf_machdep.c
222
*where = addr;
sys/i386/i386/elf_machdep.c
229
addr += addend - (Elf_Addr)where;
sys/i386/i386/elf_machdep.c
230
if (*where != addr)
sys/i386/i386/elf_machdep.c
231
*where = addr;
sys/i386/i386/elf_machdep.c
249
if (*where != addr)
sys/i386/i386/elf_machdep.c
250
*where = addr;
sys/i386/i386/elf_machdep.c
259
if (*where != addr)
sys/i386/i386/elf_machdep.c
260
*where = addr;
sys/i386/linux/linux_sysvec.c
749
Elf_Addr *where;
sys/i386/linux/linux_sysvec.c
773
where = (Elf_Addr *)(mapping + rel->r_offset);
sys/i386/linux/linux_sysvec.c
774
addend = *where;
sys/i386/linux/linux_sysvec.c
784
if (*where != addr)
sys/i386/linux/linux_sysvec.c
785
*where = addr;
sys/kern/kern_xxx.c
178
error = userland_sysctl(td, name, 6, uap->where, uap->size,
sys/kern/kern_xxx.c
187
error = userland_sysctl(td, name, 4, uap->where, uap->size,
sys/kern/kern_xxx.c
194
error = userland_sysctl(td, name, 2, uap->where, uap->size,
sys/kern/kern_xxx.c
201
error = userland_sysctl(td, name, 2, uap->where, uap->size,
sys/kern/kern_xxx.c
208
error = userland_sysctl(td, name, 2, uap->where, uap->size,
sys/kern/kern_xxx.c
215
error = userland_sysctl(td, name, 2, uap->where, uap->size,
sys/kern/kern_xxx.c
255
if ((uap->where == NULL) || (uap->size == NULL)) {
sys/kern/kern_xxx.c
272
if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0)
sys/kern/kern_xxx.c
279
uap->where + sizeof(bsdi_si), left);
sys/netinet/tcp_stacks/rack.c
2829
rack_log_rtt_sample_calc(struct tcp_rack *rack, uint32_t rtt, uint32_t send_time, uint32_t ack_time, int where)
sys/netinet/tcp_stacks/rack.c
2840
log.u_bbr.flex4 = where;
sys/netinet/tcp_subr.c
4267
#define COPYTIMER(which,where) do { \
sys/netinet/tcp_subr.c
4269
xt->where = (tp->t_timers[which] - now) / SBT_1MS; \
sys/netinet/tcp_subr.c
4271
xt->where = 0; \
sys/netipsec/ipsec.h
371
void m_checkalignment(const char* where, struct mbuf *m0,
sys/netipsec/ipsec_mbuf.c
309
m_checkalignment(const char* where, struct mbuf *m0, int off, int len)
sys/netipsec/ipsec_mbuf.c
317
printf("%s (off %u len %u): ", where, off, len);
sys/powerpc/powerpc/elf32_machdep.c
239
Elf_Addr *where;
sys/powerpc/powerpc/elf32_machdep.c
253
where = (Elf_Addr *) ((uintptr_t)relocbase + rela->r_offset);
sys/powerpc/powerpc/elf32_machdep.c
271
*where = elf_relocaddr(lf, addr + addend);
sys/powerpc/powerpc/elf32_machdep.c
306
*where = elf_relocaddr(lf, relocbase + addend);
sys/powerpc/powerpc/elf32_machdep.c
320
*where = elf_relocaddr(lf, addr + addend);
sys/powerpc/powerpc/elf32_machdep.c
326
if (*where != val)
sys/powerpc/powerpc/elf32_machdep.c
327
*where = val;
sys/powerpc/powerpc/elf32_machdep.c
343
Elf_Addr *where;
sys/powerpc/powerpc/elf32_machdep.c
366
where = (Elf_Addr *)(relocbase + rela->r_offset);
sys/powerpc/powerpc/elf32_machdep.c
367
*where = (Elf_Addr)(relocbase + rela->r_addend);
sys/powerpc/powerpc/elf64_machdep.c
329
Elf_Addr *where;
sys/powerpc/powerpc/elf64_machdep.c
342
where = (Elf_Addr *) (relocbase + rela->r_offset);
sys/powerpc/powerpc/elf64_machdep.c
360
*where = addr;
sys/powerpc/powerpc/elf64_machdep.c
364
*where = elf_relocaddr(lf, relocbase + addend);
sys/powerpc/powerpc/elf64_machdep.c
370
memcpy(where, (Elf_Addr *)addr, 3*sizeof(Elf_Addr));
sys/powerpc/powerpc/elf64_machdep.c
372
*where = addr;
sys/powerpc/powerpc/elf64_machdep.c
374
__asm __volatile("dcbst 0,%0; sync" :: "r"(where) : "memory");
sys/powerpc/powerpc/elf64_machdep.c
380
if (*where != val)
sys/powerpc/powerpc/elf64_machdep.c
381
*where = val;
sys/powerpc/powerpc/elf64_machdep.c
397
Elf_Addr *where;
sys/powerpc/powerpc/elf64_machdep.c
420
where = (Elf_Addr *)(relocbase + rela->r_offset);
sys/powerpc/powerpc/elf64_machdep.c
421
*where = (Elf_Addr)(relocbase + rela->r_addend);
sys/riscv/riscv/elf_machdep.c
296
Elf64_Addr *where;
sys/riscv/riscv/elf_machdep.c
308
where = (Elf_Addr *)(relocbase + rela->r_offset);
sys/riscv/riscv/elf_machdep.c
309
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
329
before64 = *where;
sys/riscv/riscv/elf_machdep.c
330
*where = addr + addend;
sys/riscv/riscv/elf_machdep.c
332
printf("%p %c %-24s %016lx -> %016lx\n", where,
sys/riscv/riscv/elf_machdep.c
334
before64, *where);
sys/riscv/riscv/elf_machdep.c
342
before64 = *where;
sys/riscv/riscv/elf_machdep.c
343
*where = addr;
sys/riscv/riscv/elf_machdep.c
345
printf("%p %c %-24s %016lx -> %016lx\n", where,
sys/riscv/riscv/elf_machdep.c
347
before64, *where);
sys/riscv/riscv/elf_machdep.c
351
before64 = *where;
sys/riscv/riscv/elf_machdep.c
352
*where = elf_relocaddr(lf, relocbase + addend);
sys/riscv/riscv/elf_machdep.c
354
printf("%p %c %-24s %016lx -> %016lx\n", where,
sys/riscv/riscv/elf_machdep.c
356
before64, *where);
sys/riscv/riscv/elf_machdep.c
364
val = addr - (Elf_Addr)where;
sys/riscv/riscv/elf_machdep.c
376
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
391
val = addr - (Elf_Addr)where;
sys/riscv/riscv/elf_machdep.c
406
printf("%p %c %-24s %08x %08x -> %08x %08x\n", where,
sys/riscv/riscv/elf_machdep.c
416
val = addr - (Elf_Addr)where;
sys/riscv/riscv/elf_machdep.c
417
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
422
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
432
val = addr - (Elf_Addr)where;
sys/riscv/riscv/elf_machdep.c
433
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
437
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
447
val = addr - (Elf_Addr)where;
sys/riscv/riscv/elf_machdep.c
448
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
453
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
464
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
469
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
480
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
484
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
495
insn32p = (uint32_t *)where;
sys/riscv/riscv/elf_machdep.c
500
printf("%p %c %-24s %08x -> %08x\n", where,
sys/riscv/riscv/elf_machdep.c
507
if (*where != val)
sys/riscv/riscv/elf_machdep.c
508
*where = val;
sys/rpc/clnt_bck.c
333
reply_msg.acpted_rply.ar_results.where = NULL;
sys/rpc/clnt_dg.c
486
reply_msg.acpted_rply.ar_results.where = NULL;
sys/rpc/clnt_vc.c
451
reply_msg.acpted_rply.ar_results.where = NULL;
sys/rpc/rpc_msg.h
94
caddr_t where;
sys/rpc/rpc_prot.c
109
ar->ar_results.where));
sys/rpc/svc.c
703
rply.acpted_rply.ar_results.where = NULL;
sys/rpc/svc.c
729
rply.acpted_rply.ar_results.where = NULL;
sys/sys/sysproto.h
2380
char where_l_[PADL_(char *)]; char * where; char where_r_[PADR_(char *)];
tools/test/stress2/lib/options.c
44
usage(const char *where)
tools/test/stress2/lib/options.c
48
if (where != NULL)
tools/test/stress2/lib/options.c
49
printf("Error in \"%s\"\n", where);
usr.bin/finger/finger.h
49
struct where *whead, *wtail; /* list of where user is or has been */
usr.bin/finger/finger.h
55
struct where *next; /* next place user is or has been */
usr.bin/gzip/gzip.c
2014
print_ratio(off_t in, off_t out, FILE *where)
usr.bin/gzip/gzip.c
2049
fprintf(where, "%5s%%", buff);
usr.bin/mkimg/apm.c
54
apm_metadata(u_int where, lba_t blk)
usr.bin/mkimg/apm.c
57
blk += (where == SCHEME_META_IMG_START) ? nparts + 2 : 0;
usr.bin/mkimg/bsd.c
52
bsd_metadata(u_int where, lba_t blk)
usr.bin/mkimg/bsd.c
55
if (where == SCHEME_META_IMG_START)
usr.bin/mkimg/bsd.c
57
else if (where == SCHEME_META_IMG_END)
usr.bin/mkimg/ebr.c
51
ebr_metadata(u_int where, lba_t blk)
usr.bin/mkimg/ebr.c
54
blk += (where == SCHEME_META_PART_BEFORE) ? 1 : 0;
usr.bin/mkimg/gpt.c
147
gpt_metadata(u_int where, lba_t blk)
usr.bin/mkimg/gpt.c
150
if (where == SCHEME_META_IMG_START || where == SCHEME_META_IMG_END) {
usr.bin/mkimg/gpt.c
152
blk += (where == SCHEME_META_IMG_START) ? 2 : 1;
usr.bin/mkimg/mbr.c
55
mbr_metadata(u_int where, lba_t blk)
usr.bin/mkimg/mbr.c
58
blk += (where == SCHEME_META_IMG_START) ? 1 : 0;
usr.bin/mkimg/scheme.c
190
scheme_metadata(u_int where, lba_t start)
usr.bin/mkimg/scheme.c
193
return ((scheme == NULL) ? start : scheme->metadata(where, start));
usr.bin/patch/patch.c
155
LINENUM where = 0, newwhere, fuzz, mymaxfuzz;
usr.bin/patch/patch.c
304
where = locate_hunk(fuzz);
usr.bin/patch/patch.c
305
if (hunk == 1 && where == 0 && !force && !reverse_seen) {
usr.bin/patch/patch.c
314
where = locate_hunk(fuzz);
usr.bin/patch/patch.c
315
if (where == 0) {
usr.bin/patch/patch.c
343
where = 0;
usr.bin/patch/patch.c
351
} while (!skip_rest_of_patch && where == 0 &&
usr.bin/patch/patch.c
370
} else if (where == 0) {
usr.bin/patch/patch.c
377
apply_hunk(where);
usr.bin/patch/patch.c
892
apply_hunk(LINENUM where)
usr.bin/patch/patch.c
904
where--;
usr.bin/patch/patch.c
910
copy_till(where + old - 1, false);
usr.bin/patch/patch.c
926
copy_till(where + old - 1, false);
usr.bin/patch/patch.c
948
copy_till(where + old - 1, false);
usr.bin/patch/patch.c
980
copy_till(where + old - 1, false);
usr.bin/rpcgen/rpc_scan.c
154
if (*where == 0) {
usr.bin/rpcgen/rpc_scan.c
164
*where = 0;
usr.bin/rpcgen/rpc_scan.c
179
where = curline;
usr.bin/rpcgen/rpc_scan.c
180
} else if (isspace(*where)) {
usr.bin/rpcgen/rpc_scan.c
181
while (isspace(*where)) {
usr.bin/rpcgen/rpc_scan.c
182
where++; /* eat */
usr.bin/rpcgen/rpc_scan.c
185
for (where++; *where; where++) {
usr.bin/rpcgen/rpc_scan.c
186
if (endcomment(where)) {
usr.bin/rpcgen/rpc_scan.c
187
where++;
usr.bin/rpcgen/rpc_scan.c
192
} else if (startcomment(where)) {
usr.bin/rpcgen/rpc_scan.c
193
where += 2;
usr.bin/rpcgen/rpc_scan.c
203
switch (*where) {
usr.bin/rpcgen/rpc_scan.c
206
where++;
usr.bin/rpcgen/rpc_scan.c
210
where++;
usr.bin/rpcgen/rpc_scan.c
214
where++;
usr.bin/rpcgen/rpc_scan.c
218
where++;
usr.bin/rpcgen/rpc_scan.c
222
where++;
usr.bin/rpcgen/rpc_scan.c
226
where++;
usr.bin/rpcgen/rpc_scan.c
230
where++;
usr.bin/rpcgen/rpc_scan.c
234
where++;
usr.bin/rpcgen/rpc_scan.c
238
where++;
usr.bin/rpcgen/rpc_scan.c
242
where++;
usr.bin/rpcgen/rpc_scan.c
246
where++;
usr.bin/rpcgen/rpc_scan.c
250
where++;
usr.bin/rpcgen/rpc_scan.c
254
where++;
usr.bin/rpcgen/rpc_scan.c
259
findstrconst(&where, &tokp->str);
usr.bin/rpcgen/rpc_scan.c
263
findchrconst(&where, &tokp->str);
usr.bin/rpcgen/rpc_scan.c
278
findconst(&where, &tokp->str);
usr.bin/rpcgen/rpc_scan.c
282
if (!(isalpha(*where) || *where == '_')) {
usr.bin/rpcgen/rpc_scan.c
288
if (isprint(*where)) {
usr.bin/rpcgen/rpc_scan.c
289
s_print(p, "%c", *where);
usr.bin/rpcgen/rpc_scan.c
291
s_print(p, "%d", *where);
usr.bin/rpcgen/rpc_scan.c
295
findkind(&where, tokp);
usr.bin/rpcgen/rpc_scan.c
45
#define startcomment(where) (where[0] == '/' && where[1] == '*')
usr.bin/rpcgen/rpc_scan.c
46
#define endcomment(where) (where[-1] == '*' && where[0] == '/')
usr.bin/rpcgen/rpc_util.c
400
for (i = 0; i < where - curline; i++) {
usr.bin/rpcgen/rpc_util.c
46
char *where = curline; /* current point in line */
usr.bin/rpcgen/rpc_util.c
69
where = curline;
usr.bin/rpcgen/rpc_util.h
107
extern char *where;
usr.bin/tcopy/tcopy.cc
287
off_t where;
usr.bin/tcopy/tcopy.cc
296
where = lseek(fd, 0L, SEEK_SET);
usr.bin/tcopy/tcopy.cc
297
if (where != 0 && errno == ESPIPE)
usr.bin/tcopy/tcopy.cc
299
if (where != 0)
usr.bin/tcopy/tcopy.cc
386
off_t where = lseek(fd, 0UL, SEEK_CUR);
usr.bin/tcopy/tcopy.cc
388
int i = ftruncate(fd, where);
usr.bin/tcopy/tcopy.cc
390
errx(17, "truncate error, %s to %jd", name, (intmax_t)where);
usr.bin/top/top.c
146
size_t where = TOP_MAX_UIDS;
usr.bin/top/top.c
154
where = i;
usr.bin/top/top.c
158
if (where != TOP_MAX_UIDS)
usr.bin/top/top.c
160
ps.uid[where] = ps.uid[i-1];
usr.sbin/bootparamd/bootparamd/bootparamd.c
110
char *where;
usr.sbin/bootparamd/bootparamd/bootparamd.c
129
if ( (where = strchr(buffer,':')) ) {
usr.sbin/bootparamd/bootparamd/bootparamd.c
131
strncpy(hostname, buffer, where - buffer);
usr.sbin/bootparamd/bootparamd/bootparamd.c
132
hostname[where - buffer] = '\0';
usr.sbin/bootparamd/bootparamd/bootparamd.c
133
where++;
usr.sbin/bootparamd/bootparamd/bootparamd.c
134
strcpy(path, where);
usr.sbin/bootparamd/bootparamd/bootparamd.c
183
char *where;
usr.sbin/bootparamd/bootparamd/bootparamd.c
256
where = info + fid_len + 1;
usr.sbin/bootparamd/bootparamd/bootparamd.c
257
if ( isprint( *where )) {
usr.sbin/bootparamd/bootparamd/bootparamd.c
258
strcpy(buf, where); /* found file */
usr.sbin/mptable/mptable.c
117
static void apic_probe( u_int32_t* paddr, int* where );
usr.sbin/mptable/mptable.c
121
static void MPFloatingPointer( u_int32_t paddr, int where, mpfps_t* mpfpsp );
usr.sbin/mptable/mptable.c
169
int where;
usr.sbin/mptable/mptable.c
216
apic_probe( &paddr, &where );
usr.sbin/mptable/mptable.c
217
if ( where <= 0 ) {
usr.sbin/mptable/mptable.c
226
whereStrings[ where - 1 ], paddr );
usr.sbin/mptable/mptable.c
231
MPFloatingPointer( paddr, where, &mpfps );
usr.sbin/mptable/mptable.c
256
apic_probe( u_int32_t* paddr, int* where )
usr.sbin/mptable/mptable.c
284
*where = 1;
usr.sbin/mptable/mptable.c
308
*where = 2;
usr.sbin/mptable/mptable.c
325
*where = 3;
usr.sbin/mptable/mptable.c
340
*where = 4;
usr.sbin/mptable/mptable.c
354
*where = 5;
usr.sbin/mptable/mptable.c
370
*where = 6;
usr.sbin/mptable/mptable.c
384
*where = 7;
usr.sbin/mptable/mptable.c
391
*where = 0;
usr.sbin/mptable/mptable.c
400
MPFloatingPointer( u_int32_t paddr, int where, mpfps_t* mpfpsp )
usr.sbin/mptable/mptable.c
411
switch ( where )
usr.sbin/rpcbind/rpcb_svc_com.c
1264
reply_msg.acpted_rply.ar_results.where = 0;
usr.sbin/ypldap/ldapclient.c
570
const char *where;
usr.sbin/ypldap/ldapclient.c
576
where = "connect";
usr.sbin/ypldap/ldapclient.c
581
where = "binding";
usr.sbin/ypldap/ldapclient.c
585
where = "parsing";
usr.sbin/ypldap/ldapclient.c
588
where = "verifying msgid";
usr.sbin/ypldap/ldapclient.c
607
where = "search";
usr.sbin/ypldap/ldapclient.c
624
where = "search";
usr.sbin/ypldap/ldapclient.c
638
log_debug("directory %s errored out in %s", idm->idm_name, where);