Searched refs:_next (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dsfio_s.h32 #define _next next macro
36 { unsigned char* _next; /* next position to read/write from */ member in struct:_sfio_s
H A Dstk.h46 #define stktop(sp) ((char*)(sp)->_next)
47 #define stktell(sp) ((sp)->_next-(sp)->_data)
48 #define stkseek(sp,n) ((n)==0?(char*)((sp)->_next=(sp)->_data):_stkseek(sp,n))
H A Dsfio.h347 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \
349 (int)(*_SF_(f)->_next++ = (unsigned char)(c)) )
350 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \
351 (int)(*_SF_(f)->_next++) )
425 (char*)((f)->_next = (f)->_data+(p)) ) \
427 ((f)->_next += (p), \
428 (((f)->_next < (f)->_data || (f)->_next > (f)->_data+(f)->_size) ? \
429 ((f)->_next -= (p), (char*)0) : (char*)(f)->_next ) ) \
[all...]
H A Dstak.h44 #define stakputs(s) (sfputr(stkstd,(s),0),--stkstd->_next)
/macosx-10.10/libauto-186/
H A DRangeIterator.h71 T *_next = (T *)address(); local
73 set_address((void *)(_next + 1));
75 return _next;
H A DLarge.h57 Large *_next; // next large block or NULL if tail of list member in class:Auto::Large
160 inline Large *next() const { return _next; }
164 inline void set_next(Large *next) { _next = next; }
230 _next = large_list;
241 if (large_list == this) large_list = _next;
242 if (_prev) _prev->set_next(_next);
243 if (_next) _next->set_prev(_prev);
244 _prev = _next = NULL;
H A DRegion.h51 Region *_next; // next region in the list. member in class:Auto::Region
120 inline void set_next(Region *next) { _next = next; }
121 inline Region *next() const { return _next; }
H A DThread.h206 Thread *_next; // next thread in linked list member in class:Auto::Thread
298 inline Thread *next() { return _next; }
302 inline void set_next(Thread *next) { _next = next; }
490 for (Thread *t = *link; t; link = &t->_next, t = *link) {
494 *link = t->_next;
512 *active_link = thread->_next;
514 thread->_next = *inactive_link;
517 active_link = &thread->_next;
H A DFreeList.h47 FreeListNode *_next; // next node or NULL for tail member in class:Auto::FreeListNode
54 // _prev/_next pointers are bitwise complemented to make them look less like valid data.
80 FreeListNode *next() const { return flip(_next); }
84 void set_next(FreeListNode *next) { _next = flip(next); }
H A DLarge.cpp51 : _prev(NULL), _next(NULL), _zone(zone), _vm_size(vm_size), _size(size), _layout(layout), _refcount(refcount), _age(age),
H A DRegion.cpp97 _next = NULL;
H A DDefinitions.h879 PointerChunk *_next; member in struct:Auto::PointerChunk
885 PointerChunk *next() { return _next; }
914 _current = _current->_next;
921 _tail->_next = _current;
936 PointerChunk *next = chunk->_next;
962 chunk = chunk->_next;
H A DZone.cpp73 ResourceTracker *_next; member in class:Auto::ResourceTracker
77 ResourceTracker(const char *description, boolean_t (^test)(void), ResourceTracker *next) : _should_collect(Block_copy(test)), _next(next), _prev(NULL) {
79 if (_next)
80 _next->_prev = this;
95 if (_next)
96 _next->_prev = _prev;
98 _prev->_next = _next;
1841 tracker = tracker->_next;
1844 _resource_tracker_list = tracker->_next;
[all...]
H A DThread.cpp50 : _next(NULL), _zone(zone), _pthread(NULL), _thread(MACH_PORT_NULL), _stack_base(NULL),
/macosx-10.10/ksh-23/ksh/src/lib/libast/disc/
H A Dsfstrtmp.c56 f->_next = f->_data = (unsigned char*)buf;
/macosx-10.10/xnu-2782.1.97/osfmk/ipc/
H A Dipc_kmsg.h214 register ipc_kmsg_t _next; \
218 _next = (kmsg)->ikm_next; \
219 if (_next == (kmsg)) { \
225 (queue)->ikmq_base = _next; \
226 _next->ikm_prev = _prev; \
227 _prev->ikm_next = _next; \
/macosx-10.10/ksh-23/ksh/src/lib/libast/misc/
H A Dstk.c178 stream->_data = stream->_next = 0;
367 stream->_next = (unsigned char*)loc+offset;
385 stream->_data = stream->_next = (unsigned char*)cp;
403 stream->_data = stream->_next = old+n;
417 stream->_next = stream->_data+n;
431 top = stream->_next;
434 if(extra > (stream->_endb-stream->_next))
443 stream->_next = stream->_data += roundof(top-old,STK_ALIGN);
479 stream->_data = stream->_next = cp+n;
559 return((char*)(stream->_next
[all...]
/macosx-10.10/postfix-255/postfix/src/qmgr/
H A Dqmgr.h60 type _next = object->peers.next; \
62 if (_prev) _prev->peers.next = _next; \
63 else head.next = _next; \
64 if (_next) _next->peers.prev = _prev; \
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dstore.h32 c4_Notifier *_next; member in class:c4_Notifier
H A Dstore.cpp65 c4_Notifier *next = _chain->_next;
66 _chain->_next = 0;
76 d4_assert(!_next);
140 rover = &ptr->_next;
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dcombobox.itk110 protected method _next {}
888 # PROTECTED METHOD: _next
893 itcl::body iwidgets::Combobox::_next {} {
1155 bind $itk_component(entry) <Down> [itcl::code $this _next]
1157 bind $itk_component(entry) <Control-n> [itcl::code $this _next]
1159 bind [_slbListbox] <Control-n> [itcl::code $this _next]
1188 bind $itk_component(arrowBtn) <3> [itcl::code $this _next]
1190 bind $itk_component(arrowBtn) <Down> [itcl::code $this _next]
1192 bind $itk_component(arrowBtn) <Control-n> [itcl::code $this _next]
H A Doptionmenu.itk95 method _next {}
202 bind $itk_component(menuBtn) <3> [itcl::code $this _next]
204 bind $itk_component(menuBtn) <KeyPress-Down> [itcl::code $this _next]
482 # PRIVATE METHOD: _next
487 itcl::body iwidgets::Optionmenu::_next {} {
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dbfd-in2.h1549 asection *_next = _s->next; \
1552 _prev->next = _next; \
1554 (ABFD)->sections = _next; \
1555 if (_next) \
1556 _next->prev = _prev; \
1604 asection *_next = _a->next; \
1605 _s->next = _next; \
1608 if (_next) \
1609 _next->prev = _s; \
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Ducurr.cpp145 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); local
146 if (_next == NULL) {
150 if (*_next == *_start) {
153 _current = _next;
154 return _next;
/macosx-10.10/vim-55/runtime/syntax/
H A Dmupad.vim111 syn keyword mupadFunction newDomain _next nextprime nops

Completed in 218 milliseconds

12