Symbol: push
bin/pax/buf_subs.c
877
int push = 0;
bin/pax/buf_subs.c
908
push = bufcnt - blksz;
bin/pax/buf_subs.c
925
if (push > 0) {
bin/pax/buf_subs.c
930
memcpy(buf, bufend, push);
bin/pax/buf_subs.c
931
bufpt = buf + push;
bin/pax/buf_subs.c
932
if (push >= blksz) {
bin/pax/buf_subs.c
933
push -= blksz;
bin/pax/buf_subs.c
973
push = bufcnt - blksz;
bin/sh/input.c
360
setinputfile(const char *fname, int push)
bin/sh/input.c
379
setinputfd(fd, push);
bin/sh/input.c
390
setinputfd(int fd, int push)
bin/sh/input.c
395
if (push) {
bin/sh/input.c
414
setinputstring(const char *string, int push)
bin/sh/input.c
417
if (push)
crypto/libressl/apps/openssl/ca.c
1739
X509_NAME_ENTRY *tne, *push;
crypto/libressl/apps/openssl/ca.c
1869
push = NULL;
crypto/libressl/apps/openssl/ca.c
1872
push = tne;
crypto/libressl/apps/openssl/ca.c
1880
push = tne;
crypto/libressl/apps/openssl/ca.c
1902
push = X509_NAME_get_entry(CAname, j);
crypto/libressl/apps/openssl/ca.c
1903
if (push == NULL)
crypto/libressl/apps/openssl/ca.c
1908
str2 = X509_NAME_ENTRY_get_data(push);
crypto/libressl/apps/openssl/ca.c
1931
if (push != NULL) {
crypto/libressl/apps/openssl/ca.c
1932
if (!X509_NAME_add_entry(subject, push,
crypto/libressl/apps/openssl/ca.c
1934
X509_NAME_ENTRY_free(push);
crypto/libressl/ssl/ssl_lib.c
3021
ssl_init_wbio_buffer(SSL *s, int push)
crypto/libressl/ssl/ssl_lib.c
3041
if (push) {
crypto/libressl/ssl/ssl_locl.h
1478
int ssl_init_wbio_buffer(SSL *s, int push);
games/atc/input.c
271
push(i, (c >= ALPHATOKEN) ? tval : c);
games/atc/input.c
94
static void push(int, int);
games/sail/dr_3.c
137
if (!push(sp, sq))
games/sail/dr_3.c
48
static int push(struct ship *, struct ship *);
lib/libc/stdlib/radixsort.c
136
push(a, n, i);
lib/libc/stdlib/radixsort.c
168
push(a, n, i+1);
lib/libc/stdlib/radixsort.c
196
push(ak, *cp, i+1);
lib/libc/stdlib/radixsort.c
234
push(a, n, i);
lib/libc/stdlib/radixsort.c
276
push(ak, c, i+1);
sys/dev/misc/evdev/evdev.c
938
goto push;
sys/dev/misc/evdev/evdev.c
962
push:
usr.bin/dc/bcode.c
68
static __inline void push(struct value *);
usr.bin/dc/bcode.c
800
push(stack_dup_value(v, &copy));
usr.bin/dc/bcode.c
835
push(value);
usr.bin/dc/bcode.c
885
push(stack_dup_value(v, &copy));
usr.sbin/ppp/layer.h
49
struct mbuf *(*push)(struct bundle *, struct link *, struct mbuf *,
usr.sbin/ppp/link.c
240
if (l->layer[layer - 1]->push != NULL)
usr.sbin/ppp/link.c
241
bp = (*l->layer[layer - 1]->push)(b, l, bp, pri, &proto);