HomeSort by relevance Sort by last modified time
    Searched refs:nxt (Results 1 - 25 of 32) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/
LinkedHashMap.java 53 * The first real entry is header.nxt, and the last is header.prv.
54 * If the map is empty, header.nxt == header && header.prv == header.
141 * LinkedEntry adds nxt/prv double-links to plain HashMapEntry.
144 LinkedEntry<K, V> nxt; field in class:LinkedHashMap.LinkedEntry
150 nxt = prv = this;
155 LinkedEntry<K, V> nxt, LinkedEntry<K, V> prv) {
157 this.nxt = nxt;
167 LinkedEntry<K, V> eldest = header.nxt;
188 LinkedEntry<K, V> eldest = header.nxt;
327 LinkedEntry<K, V> nxt = e.nxt; local
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_transition.java 22 * @param nxt next transition in linked list.
24 public lalr_transition(symbol on_sym, lalr_state to_st, lalr_transition nxt)
36 _next = nxt;
  /hardware/intel/common/wrs_omxil_core/utils/inc/
list.h 69 #define list_foreach_safe(list, ptr, nxt) \
70 for (ptr = list, nxt = __list_next(ptr); \
72 ptr = nxt, nxt = __list_next(ptr))
  /external/tcpdump/
print-tcp.c 79 struct tcp_seq_hash *nxt; member in struct:tcp_seq_hash
93 struct tcp_seq_hash6 *nxt; member in struct:tcp_seq_hash6
277 th->nxt; th = th->nxt)
282 if (!th->nxt || (flags & TH_SYN)) {
284 if (th->nxt == NULL) {
285 th->nxt = (struct tcp_seq_hash6 *)
287 if (th->nxt == NULL)
333 th->nxt; th = th->nxt)
799 u_int8_t nxt; local
    [all...]
addrtoname.c 86 struct hnamemem *nxt; member in struct:hnamemem
140 struct h6namemem *nxt; member in struct:h6namemem
233 for (; p->nxt; p = p->nxt) {
238 p->nxt = newhnamemem();
289 for (; p->nxt; p = p->nxt) {
294 p->nxt = newh6namemem();
589 for (tp = &eprototable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
    [all...]
print-atalk.c 533 struct hnamemem *nxt; member in struct:hnamemem
569 tp->nxt; tp = tp->nxt)
572 tp->nxt = newhnamemem();
578 for (tp = &hnametable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
584 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
587 tp->nxt = newhnamemem();
595 tp->nxt = newhnamemem()
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_lfstack.h 54 T *nxt = cur->next;
56 u64 xch = (u64)(uptr)nxt | cnt;
  /system/vold/
Devmapper.cpp 84 unsigned nxt = 0; local
86 n = (struct dm_name_list *) (((char *) n) + nxt);
108 nxt = n->next;
109 } while (nxt);
  /external/srec/srec/cfront/
spec_anl.c 275 bigdata t, sum, mom, nxt; local
283 nxt = 0;
286 ASSERT(((float)nxt + (float)freqobj->framp[j] *(float)density[j]) < LONG_MAX);
287 ASSERT(((float)nxt + (float)freqobj->framp[j] *(float)density[j]) > -LONG_MAX);
288 nxt += (bigdata) SHIFT_DOWN((bigdata)freqobj->framp[j] * (bigdata)density[j], RAMP_SHIFT);
308 ASSERT(((float)nxt + (float)sum - (float)mom) < LONG_MAX);
309 ASSERT(((float)nxt + (float)sum - (float)mom) > LONG_MIN);
312 t = (bigdata)((SHIFT_UP(nxt + sum - mom, HALF_RAMP_SHIFT)
316 nxt = mom;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
actions.c 248 CharPtn *x = s->rep[c], *a = x->nxt;
252 x->nxt = a = s->freeHead;
253 if(!(s->freeHead = s->freeHead->nxt))
255 a->nxt = NULL;
261 *(s->freeTail = &x->nxt) = NULL;
269 s->fix->nxt = NULL;
650 cs.ptn[j].nxt = &cs.ptn[j+1];
653 *(cs.freeTail = &cs.ptn[nChars-1].nxt) = NULL;
655 cs.ptn[0].nxt = NULL;
665 if(!cs.rep[j]->nxt)
    [all...]
re.h 17 struct CharPtn *nxt; member in struct:CharPtn
  /external/wpa_supplicant_8/src/utils/
eloop.c 348 int nxt = 0; local
359 pollfds[nxt].fd = fd;
360 pollfds[nxt].events = POLLIN;
361 pollfds[nxt].revents = 0;
362 pollfds_map[fd] = &(pollfds[nxt]);
363 nxt++;
377 pfd = &(pollfds[nxt]);
382 nxt++;
403 pfd = &(pollfds[nxt]);
408 nxt++
    [all...]
  /external/iptables/libxtables/
xtoptions.c 1112 char *cur, *nxt; local
1128 id = strtoul(cur, &nxt, strncmp(cur, "0x", 2) == 0 ? 16 : 10);
1129 if (nxt == cur || errno != 0)
1135 cur = nxt;
1143 nxt = cur;
1144 while (*nxt != '\0' && !isspace(*nxt))
1145 ++nxt;
1146 if (nxt == cur)
1148 *nxt = '\0'
    [all...]
  /external/libxml2/
parser.c 1400 const xmlChar *cur = lang, *nxt; local
    [all...]
  /external/oprofile/opjitconv/
opjitconv.c 440 struct procid * id, * nxt; local
472 for (id = pid_list; id; id = nxt) {
474 nxt = id->next;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
org.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jar 
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.director.app_1.0.300.v20130819-1621.jar 
org.eclipse.equinox.p2.director_2.3.1.v20140221-1852.jar 
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.director.app_1.0.300.v20130327-2119.jar 
org.eclipse.equinox.p2.director_2.3.0.v20130526-0335.jar 
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctputil.c 5698 struct sctp_queued_to_read *control = NULL, *ctl = NULL, *nxt = NULL; local
    [all...]

Completed in 1147 milliseconds

1 2