| /freebsd-14.2/lib/libkiconv/ |
| H A D | xlat16_iconv.c | 104 if (xt.size == 0) in kiconv_add_xlat16_cspair() 118 memcpy(p, xt.data, xt.size); in kiconv_add_xlat16_cspair() 164 xt.data = NULL; in kiconv_xlat16_open() 165 xt.size = 0; in kiconv_xlat16_open() 172 return (xt); in kiconv_xlat16_open() 177 return (xt); in kiconv_xlat16_open() 180 return (xt); in kiconv_xlat16_open() 182 p = xt.data; in kiconv_xlat16_open() 297 xt.size = p - (char *)xt.data; in kiconv_xlat16_open() 298 xt.data = realloc(xt.data, xt.size); in kiconv_xlat16_open() [all …]
|
| /freebsd-14.2/usr.sbin/pstat/ |
| H A D | pstat.c | 238 struct xtty xt; in ttymode_kvm() local 241 bzero(&xt, sizeof xt); in ttymode_kvm() 242 xt.xt_size = sizeof xt; in ttymode_kvm() 252 xt.xt_inlow = tty.t_inlow; in ttymode_kvm() 261 ttyprt(&xt); in ttymode_kvm() 339 ttyprt(struct xtty *xt) in ttyprt() argument 344 if (xt->xt_size != sizeof *xt) in ttyprt() 352 xt->xt_insize, xt->xt_incc, xt->xt_inlc, in ttyprt() 353 (xt->xt_insize - xt->xt_inlow), xt->xt_outsize, in ttyprt() 354 xt->xt_outcc, (xt->xt_outsize - xt->xt_outlow), in ttyprt() [all …]
|
| /freebsd-14.2/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 | TValue.cs | 127 TPointerXT xt = ptr as TPointerXT; in ToXT() 128 if (xt == null) { in ToXT() 132 return xt; in ToXT()
|
| 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()
|
| /freebsd-14.2/sys/dev/bhnd/cores/pmu/ |
| H A D | bhnd_pmu_subr.c | 1461 for (xt = bhnd_pmu1_xtaltab0(sc); xt != NULL && xt->fref != 0; xt++) { in bhnd_pmu1_alpclk0() 1467 if (xt == NULL || xt->fref == 0) in bhnd_pmu1_alpclk0() 1470 if (xt == NULL || xt->fref == 0) { in bhnd_pmu1_alpclk0() 1496 for (xt = pmu0_xtaltab0; xt->freq; xt ++) { in bhnd_pmu0_pllinit0() 1527 xt->freq / 1000, xt->freq % 1000, in bhnd_pmu0_pllinit0() 1532 xt->freq / 1000, xt->freq % 1000); in bhnd_pmu0_pllinit0() 1608 for (xt = pmu0_xtaltab0; xt->freq; xt++) in bhnd_pmu0_alpclk0() 1613 if (xt == NULL || xt->freq == 0) in bhnd_pmu0_alpclk0() 1690 for (xt = bhnd_pmu1_xtaltab0(&sc->query); xt != NULL && xt->fref != 0; in bhnd_pmu1_pllinit0() 1700 if (xt == NULL || xt->fref == 0) { in bhnd_pmu1_pllinit0() [all …]
|
| /freebsd-14.2/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-14.2/stand/ficl/softwords/ |
| H A D | oo.fr | 67 \ - xt 99 : (lookup-method) { class 2:name -- class 0 | class xt 1 | class xt -1 } 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 176 drop find-method-xt compile, drop 523 drop find-method-xt nip >body @ ; 557 find-method-xt debug-xt ; [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-14.2/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() 1299 xt->xt_inlow = tp->t_inlow; in tty_to_xtty() 1302 xt->xt_outlow = tp->t_outlow; in tty_to_xtty() 1303 xt->xt_column = tp->t_column; in tty_to_xtty() 1306 xt->xt_flags = tp->t_flags; in tty_to_xtty() 1315 struct xtty *xtlist, *xt; in sysctl_kern_ttys() local 1341 tty_to_xtty(tp, xt); in sysctl_kern_ttys() [all …]
|
| /freebsd-14.2/sys/ofed/drivers/infiniband/ulp/sdp/ |
| H A D | sdp_main.c | 1790 struct xtcpcb xt; in sdp_pcblist() local 1809 bzero(&xt, sizeof(xt)); in sdp_pcblist() 1810 xt.xt_len = sizeof xt; in sdp_pcblist() 1811 xt.xt_inp.inp_gencnt = 0; in sdp_pcblist() 1812 xt.xt_inp.inp_vflag = INP_IPV4; in sdp_pcblist() 1814 xt.xt_inp.inp_lport = ssk->lport; in sdp_pcblist() 1816 xt.xt_inp.inp_fport = ssk->fport; in sdp_pcblist() 1817 xt.t_state = ssk->state; in sdp_pcblist() 1819 sotoxsocket(ssk->socket, &xt.xt_inp.xi_socket); in sdp_pcblist() 1820 xt.xt_inp.xi_socket.xso_protocol = IPPROTO_TCP; in sdp_pcblist() [all …]
|
| /freebsd-14.2/sys/netinet/ |
| H A D | tcp_subr.c | 2709 struct xtcpcb xt; in tcp_pcblist() local 2711 tcp_inptoxtp(inp, &xt); in tcp_pcblist() 2712 error = SYSCTL_OUT(req, &xt, sizeof xt); in tcp_pcblist() 4001 bzero(xt, sizeof(*xt)); in tcp_inptoxtp() 4002 xt->t_state = tp->t_state; in tcp_inptoxtp() 4004 xt->t_flags = tp->t_flags; in tcp_inptoxtp() 4008 xt->t_rcv_wnd = tp->rcv_wnd; in tcp_inptoxtp() 4009 xt->t_snd_wnd = tp->snd_wnd; in tcp_inptoxtp() 4010 xt->t_snd_cwnd = tp->snd_cwnd; in tcp_inptoxtp() 4015 xt->t_maxseg = tp->t_maxseg; in tcp_inptoxtp() [all …]
|
| H A D | tcp_syncache.c | 2531 struct xtcpcb xt; in syncache_pcblist() local 2536 bzero(&xt, sizeof(xt)); in syncache_pcblist() 2537 xt.xt_len = sizeof(xt); in syncache_pcblist() 2538 xt.t_state = TCPS_SYN_RECEIVED; in syncache_pcblist() 2539 xt.xt_inp.xi_socket.xso_protocol = IPPROTO_TCP; in syncache_pcblist() 2541 xt.xt_inp.xi_socket.so_type = SOCK_STREAM; in syncache_pcblist() 2552 xt.xt_inp.inp_vflag = INP_IPV6; in syncache_pcblist() 2554 xt.xt_inp.inp_vflag = INP_IPV4; in syncache_pcblist() 2555 xt.xt_encaps_port = sc->sc_port; in syncache_pcblist() 2556 bcopy(&sc->sc_inc, &xt.xt_inp.inp_inc, 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; in dxr_lookup() local 335 de = xt[(dt[dst >> dxr->d_shift] << dxr->x_shift) + in dxr_lookup()
|
| /freebsd-14.2/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-14.2/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-14.2/sys/contrib/device-tree/Bindings/watchdog/ |
| H A D | sunplus,sp7021-wdt.yaml | 11 - XianTao Hu <xt[email protected]>
|
| /freebsd-14.2/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-14.2/contrib/tcsh/ |
| H A D | sh.parse.c | 685 syntax_cleanup(void *xt) in syntax_cleanup() argument 689 t = xt; in syntax_cleanup()
|
| /freebsd-14.2/sys/powerpc/powerpc/ |
| H A D | trap.c | 952 #define XVCPSGNDP(xt, xa, xb) \ argument 955 MSKNSHL(xt, 0x1f, 21) " | " \
|