Searched refs:cx (Results 1 - 25 of 70) sorted by relevance

123

/freebsd-current/contrib/bearssl/T0/
H A DCodeElementUIntExpr.cs30 TPointerExpr cx; field in class:CodeElementUIntExpr
34 TPointerExpr cx, int off) : base()
37 this.cx = cx;
45 + (cx.GetMaxBitLength(off) + 6) / 7;
53 return len + (cx.GetMaxBitLength(off) + 6) / 7;
61 int len2 = (cx.GetMaxBitLength(off) + 6) / 7;
63 len2, cx.ToCExpr(off)));
33 CodeElementUIntExpr(uint val, TPointerExpr cx, int off) argument
H A DOpcodeConst.cs76 TPointerExpr cx = val.ptr as TPointerExpr;
77 if (cx != null) {
78 return new CodeElementUIntExpr(1, cx, val.x);
/freebsd-current/usr.sbin/ppp/
H A Dradius.c168 if (rad_request_authenticator(r->cx.rad, R, sizeof R) != AUTH_LEN) {
178 S = rad_server_secret(r->cx.rad); /* We need the RADIUS secret */
265 r->cx.fd = -1; /* Stop select()ing */
266 stype = r->cx.auth ? "auth" : "acct";
272 if (!r->cx.auth) {
273 rad_close(r->cx.rad);
281 if (!r->cx.auth) {
282 rad_close(r->cx.rad);
291 if (r->cx.auth)
292 auth_Failure(r->cx
[all...]
H A Ddeflate.c47 z_stream cx; member in struct:deflate_state
62 deflateReset(&state->cx);
104 state->cx.next_out = wp;
105 state->cx.avail_out = DEFLATE_CHUNK_LEN - 2;
106 state->cx.next_in = MBUF_CTOP(mi);
107 state->cx.avail_in = mi->m_len;
112 if ((res = deflate(&state->cx, flush)) != Z_OK) {
116 res, state->cx.msg ? state->cx.msg : "");
123 if (flush == Z_SYNC_FLUSH && state->cx
[all...]
H A Dcommand.c215 const char *cx; local
248 cx = showcx(cmd);
253 cmd->name, cxlen, cxlen, cx, dmax, dmax, cmd->helpmes);
266 Concatinate(arg->cx->physical->link.lcp.cfg.ident,
267 sizeof arg->cx->physical->link.lcp.cfg.ident,
275 if (arg->cx->state < DATALINK_LCP) {
279 return lcp_SendIdentification(&arg->cx->physical->link.lcp) ? 0 : 1;
296 bundle_DatalinkClone(arg->bundle, arg->cx, name);
308 if (arg->cx->state != DATALINK_CLOSED) {
313 bundle_DatalinkRemove(arg->bundle, arg->cx);
1087 FindExec(struct bundle *bundle, struct cmdtab const *cmds, int argc, int argn, char const *const *argv, struct prompt *prompt, struct datalink *cx) argument
1187 command_Run(struct bundle *bundle, int argc, char const *const *argv, struct prompt *prompt, const char *label, struct datalink *cx) argument
1289 struct datalink *cx = arg->cx ? local
1654 struct datalink *cx = arg->cx; /* LOCAL_CX uses this */ local
2692 struct datalink *cx; local
2849 struct datalink *cx = arg->cx; /* LOCAL_CX uses this */ local
3119 struct datalink *cx; local
[all...]
H A Ddatalink.c1070 prompt_Printf(arg->prompt, "Name: %s\n", arg->cx->name);
1072 datalink_State(arg->cx));
1074 if (*arg->cx->peer.authname)
1075 prompt_Printf(arg->prompt, "%s\n", arg->cx->peer.authname);
1076 else if (arg->cx->state == DATALINK_OPEN)
1081 mp_Enddisc(arg->cx->peer.enddisc.class,
1082 arg->cx->peer.enddisc.address,
1083 arg->cx->peer.enddisc.len));
1087 arg->cx->cfg.phone.list);
1088 if (arg->cx
[all...]
H A Dcommand.h43 struct datalink *cx; /* Our context */ member in struct:cmdargs
H A Dradius.h47 } cx; member in struct:radius
H A Dsystems.c317 struct prompt *prompt, struct datalink *cx, int how)
359 n = ReadSystem(bundle, name, arg, prompt, cx, how);
410 name, cx);
478 struct prompt *prompt, struct datalink *cx)
482 return ReadSystem(bundle, name, file, prompt, cx, SYSTEM_EXEC);
316 ReadSystem(struct bundle *bundle, const char *name, const char *file, struct prompt *prompt, struct datalink *cx, int how) argument
477 system_Select(struct bundle *bundle, const char *name, const char *file, struct prompt *prompt, struct datalink *cx) argument
/freebsd-current/sys/netgraph/
H A Dng_deflate.c66 z_stream cx; /* compression context */ member in struct:ng_deflate_private
241 deflateEnd(&priv->cx);
243 inflateEnd(&priv->cx);
251 priv->cx.next_in = NULL;
254 if ((res = deflateInit2(&priv->cx,
260 res, priv->cx.msg);
265 if ((res = inflateInit2(&priv->cx,
269 res, priv->cx.msg);
375 deflateEnd(&priv->cx);
377 inflateEnd(&priv->cx);
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dt-rpool.c21 void *cx));
24 rfree(cx)
25 void *cx;
28 (char *) cx);
/freebsd-current/sys/modules/dtb/freescale/
H A DMakefile3 freescale/fsl-lx2160a-clearfog-cx.dts \
/freebsd-current/stand/i386/gptboot/
H A Dgptldr.S62 start: xor %cx,%cx # Zero
63 mov %cx,%es # Address
64 mov %cx,%ds # data
65 mov %cx,%ss # Set up
98 mov $COPY_BLK_SZ,%cx # Copy 32k
103 mov %cx,%ds # Reset %ds and %es
104 mov %cx,%es
106 mov 0xa(%bx),%cx # Get BTX length and set
109 add %cx,
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dport-linux.c181 char *oldctx, *newctx, *cx, *cx2; local
191 if ((cx = strchr(oldctx, ':')) == NULL ||
192 (cx = strchr(cx + 1, ':')) == NULL ||
193 (cx - oldctx) >= INT_MAX) {
202 if (strncmp(cx, SSH_SELINUX_UNCONFINED_TYPE,
206 cx2 = strchr(cx + 1, ':');
207 xasprintf(&newctx, "%.*s%s%s", (int)(cx - oldctx + 1), oldctx,
/freebsd-current/stand/i386/zfsboot/
H A Dzfsldr.S51 xor %cx,%cx # Zero
52 mov %cx,%es # Address
53 mov %cx,%ds # data
54 mov %cx,%ss # Set up
68 mov $0x1,%cx # Two passes
80 dec %cx # Do two
111 mov $NSECT,%cx # Sector count
143 mov $COPY_BLK_SZ,%cx # Copy 32k
148 mov %cx,
[all...]
/freebsd-current/sys/contrib/dev/rtw89/
H A Dcoex.c672 struct rtw89_btc_cx *cx = &btc->cx; local
673 struct rtw89_btc_wl_info *wl = &cx->wl;
702 struct rtw89_btc_cx *cx = &btc->cx; local
703 struct rtw89_btc_wl_info *wl = &btc->cx.wl;
704 struct rtw89_btc_bt_info *bt = &btc->cx.bt;
712 memset(cx, 0, sizeof(*cx));
756 struct rtw89_btc_cx *cx local
2243 struct rtw89_btc_cx *cx = &btc->cx; local
3259 struct rtw89_btc_cx *cx = &btc->cx; local
3863 struct rtw89_btc_cx *cx = &btc->cx; local
3915 struct rtw89_btc_cx *cx = &btc->cx; local
4937 struct rtw89_btc_cx *cx = &btc->cx; local
4974 struct rtw89_btc_cx *cx = &btc->cx; local
4996 struct rtw89_btc_cx *cx = &btc->cx; local
5058 struct rtw89_btc_cx *cx = &btc->cx; local
5081 struct rtw89_btc_cx *cx = &btc->cx; local
5420 struct rtw89_btc_cx *cx = &btc->cx; local
5529 struct rtw89_btc_cx *cx = &btc->cx; local
5826 struct rtw89_btc_cx *cx = &btc->cx; local
6297 struct rtw89_btc_cx *cx = &btc->cx; local
6397 struct rtw89_btc_cx *cx = &btc->cx; local
7729 struct rtw89_btc_cx *cx = &btc->cx; local
7833 struct rtw89_btc_cx *cx = &btc->cx; local
7935 struct rtw89_btc_cx *cx = &btc->cx; local
8039 struct rtw89_btc_cx *cx = &btc->cx; local
8151 struct rtw89_btc_cx *cx = &btc->cx; local
8266 struct rtw89_btc_cx *cx = &btc->cx; local
8380 struct rtw89_btc_cx *cx = &btc->cx; local
[all...]
/freebsd-current/contrib/ncurses/menu/
H A Dm_post.c134 int cy = -1, cx = -1; local
141 getyx(menu->win, cy, cx);
159 assert(cx >= 0 && cy >= 0);
175 (void)mvwaddch(menu->win, cy + j, cx - 1, menu->pad);
232 int i, j, cy, cx; local
235 getyx(menu->win, cy, cx);
238 wmove(menu->win, cy + j, cx);
244 wmove(menu->win, cy, cx + menu->spc_cols);
/freebsd-current/lib/msun/amd64/
H A Ds_remquol.S52 movsx %cx,%ecx
/freebsd-current/lib/msun/i387/
H A Ds_remquol.S52 movsx %cx,%ecx
/freebsd-current/stand/i386/boot2/
H A Dboot1.S84 * %cx:%ax - long - LBA to read in
97 push %cx # block
119 xor %cx,%cx # Zero
120 mov %cx,%es # Address
121 mov %cx,%ds # data
122 mov %cx,%ss # Set up
125 * Relocate ourself to MEM_REL. Since %cx == 0, the inc %ch sets
126 * %cx == 0x100. Note that boot1 does not use this relocated copy
148 mov $0x1,%cx # Tw
[all...]
/freebsd-current/stand/i386/pxeldr/
H A Dpxeldr.S90 movw %es, %cx # save PXENV+ segment
108 movw $(MEM_ARG_SIZE/4), %cx # Size of arguments in 32-bit
195 movw $(btx_client_end-btx_client), %cx # length of btx client
203 movw $(MEM_ARG_SIZE/4), %cx # size of the arguments in longs
239 xor %cx,%cx # Clear
240 seta20.1: inc %cx # Increment, overflow?
/freebsd-current/contrib/bionic-x86_64-string/
H A Dsse2-memset-slm.S83 movw %cx, (%rdi)
84 movw %cx, -2(%rdi, %rdx)
H A Davx2-memset-kbl.S82 movw %cx, (%rdi)
83 movw %cx, -2(%rdi, %rdx)
/freebsd-current/sys/dev/fb/
H A Dvga.c444 int cx, int cy);
446 int cx, int cy);
448 int cx, int cy);
450 int cx, int cy);
452 int cx, int cy);
2582 planar_fill_rect(video_adapter_t *adp, int val, int x, int y, int cx, int cy) argument
2606 bx = (x + cx)/8 - x/8;
2630 if ((x + cx) % 8) {
2631 outw(GDCIDX, (~(0xff00 >> ((x + cx) % 8)) & 0xff00) | 0x08);
2651 packed_fill_rect(video_adapter_t *adp, int val, int x, int y, int cx, in argument
2685 direct_fill_rect16(video_adapter_t *adp, int val, int x, int y, int cx, int cy) argument
2723 direct_fill_rect24(video_adapter_t *adp, int val, int x, int y, int cx, int cy) argument
2767 direct_fill_rect32(video_adapter_t *adp, int val, int x, int y, int cx, int cy) argument
2805 vga_fill_rect(video_adapter_t *adp, int val, int x, int y, int cx, int cy) argument
2835 vga_fill_rect(video_adapter_t *adp, int val, int x, int y, int cx, int cy) argument
[all...]
/freebsd-current/contrib/less/
H A Dline.c1546 int cx; local
1547 for (cx = 0; cx < sizeof(color_map)/sizeof(*color_map); cx++)
1548 if (color_map[cx].attr == attr)
1549 return cx;
1573 int cx = color_index(attr); local
1574 if (cx < 0)
1576 if (strlen(colorstr)+1 > sizeof(color_map[cx].color))
1580 strcpy(color_map[cx]
1589 int cx = color_index(attr); local
[all...]

Completed in 323 milliseconds

123