Searched refs:post (Results 1 - 25 of 75) sorted by relevance

123

/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/sysevent/
H A DMakefile10 tst.post.d \
17 tst.post.c \
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sysevent/
H A Dtst.post.d40 sysevent:::post
48 sysevent:::post
56 sysevent:::post
64 sysevent:::post
71 sysevent:::post
78 sysevent:::post
H A Dtst.post_chan.d40 sysevent:::post
47 sysevent:::post
55 sysevent:::post
63 sysevent:::post
70 sysevent:::post
77 sysevent:::post
/freebsd-11-stable/gnu/usr.bin/groff/src/devices/grohtml/
H A DMakefile3 PROG_CXX= post-grohtml
4 SRCS= post-html.cpp html-table.cpp html-text.cpp output.cpp
/freebsd-11-stable/contrib/mdocml/
H A Deqn_html.c35 struct tag *post, *row, *cell, *t; local
45 post = NULL;
67 post = print_otag(p, TAG_MTABLE, "");
96 post = print_otag(p, TAG_MOVER, "");
99 post = print_otag(p, TAG_MSUP, "");
102 post = print_otag(p, TAG_MUNDER, "");
105 post = print_otag(p, TAG_MSUB, "");
108 post = print_otag(p, TAG_MFRAC, "");
111 post = print_otag(p, TAG_MUNDEROVER, "");
114 post
[all...]
/freebsd-11-stable/contrib/groff/src/devices/grohtml/
H A DMakefile.sub1 PROG=post-grohtml$(EXEEXT)
6 post-html.$(OBJEXT) \
11 $(srcdir)/post-html.cpp \
/freebsd-11-stable/sys/sys/
H A Dloginclass.h51 void *arg2, void *arg3), void (*pre)(void), void (*post)(void),
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpost.c28 * $FreeBSD: stable/11/usr.sbin/bhyve/post.c 330449 2018-03-05 07:26:05Z eadler $
32 __FBSDID("$FreeBSD: stable/11/usr.sbin/bhyve/post.c 330449 2018-03-05 07:26:05Z eadler $");
54 INOUT_PORT(post, 0x84, IOPORT_F_IN, post_data_handler);
H A DMakefile47 post.c \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profile_collector.h39 void post(BufferQueue *Q, FunctionCallTrie &&T,
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dsanity_test.c51 enum type { inv, pre, post, unreachable }; enumerator in enum:type
75 case post:
134 case post:
192 ATF_TC(post); variable
193 ATF_TC_HEAD(post, tc)
197 ATF_TC_BODY(post, tc)
201 do_test(post, false);
202 do_test(post, true);
226 ATF_TP_ADD_TC(tp, post);
/freebsd-11-stable/contrib/dialog/package/freebsd/
H A DMakefile39 post-patch:
42 post-install:
/freebsd-11-stable/sys/kern/
H A Dkern_loginclass.c243 void *arg2, void *arg3), void (*pre)(void), void (*post)(void),
253 if (post != NULL)
254 (post)();
242 loginclass_racct_foreach(void (*callback)(struct racct *racct, void *arg2, void *arg3), void (*pre)(void), void (*post)(void), void *arg2, void *arg3) argument
/freebsd-11-stable/contrib/netbsd-tests/fs/vfs/
H A Dt_rwtoro.c130 bool use_layer, void (*pre)(const char *), void (*post)(const char *))
145 if (post)
146 (*post)(use_layer ? null_mount : mp);
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx_spi.c171 u_int post, pre; local
181 for (post = 0; post < 16; ++post) {
182 pre = ((sc->basefreq >> post) / busfreq) - 1;
186 if (post == 16) {
189 post = 15;
194 "base %u bus %u; pre %u, post %u; actual busfreq %u\n",
195 sc->basefreq, busfreq, pre, post,
196 (sc->basefreq / (pre + 1)) / (1 << post));
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Ddiv.cpp63 vunits pre_extra, post_extra, pre, post; member in struct:vertical_size
68 : pre_extra(V0), post_extra(V0), pre(vs), post(post_vs)
91 v->post = n;
287 v.post = post_vs;
291 vunits x = v.pre + v.pre_extra + v.post + v.post_extra;
296 if (trunc > v.post)
297 trunc = v.post;
298 v.post -= trunc;
304 mac->append(new vertical_size_node(v.post));
307 if (vertical_position - v.post > high_water_mar
[all...]
/freebsd-11-stable/contrib/netbsd-tests/sys/rc/
H A Dt_rc_d_cli.sh139 post${command}:.
153 post${command}:.
/freebsd-11-stable/crypto/openssl/crypto/perlasm/
H A Dx86masm.pl40 my($post,$ret);
54 else { $post=$addr; }
66 $ret .= "$post]";
H A Dx86nasm.pl37 my($post,$ret);
56 else { $post=$addr; }
67 $ret .= "$post]";
/freebsd-11-stable/sys/contrib/dev/acpica/
H A Dacpica_prep.sh84 # post-clean
85 echo post-clean
/freebsd-11-stable/contrib/libpcap/msdos/
H A Dpkt_rx1.s94 jne @post ; AX=1: second call, do post process
131 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
/freebsd-11-stable/contrib/gcc/
H A Dcfganal.c164 int *post;
173 post = XCNEWVEC (int, last_basic_block);
214 post[dest->index] = postnum++;
220 && post[dest->index] == 0)
224 post[src->index] = postnum++;
234 free (post);
654 This is computing a post order numbering of the graph. */
162 int *post; local
H A Dcfgloopanal.c71 int post; /* Postorder number. */ member in struct:vertex
156 g->vertices[i].post = -1;
167 if (g->vertices[v].post != -1)
183 g->vertices[v].post = tick++;
/freebsd-11-stable/share/mk/
H A DMakefile46 bsd.port.post.mk \
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Dghashv8-armx.S36 vext.8 q9,q0,q2,#8 @ Karatsuba post-processing
76 vext.8 q9,q0,q2,#8 @ Karatsuba post-processing
111 mov r12,#16 @ r12 is used as post-
162 vext.8 q9,q0,q2,#8 @ Karatsuba post-processing
206 vext.8 q9,q0,q2,#8 @ Karatsuba post-processing

Completed in 246 milliseconds

123