Searched refs:next (Results 151 - 175 of 4047) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/oldXMenu/
H A DXDelAssoc.c34 Entry = bucket->next;
37 for (; Entry != bucket; Entry = Entry->next) {
H A DXLookAssoc.c35 Entry = bucket->next;
38 for (; Entry != bucket; Entry = Entry->next) {
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfclrlock.c51 { f->here -= f->endb-f->next;
52 f->endb = f->next;
H A Dsfsync.c36 reg Sfpool_t *p, *next; local
44 for(p = &_Sfpool; p; p = next)
45 { /* find the next legitimate pool */
46 for(next = p->next; next; next = next->next)
47 if(next
[all...]
H A Dsfreserve.c56 { if((n = f->endb - f->next) > 0 && n == f->val )
57 { data = (Void_t*)f->next;
58 f->next += n;
85 if((n = f->endb - f->next) < 0)
104 if((n = now = f->endb - f->next) < 0)
113 { if((iosz = f->push->endb - f->push->next) == 0)
135 if((n = f->endb - f->next) < sz)
137 { f->endb = f->endr = f->next;
151 if((n = f->endb - f->next) <= 0)
169 data = (Void_t*)f->next;
[all...]
/macosx-10.9.5/man-16/man/man2html/
H A Ddefs.h8 STRDEF *next; member in struct:STRDEF
16 INTDEF *next; member in struct:INTDEF
/macosx-10.9.5/postfix-252/postfix/src/dns/
H A Ddns_rr.c130 rr->next = 0;
139 if (rr->next)
140 dns_rr_free(rr->next);
161 dst->next = 0;
172 list->next = dns_rr_append(list->next, rr);
258 for (len = 0, rr = list; rr != 0; len++, rr = rr->next)
261 for (len = 0, rr = list; rr != 0; len++, rr = rr->next)
273 rr_array[i]->next = rr_array[i + 1];
274 rr_array[i]->next
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Ddtrace_ptss.h78 struct dtrace_ptss_page_entry* next; member in struct:dtrace_ptss_page_entry
83 struct dtrace_ptss_page* next; member in struct:dtrace_ptss_page
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOKitDebug.cpp70 IORegistryEntry * next; local
86 while( (next = iter->getNextObjectRecursive())) {
87 snprintf(format + 1, sizeof(format) - 1, "%ds", 2 * next->getDepth( plane ));
89 DEBG( "\033[33m%s", next->getName( plane ));
90 if( (next->getLocation( plane )))
91 DEBG("@%s", next->getLocation( plane ));
92 DEBG("\033[0m <class %s", next->getMetaClass()->getClassName());
93 if( (service = OSDynamicCast(IOService, next)))
/macosx-10.9.5/zsh-60/zsh/Src/Builtins/
H A Dsched.c44 struct schedcmd *next; member in struct:schedcmd
113 schedcmds = sch->next;
171 sch && sn; sch = (schl = sch)->next, sn--);
177 schl->next = sch->next;
180 schedcmds = sch->next;
207 for (sn = 1, sch = schedcmds; sch; sch = sch->next, sn++) {
316 sch->next = schedcmds;
322 sch2->next && sch2->next
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dfilter.c290 char *next; local
305 if ( (next = find_right_paren( str )) == NULL ) {
309 *next = '\0';
315 *next++ = ')';
322 return next;
331 char *next; local
436 next = str;
438 while ( *next && balance ) {
440 if ( *next == '(' ) {
442 } else if ( *next
520 char *next = NULL; local
781 char *next; local
956 char *next = NULL; local
[all...]
/macosx-10.9.5/ntp-88/libntp/
H A Dauthkeys.c22 struct savekey *next; member in struct:savekey
101 sk = sk->next;
125 sk = sk->next;
160 sk = sk->next;
203 sk->next = authfreekeys;
231 sk = sk->next;
265 key_hash[KEYHASH(keyno)] = sk->next;
267 while (skp->next != sk)
268 skp = skp->next;
269 skp->next
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DTinyPtrVectorTest.cpp75 EXPECT_EQ(Values[i], *llvm::next(V.begin(), i));
77 EXPECT_EQ(V.end(), llvm::next(V.begin(), Values.size()));
337 this->V.erase(llvm::next(this->V.begin(), 1));
338 this->TestPtrs.erase(llvm::next(this->TestPtrs.begin(), 1));
340 this->V.erase(llvm::next(this->V.begin(), 2));
341 this->TestPtrs.erase(llvm::next(this->TestPtrs.begin(), 2));
343 this->V.erase(llvm::next(this->V.begin(), 5));
344 this->TestPtrs.erase(llvm::next(this->TestPtrs.begin(), 5));
346 this->V.erase(llvm::next(this->V.begin(), 13));
347 this->TestPtrs.erase(llvm::next(thi
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dgmalloc.c186 __malloc_size_t next; /* Index of next free cluster. */ member in struct:__anon8691::__anon8695
210 struct list *next; member in struct:list
220 struct alignlist *next; member in struct:alignlist
587 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0;
741 struct list *next; local
778 next = _fraghead[log].next;
779 if (next != NULL)
784 result = (__ptr_t) next;
1035 struct list *prev, *next; local
[all...]
H A Dundo.c328 Lisp_Object prev, next, last_boundary;
344 next = list;
348 if (CONSP (next) && NILP (XCAR (next)))
353 /* Advance to next element. */
354 prev = next;
355 next = XCDR (next);
364 while (CONSP (next) && ! NILP (XCAR (next)))
327 Lisp_Object prev, next, last_boundary; local
463 Lisp_Object next; variable
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/mod_db4/
H A Dmm_hash.c31 MM_Bucket *next; local
37 next = cur->next;
43 cur = next;
64 for (b = table->buckets[ hash ]; b; b = b->next) {
82 for(b = table->buckets[ hash ]; b; b = b->next) {
97 b->next = table->buckets[ hash ];
110 for (b = table->buckets[ hash ]; b; b = b->next) {
118 prev->next = b->next;
[all...]
/macosx-10.9.5/Heimdal-323.92.1/base/
H A Ddict.c40 struct hashentry *next; member in struct:hashentry
58 i = g->next;
154 for (p = dict->tab[v % dict->size]; p != NULL; p = p->next)
213 h->next = *tabptr;
216 if (h->next)
217 h->next->prev = &h->next;
241 if ((*(h->prev) = h->next) != NULL)
242 h->next->prev = h->prev;
261 for (g = *h; g; g = g->next)
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/unix/
H A Dfilepath.c191 const char *next = addpath; local
192 while (*next && (*next != '/')) {
193 ++next;
195 seglen = next - addpath;
231 memcpy(path + pathlen, "../", *next ? 3 : 2);
232 pathlen += *next ? 3 : 2;
255 if (*next) {
262 /* Skip over trailing slash to the next segment
264 if (*next) {
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/unix/
H A Dfilepath.c191 const char *next = addpath; local
192 while (*next && (*next != '/')) {
193 ++next;
195 seglen = next - addpath;
231 memcpy(path + pathlen, "../", *next ? 3 : 2);
232 pathlen += *next ? 3 : 2;
255 if (*next) {
262 /* Skip over trailing slash to the next segment
264 if (*next) {
[all...]
/macosx-10.9.5/libresolv-54/
H A Dres_update.h31 #define LINK(type) struct { type *prev, *next; }
37 #define NEXT(elt, link) ((elt)->link.next)
41 (elt)->link.next = (type *)(-1); \
47 (list).tail->link.next = (elt); \
51 (elt)->link.next = NULL; \
61 (elt)->link.next = (list).head; \
66 if ((elt)->link.next != NULL) \
67 (elt)->link.next->link.prev = (elt)->link.prev; \
71 (elt)->link.prev->link.next = (elt)->link.next; \
[all...]
/macosx-10.9.5/rsync-42/rsync/
H A Dchmod.c31 struct chmod_mode_struct *next; member in struct:chmod_mode_struct
66 prev_mode->next = curr_mode;
69 curr_mode->next = NULL;
184 while (curr_mode->next)
185 curr_mode = curr_mode->next;
186 curr_mode->next = first_mode;
200 for ( ; chmod_modes; chmod_modes = chmod_modes->next) {
218 struct chmod_mode_struct *next; local
221 next = chmod_modes->next;
[all...]
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dsyck_st.c33 st_table_entry *next; member in struct:st_table_entry
213 register st_table_entry *ptr, *next; local
219 next = ptr->next;
221 ptr = next;
242 while (PTR_NOT_EQUAL(table, ptr->next, hash_val, key)) {\
243 ptr = ptr->next;\
245 ptr = ptr->next;\
283 entry->next = table->bins[bin_pos];\
327 register st_table_entry *ptr, *next, **new_bin local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/dsaschema/
H A Ddsaschema.c321 static char *next; local
325 next = line;
327 while ( *next && strchr( sep, *next ) ) {
328 next++;
331 if ( *next == '\0' ) {
332 next = NULL;
335 tmp = next;
337 for ( inquote = 0; *next; ) {
338 switch ( *next ) {
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dldapsync.c262 char *next, *end; local
279 for ( next=cookie->octet_str.bv_val; next < end; ) {
280 if ( !strncmp( next, "rid=", STRLENOF("rid=") )) {
281 char *rid_ptr = next;
282 cookie->rid = strtol( &rid_ptr[ STRLENOF( "rid=" ) ], &next, 10 );
283 if ( next == rid_ptr ||
284 next > end ||
285 ( *next && *next !
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/excxx_repquote/
H A DRepConfigInfo.h15 RepHostInfoObj* next; // used for chaining multiple "other" hosts. member in struct:RepHostInfoObj

Completed in 433 milliseconds

1234567891011>>