Searched refs:tib (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/sys/kern/
H A Dtty_inq.c72 #define GETBIT(tib,boff) \
73 ((tib)->tib_quotes[(boff) / BMSIZE] & (1 << ((boff) % BMSIZE)))
74 #define SETBIT(tib,boff) \
75 ((tib)->tib_quotes[(boff) / BMSIZE] |= (1 << ((boff) % BMSIZE)))
76 #define CLRBIT(tib,boff) \
77 ((tib)->tib_quotes[(boff) / BMSIZE] &= ~(1 << ((boff) % BMSIZE)))
88 #define TTYINQ_INSERT_TAIL(ti, tib) do { \
90 tib->tib_prev = NULL; \
91 tib->tib_next = ti->ti_firstblock; \
92 ti->ti_firstblock = tib; \
120 struct ttyinq_block *tib; local
152 struct ttyinq_block *tib; local
174 struct ttyinq_block *tib; local
265 ttyinq_set_quotes(struct ttyinq_block *tib, size_t offset, size_t length, int value) argument
284 struct ttyinq_block *tib; local
355 struct ttyinq_block *tib = ti->ti_firstblock; local
380 struct ttyinq_block *tib; local
398 struct ttyinq_block *tib = ti->ti_lastblock; local
446 ttyinq_line_iterate(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data, unsigned int offset, struct ttyinq_block *tib) argument
[all...]
/freebsd-13-stable/stand/ficl/
H A Dvm.c306 ** Skip leading whitespace and parse a space delimited word from the tib.
307 ** Returns the start address and length of the word. Updates the tib
309 ** If there's nothing of interest in the tib, returns zero. This function
476 *pSaveTib = pVM->tib;
479 pVM->tib.cp = text;
480 pVM->tib.end = text + nChars;
481 pVM->tib.index = 0;
489 pVM->tib = *pTib;
506 pVM->tib.cp = NULL;
507 pVM->tib
[all...]
H A Dficl.h493 TIB tib; /* address of incoming text string */ member in struct:vm
640 #define vmGetInBuf(pVM) ((pVM)->tib.cp + (pVM)->tib.index)
641 #define vmGetInBufLen(pVM) ((pVM)->tib.end - (pVM)->tib.cp)
642 #define vmGetInBufEnd(pVM) ((pVM)->tib.end)
643 #define vmGetTibIndex(pVM) (pVM)->tib.index
644 #define vmSetTibIndex(pVM, i) (pVM)->tib.index = i
645 #define vmUpdateTib(pVM, str) (pVM)->tib.index = (str) - (pVM)->tib
[all...]
H A Dprefix.c104 vmSetTibIndex(pVM, si.cp + n - pVM->tib.cp );
H A Dtools.c574 char *cp = pVM->tib.cp + pVM->tib.index;
575 int count = pVM->tib.end - cp;
H A Dwords.c4016 PUSHPTR(pVM->tib.cp);
4042 PUSHPTR(&pVM->tib.index);
5007 /* "#tib" */
5022 /* query restore-input save-input tib u.r u> unused [compile] */
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win.cpp388 NT_TIB *tib = (NT_TIB *)NtCurrentTeb(); local
389 uptr stackSize = (uptr)tib->StackBase - (uptr)tib->StackLimit;
390 __asan_unpoison_memory_region(tib->StackLimit, stackSize);
/freebsd-13-stable/stand/common/
H A Dinterp_forth.c120 for (cp = tail, len = 0; cp != vm->tib.end && *cp != 0 && *cp != '\n'; cp++, len++)
233 ">in @ " /* save the tib index pointer */ \

Completed in 94 milliseconds