Searched refs:top (Results 151 - 175 of 568) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/stdtime/
H A Dstrftime.c387 int top; local
402 top = bot -
404 if (top < -3)
405 top += DAYSPERWEEK;
406 top += len;
407 if (yday >= top) {
/freebsd-11-stable/usr.sbin/ppp/
H A Dmbuf.c352 bp = q->top;
354 q->top = q->top->m_nextpkt;
356 if (q->top == NULL) {
357 q->last = q->top;
376 queue->last = queue->top = bp;
H A Dmbuf.h45 struct mbuf *top; member in struct:mqueue
/freebsd-11-stable/contrib/lua/src/
H A Dlobject.c391 setsvalue2s(L, L->top, luaS_newlstr(L, str, l));
422 setivalue(L->top, va_arg(argp, int));
426 setivalue(L->top, cast(lua_Integer, va_arg(argp, l_uacInt)));
430 setfltvalue(L->top, cast_num(va_arg(argp, l_uacNumber)));
431 top2str: /* convert the top element to a string */
433 luaO_tostring(L, L->top - 1);
464 return svalue(L->top - 1);
H A Dlstate.c158 L1->top = L1->stack;
164 ci->func = L1->top;
165 setnilvalue(L1->top++); /* 'function' entry for this 'ci' */
166 ci->top = L1->top + LUA_MINSTACK;
268 setthvalue(L, L->top, L1);
H A Dlstate.h86 ** top function has only the yielded values in its stack; in that
90 ** function can be called with the correct top.
94 StkId top; /* top for this function */ member in struct:CallInfo
182 StkId top; /* first free slot in the stack */ member in struct:lua_State
H A Dldo.h24 if (L->stack_last - L->top <= (n)) \
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_mul.c950 int top, al, bl; local
961 fprintf(stderr, "BN_mul %d * %d\n", a->top, b->top);
968 al = a->top;
969 bl = b->top;
975 top = al + bl;
994 rr->top = 8;
1002 rr->top = 16;
1042 rr->top = top;
[all...]
H A Dbn_kron.c60 #define BN_lsw(n) (((n)->top == 0) ? (BN_ULONG) 0 : (n)->d[0])
H A Dbn_blind.c279 if (n->dmax >= r->top) {
280 size_t i, rtop = r->top, ntop = n->top;
288 /* always true, if (rtop >= ntop) n->top = r->top; */
289 n->top = (int)(rtop & ~mask) | (ntop & mask);
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DArchHandler_arm.cpp649 bool top; local
657 top = false;
665 top = true;
673 top = false;
681 top = true;
689 top = false;
697 top = true;
705 top = false;
713 top = true;
721 top
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
H A Drc.hpp108 top() const;
197 top() const
/freebsd-11-stable/contrib/gdb/gdb/
H A Dcp-abi.c90 value_rtti_type (struct value *v, int *full, int *top, int *using_enc) argument
94 return (*current_cp_abi.rtti_type) (v, full, top, using_enc);
H A Dtypeprint.c124 int top = -1; local
145 real_type = value_rtti_target_type (val, &full, &top, &using_enc);
155 real_type = value_rtti_type (val, &full, &top, &using_enc);
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Dgen-normalize.py163 top = createTable() variable
166 add(tables[top], k, v)
/freebsd-11-stable/crypto/openssl/crypto/jpake/
H A DMakefile13 top:
28 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
48 jpaketest: top jpaketest.c $(LIB)
/freebsd-11-stable/sys/compat/ndis/
H A Dwinx64_wrap.S101 lea 56+8(%rbp),%rsi # source == old stack top (stack+56)
102 mov %rsp,%rdi # destination == new stack top
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlstate.h71 StkId top; /* top for this function */ member in struct:CallInfo
157 StkId top; /* first free slot in the stack */ member in struct:lua_State
/freebsd-11-stable/lib/libc/db/btree/
H A Dbt_debug.c154 indx_t cur, top; local
178 top = NEXTINDEX(h);
180 h->lower, h->upper, top);
181 for (cur = 0; cur < top; cur++) {
/freebsd-11-stable/sys/net80211/
H A Dieee80211_rssadapt.c225 int i, top, thridx; local
227 for (i = 0, top = IEEE80211_RSSADAPT_BKT0;
229 i++, top <<= IEEE80211_RSSADAPT_BKTPOWER) {
231 if (pktlen <= top)
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Ddirectory_iterator.cpp314 return __imp_->__stack_.top().__entry_;
337 if (stack.top().advance(m_ec))
345 path root = move(stack.top().__root_);
358 auto& curr_it = __imp_->__stack_.top();
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpStack.h29 /// Constructs a value in place on the top of the stack.
34 /// Returns the value from the top of the stack and removes it.
43 /// Discards the top value from the stack.
50 /// Returns a reference to the value on the top of the stack.
55 /// Returns a pointer to the top object.
56 void *top() { return Chunk ? peek(0) : nullptr; } function in class:clang::interp::final
74 /// Returns a pointer from the top of the stack.
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
H A Di387-fp.c247 int i, top; local
269 top = (fp->fstat >> 11) & 0x7;
275 tag = i387_ftag (fp, (i + 8 - top) % 8);
/freebsd-11-stable/share/mk/
H A Dmeta2deps.sh133 for top in "$@"
136 *"$sep$top$suffix$sep"*) continue;;
138 list="${list:+$list$sep}$top$suffix"
/freebsd-11-stable/sbin/routed/
H A Dradix.c213 struct radix_node *saved_t, *top = t; local
218 * Open code rn_search(v, top) to avoid overhead of extra
318 } while (t != top);
351 struct radix_node *top = head->rnh_treetop; local
352 int head_off = top->rn_off, vlen = (int)*((u_char *)v);
353 struct radix_node *t = rn_search(v_arg, top);
381 struct radix_node *p, *x = top;
528 struct radix_node *saved_tt, *top = head->rnh_treetop; local
542 if ((x = rn_addmask(netmask, 0, top->rn_off)) == NULL)
630 } while (b <= t->rn_b && x != top);
670 struct radix_node *dupedkey, *saved_tt, *top; local
[all...]

Completed in 339 milliseconds

1234567891011>>