/freebsd/lib/libkiconv/ |
H A D | xlat16_iconv.c | 81 struct xlat16_table xt; in kiconv_add_xlat16_cspair() local 101 xt = kiconv_xlat16_open(fromcode, fromcode, flag); in kiconv_add_xlat16_cspair() 103 xt = kiconv_xlat16_open(tocode, fromcode, flag); in kiconv_add_xlat16_cspair() 104 if (xt.size == 0) in kiconv_add_xlat16_cspair() 107 idxsize = sizeof(xt.idx); in kiconv_add_xlat16_cspair() 109 if ((idxsize + xt.size) > ICONV_CSMAXDATALEN) { in kiconv_add_xlat16_cspair() 114 if ((data = malloc(idxsize + xt.size)) != NULL) { in kiconv_add_xlat16_cspair() 116 memcpy(p, xt.idx, idxsize); in kiconv_add_xlat16_cspair() 118 memcpy(p, xt.data, xt.size); in kiconv_add_xlat16_cspair() 120 (int)(idxsize + xt.size)); in kiconv_add_xlat16_cspair() [all …]
|
/freebsd/usr.sbin/pstat/ |
H A D | pstat.c | 226 struct xtty xt; in ttymode_kvm() local 229 bzero(&xt, sizeof xt); in ttymode_kvm() 230 xt.xt_size = sizeof xt; in ttymode_kvm() 237 xt.xt_insize = tty.t_inq.ti_nblocks * TTYINQ_DATASIZE; in ttymode_kvm() 238 xt.xt_incc = tty.t_inq.ti_linestart - tty.t_inq.ti_begin; in ttymode_kvm() 239 xt.xt_inlc = tty.t_inq.ti_end - tty.t_inq.ti_linestart; in ttymode_kvm() 240 xt.xt_inlow = tty.t_inlow; in ttymode_kvm() 241 xt in ttymode_kvm() 327 ttyprt(struct xtty * xt) ttyprt() argument [all...] |
/freebsd/contrib/bearssl/T0/ |
H A D | OpcodeConst.cs | 44 TPointerXT xt = val.ptr as TPointerXT; in GetReference() 45 if (xt == null) { in GetReference() 48 xt.Resolve(ctx); in GetReference() 49 return xt.Target; in GetReference() 63 TPointerXT xt = val.ptr as TPointerXT; in ToCodeElement() 64 if (xt != null) { in ToCodeElement() 69 return new CodeElementUIntInt(1, xt.Target.Slot); in ToCodeElement()
|
H A D | WordBuilder.cs | 285 internal void Call(TPointerXT xt) in Call() argument 287 if (xt.Target == null) { in Call() 288 Add(new OpcodeCall(), xt.Name); in Call() 290 Add(new OpcodeCall(xt.Target)); in Call()
|
H A D | TValue.cs | 127 TPointerXT xt = ptr as TPointerXT; in ToXT() 128 if (xt == null) { in ToXT() 132 return xt; in ToXT()
|
/freebsd/sys/dev/bhnd/cores/pmu/ |
H A D | bhnd_pmu_subr.c | 1453 const pmu1_xtaltab0_t *xt; in bhnd_pmu1_alpclk0() local 1460 for (xt = bhnd_pmu1_xtaltab0(sc); xt != NULL && xt->fref != 0; xt++) { in bhnd_pmu1_alpclk0() 1461 if (xt->xf == xf) in bhnd_pmu1_alpclk0() 1466 if (xt == NULL || xt->fref == 0) in bhnd_pmu1_alpclk0() 1467 xt = bhnd_pmu1_xtaldef0(sc); in bhnd_pmu1_alpclk0() 1469 if (xt == NULL || xt->fref == 0) { in bhnd_pmu1_alpclk0() 1474 return (xt->fref * 1000); in bhnd_pmu1_alpclk0() 1481 const pmu0_xtaltab0_t *xt; in bhnd_pmu0_pllinit0() local 1495 for (xt = pmu0_xtaltab0; xt->freq; xt ++) { in bhnd_pmu0_pllinit0() 1496 if (xt->freq == xtal) in bhnd_pmu0_pllinit0() [all …]
|
/freebsd/stand/ficl/ |
H A D | tools.c | 383 FICL_WORD *xt = stackPopPtr(pVM->pStack); in ficlDebugXT() local 384 WORDKIND wk = ficlWordClassify(xt); in ficlDebugXT() 386 stackPushPtr(pVM->pStack, xt); in ficlDebugXT() 396 vmExecute(pVM, xt); in ficlDebugXT() 401 vmExecute(pVM, xt); in ficlDebugXT() 545 FICL_WORD *xt; in stepBreak() local 546 xt = findEnclosingWord(pVM, (CELL *)(pVM->ip)); in stepBreak() 547 if (xt) in stepBreak() 549 stackPushPtr(pVM->pStack, xt); in stepBreak()
|
/freebsd/stand/ficl/softwords/ |
H A D | oo.fr | 67 \ - xt 73 \ ; is overridden to fill in xt returned by :noname 75 \ => looks up xt in the vtable and compiles it directly 99 : (lookup-method) { class 2:name -- class 0 | class xt 1 | class xt -1 } 108 \ and pushes the xt of the method. If not, it aborts with an error message. 110 : lookup-method { class 2:name -- class xt } 111 class name (lookup-method) ( 0 | xt 1 | xt -1 ) 119 : find-method-xt \ name ( class -- class xt ) 137 find-method-xt execute 146 find-method-xt catch [all …]
|
H A D | marker.fr | 15 here - allot \ reset HERE to my xt-addr
|
H A D | softcore.fr | 198 : debug ' debug-xt ; immediate
|
/freebsd/sys/kern/ |
H A D | tty.c | 1289 tty_to_xtty(struct tty *tp, struct xtty *xt) in tty_to_xtty() argument 1294 memset(xt, 0, sizeof(*xt)); in tty_to_xtty() 1295 xt->xt_size = sizeof(struct xtty); in tty_to_xtty() 1296 xt->xt_insize = ttyinq_getsize(&tp->t_inq); in tty_to_xtty() 1297 xt->xt_incc = ttyinq_bytescanonicalized(&tp->t_inq); in tty_to_xtty() 1298 xt->xt_inlc = ttyinq_bytesline(&tp->t_inq); in tty_to_xtty() 1299 xt->xt_inlow = tp->t_inlow; in tty_to_xtty() 1300 xt->xt_outsize = ttyoutq_getsize(&tp->t_outq); in tty_to_xtty() 1301 xt->xt_outcc = ttyoutq_bytesused(&tp->t_outq); in tty_to_xtty() 1302 xt->xt_outlow = tp->t_outlow; in tty_to_xtty() [all …]
|
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/ |
H A D | sdp_main.c | 1795 struct xtcpcb xt; in sdp_pcblist() local 1814 bzero(&xt, sizeof(xt)); in sdp_pcblist() 1815 xt.xt_len = sizeof xt; in sdp_pcblist() 1816 xt.xt_inp.inp_gencnt = 0; in sdp_pcblist() 1817 xt.xt_inp.inp_vflag = INP_IPV4; in sdp_pcblist() 1818 memcpy(&xt.xt_inp.inp_laddr, &ssk->laddr, sizeof(ssk->laddr)); in sdp_pcblist() 1819 xt.xt_inp.inp_lport = ssk->lport; in sdp_pcblist() 1820 memcpy(&xt.xt_inp.inp_faddr, &ssk->faddr, sizeof(ssk->faddr)); in sdp_pcblist() 1821 xt.xt_inp.inp_fport = ssk->fport; in sdp_pcblist() 1822 xt.t_state = ssk->state; in sdp_pcblist() [all …]
|
/freebsd/sys/netinet/ |
H A D | tcp_subr.c | 2656 struct xtcpcb xt; in tcp_pcblist() local 2658 tcp_inptoxtp(inp, &xt); in tcp_pcblist() 2659 error = SYSCTL_OUT(req, &xt, sizeof xt); in tcp_pcblist() 3970 tcp_inptoxtp(const struct inpcb *inp, struct xtcpcb *xt) in tcp_inptoxtp() argument 3975 bzero(xt, sizeof(*xt)); in tcp_inptoxtp() 3976 xt->t_state = tp->t_state; in tcp_inptoxtp() 3977 xt->t_logstate = tcp_get_bblog_state(tp); in tcp_inptoxtp() 3978 xt->t_flags = tp->t_flags; in tcp_inptoxtp() 3979 xt->t_sndzerowin = tp->t_sndzerowin; in tcp_inptoxtp() 3980 xt->t_sndrexmitpack = tp->t_sndrexmitpack; in tcp_inptoxtp() [all …]
|
H A D | tcp_syncache.c | 2521 struct xtcpcb xt; in syncache_pcblist() local 2526 bzero(&xt, sizeof(xt)); in syncache_pcblist() 2527 xt.xt_len = sizeof(xt); in syncache_pcblist() 2528 xt.t_state = TCPS_SYN_RECEIVED; in syncache_pcblist() 2529 xt.xt_inp.xi_socket.xso_protocol = IPPROTO_TCP; in syncache_pcblist() 2530 xt.xt_inp.xi_socket.xso_len = sizeof (struct xsocket); in syncache_pcblist() 2531 xt.xt_inp.xi_socket.so_type = SOCK_STREAM; in syncache_pcblist() 2532 xt.xt_inp.xi_socket.so_state = SS_ISCONNECTING; in syncache_pcblist() 2542 xt.xt_inp.inp_vflag = INP_IPV6; in syncache_pcblist() 2544 xt.xt_inp.inp_vflag = INP_IPV4; in syncache_pcblist() [all …]
|
H A D | in_fib_dxr.c | 297 struct direct_entry *xt = dxr->x; \ 299 de = xt[(dt[dst >> (32 - (D))] << (DXR_TRIE_BITS - (D))) \ 333 struct direct_entry *xt = dxr->x; 335 de = xt[(dt[dst >> dxr->d_shift] << dxr->x_shift) + in dxr_lookup() 339 struct direct_entry *xt = dxr->x; dxr_lookup() local
|
/freebsd/stand/forth/ |
H A D | brand.4th | 53 s" brand" sfind ( -- xt|0 bool ) if 57 drop ( xt = 0 ) \ cruft
|
H A D | beastie.4th | 58 s" logo" sfind ( -- xt|0 bool ) if 62 drop ( xt = 0 ) \ cruft
|
H A D | menu.rc | 185 s" reloadbe" sfind ( xt|0 bool ) [if] 195 drop ( xt=0 )
|
H A D | loader.4th | 284 ['] include ( -- xt ) \ get the execution token of `include' 285 catch ( xt -- exception# | 0 ) if \ failed
|
H A D | support.4th | 222 \ execute xt for each device listed in console variable. 224 : console-iterate { xt | caddr clen taddr tlen -- } 244 xt execute 255 xt execute
|
/freebsd/contrib/bearssl/src/ |
H A D | inner.h | 2381 #define lxvw4x(xt, ra, rb) lxvw4x_(xt, ra, rb) argument 2382 #define stxvw4x(xt, ra, rb) stxvw4x_(xt, ra, rb) argument 2417 #define lxvw4x_(xt, ra, rb) "\tlxvw4x\t" #xt "," #ra "," #rb "\n" argument 2418 #define stxvw4x_(xt, ra, rb) "\tstxvw4x\t" #xt "," #ra "," #rb "\n" argument
|
/freebsd/contrib/expat/xmlwf/ |
H A D | xmlwf.c | 356 xcscmp(const XML_Char *xs, const XML_Char *xt) { in xcscmp() argument 357 while (*xs != 0 && *xt != 0) { in xcscmp() 358 if (*xs < *xt) in xcscmp() 360 if (*xs > *xt) in xcscmp() 363 xt++; in xcscmp() 365 if (*xs < *xt) in xcscmp() 367 if (*xs > *xt) in xcscmp()
|
/freebsd/contrib/tcsh/ |
H A D | sh.parse.c | 685 syntax_cleanup(void *xt) in syntax_cleanup() argument 689 t = xt; in syntax_cleanup()
|
/freebsd/sys/powerpc/powerpc/ |
H A D | trap.c | 954 #define XVCPSGNDP(xt, xa, xb) \ 957 MSKNSHL(xt, 0x1f, 21) " | " \ 951 XVCPSGNDP(xt,xa,xb) global() argument
|
/freebsd/contrib/dialog/ |
H A D | configure | 20858 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then 20859 test -n "$verbose" && echo " found package xt" 1>&6 20861 echo "${as_me:-configure}:20861: testing found package xt ..." 1>&5 20865 test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 20867 echo "${as_me:-configure}:20867: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 20869 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 20871 echo "${as_me:-configure}:20871: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 21001 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then 21002 test -n "$verbose" && echo " found package xt" 1>&6 21004 echo "${as_me:-configure}:21004: testing found package xt ..." 1>&5 [all …]
|