Home
last modified time | relevance | path

Searched refs:top (Results 1 – 25 of 1538) sorted by relevance

12345678910>>...62

/netbsd/src/external/bsd/openldap/dist/tests/data/
Dnis_sample.ldif4 objectclass: top
15 objectclass: top
23 objectclass: top
32 objectclass: top
42 objectclass: top
52 objectclass: top
60 objectclass: top
68 objectclass: top
75 objectclass: top
82 objectclass: top
[all …]
/netbsd/src/common/lib/libc/gmon/
Dmcount.c134 struct tostruct *top, *prevtop; in _MCOUNT_DECL() local
204 top = &p->tos[(size_t)toindex]; in _MCOUNT_DECL()
205 top->selfpc = selfpc; in _MCOUNT_DECL()
206 top->count = 1; in _MCOUNT_DECL()
207 top->link = 0; in _MCOUNT_DECL()
210 top = &p->tos[(size_t)toindex]; in _MCOUNT_DECL()
211 if (top->selfpc == selfpc) { in _MCOUNT_DECL()
215 top->count++; in _MCOUNT_DECL()
225 if (top->link == 0) { in _MCOUNT_DECL()
236 top = &p->tos[(size_t)toindex]; in _MCOUNT_DECL()
[all …]
/netbsd/src/external/gpl3/binutils/dist/gas/config/
Dloongarch-parse.y29 static struct reloc_info *top, *end; variable
53 top = reloc_stack_top; in loongarch_parse_expr()
54 end = top + max_reloc_num; in loongarch_parse_expr()
60 if (is_const (top - 1)) in loongarch_parse_expr()
61 *imm = (--top)->value.X_add_number; in loongarch_parse_expr()
64 *reloc_num = top - reloc_stack_top; in loongarch_parse_expr()
74 if (end <= top) in emit_const()
76 top->type = BFD_RELOC_LARCH_SOP_PUSH_ABSOLUTE; in emit_const()
77 top->value.X_op = O_constant; in emit_const()
78 top->value.X_add_number = imm; in emit_const()
[all …]
Dloongarch-parse.c81 static struct reloc_info *top, *end; variable
105 top = reloc_stack_top; in loongarch_parse_expr()
106 end = top + max_reloc_num; in loongarch_parse_expr()
112 if (is_const (top - 1)) in loongarch_parse_expr()
113 *imm = (--top)->value.X_add_number; in loongarch_parse_expr()
116 *reloc_num = top - reloc_stack_top; in loongarch_parse_expr()
126 if (end <= top) in emit_const()
128 top->type = BFD_RELOC_LARCH_SOP_PUSH_ABSOLUTE; in emit_const()
129 top->value.X_op = O_constant; in emit_const()
130 top->value.X_add_number = imm; in emit_const()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/bn/
Dbn_exp.c148 if (a->top == 1 && !a->neg in BN_mod_exp()
336 if (m->top <= BN_CONSTTIME_SIZE_LIMIT in BN_mod_exp_mont()
404 j = m->top; /* borrow j */ in BN_mod_exp_mont()
412 r->top = j; in BN_mod_exp_mont()
473 j = mont->N.top; /* borrow j */ in BN_mod_exp_mont()
477 val[0]->top = j; in BN_mod_exp_mont()
500 if (wordpos >= 0 && wordpos < a->top) { in bn_get_bits()
504 if (++wordpos < a->top) in bn_get_bits()
519 static int MOD_EXP_CTIME_COPY_TO_PREBUF(const BIGNUM *b, int top, in MOD_EXP_CTIME_COPY_TO_PREBUF() argument
527 if (top > b->top) in MOD_EXP_CTIME_COPY_TO_PREBUF()
[all …]
Dbn_shift.c24 if (bn_wexpand(r, a->top + 1) == NULL) in BN_lshift1()
26 r->top = a->top; in BN_lshift1()
28 if (bn_wexpand(r, a->top + 1) == NULL) in BN_lshift1()
34 for (i = 0; i < a->top; i++) { in BN_lshift1()
40 r->top += c; in BN_lshift1()
57 i = a->top; in BN_rshift1()
65 r->top = i; in BN_rshift1()
69 r->top -= (t == 1); in BN_rshift1()
75 if (!r->top) in BN_rshift1()
117 if (bn_wexpand(r, a->top + nw + 1) == NULL) in bn_lshift_fixed_top()
[all …]
Dbn_lib.c157 int i = a->top - 1; in bn_num_bits_consttime()
180 int i = a->top - 1; in BN_num_bits()
287 assert(b->top <= words); in bn_expand_internal()
288 if (b->top > 0) in bn_expand_internal()
289 memcpy(a, b->d, sizeof(*a) * b->top); in bn_expand_internal()
342 bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top; in BN_copy()
349 if (b->top > 0) in BN_copy()
353 a->top = b->top; in BN_copy()
378 tmp_top = a->top; in BN_swap()
383 a->top = b->top; in BN_swap()
[all …]
Dbn_word.c44 for (i = a->top - 1; i >= 0; i--) { in BN_mod_word()
72 if (a->top == 0) in BN_div_word()
81 for (i = a->top - 1; i >= 0; i--) { in BN_div_word()
89 if ((a->top > 0) && (a->d[a->top - 1] == 0)) in BN_div_word()
90 a->top--; in BN_div_word()
92 if (!a->top) in BN_div_word()
120 for (i = 0; w != 0 && i < a->top; i++) { in BN_add_word()
124 if (w && i == a->top) { in BN_add_word()
125 if (bn_wexpand(a, a->top + 1) == NULL) in BN_add_word()
127 a->top++; in BN_add_word()
[all …]
/netbsd/src/usr.sbin/altq/altqstat/
Dqdisc_wfq.c68 struct wfqinfo *qinfo, **top; in wfq_stat_loop() local
88 if ((top = malloc(ntop * sizeof(struct wfqinfo *))) == NULL) in wfq_stat_loop()
102 top[j] = NULL; in wfq_stat_loop()
125 if (top[j] == NULL) { in wfq_stat_loop()
126 top[j] = &qinfo[i]; in wfq_stat_loop()
129 if (top[j]->bps < qinfo[i].bps || in wfq_stat_loop()
130 (top[j]->bps == qinfo[i].bps && in wfq_stat_loop()
131 top[j]->stats.xmit_cnt.packets < in wfq_stat_loop()
134 top[k] = top[k-1]; in wfq_stat_loop()
135 top[j] = &qinfo[i]; in wfq_stat_loop()
[all …]
/netbsd/src/sys/altq/
Daltq_cdnr.c137 struct top_cdnr *top; in altq_cdnr_input() local
147 top = ifp->if_snd.altq_cdnr; in altq_cdnr_input()
163 cb = acc_classify(&top->tc_classifier, m, af); in altq_cdnr_input()
168 tca = &top->tc_block.cb_action; in altq_cdnr_input()
171 PKTCNTR_ADD(&top->tc_cnts[tca->tca_code], pktinfo.pkt_len); in altq_cdnr_input()
210 struct top_cdnr *top; in tcb_lookup() local
214 LIST_FOREACH(top, &tcb_list, tc_next) in tcb_lookup()
215 if (top->tc_ifq->altq_ifp == ifp) in tcb_lookup()
216 return top; in tcb_lookup()
241 cdnr_cballoc(struct top_cdnr *top, int type, struct tc_action *(*input_func)( in cdnr_cballoc() argument
[all …]
/netbsd/src/usr.bin/xlint/lint1/
Derr.c477 struct include_level *top; in update_location() local
479 top = includes; in update_location()
480 if (is_begin && top != NULL) in update_location()
481 top->lineno = curr_pos.p_line; in update_location()
483 if (top == NULL || is_begin) { in update_location()
484 top = xmalloc(sizeof(*top)); in update_location()
485 top->filename = filename; in update_location()
486 top->lineno = lineno; in update_location()
487 top->by = includes; in update_location()
488 includes = top; in update_location()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libcpp/
Dexpr.cc1314 struct op *top = pfile->op_stack; in _cpp_parse_expr() local
1327 top->op = CPP_EOF; in _cpp_parse_expr()
1354 top->value = eval_token (pfile, op.token, op.loc); in _cpp_parse_expr()
1393 if (op.op == CPP_CLOSE_PAREN && top->op == CPP_OPEN_PAREN) in _cpp_parse_expr()
1397 if (op.op == CPP_EOF && top->op == CPP_EOF) in _cpp_parse_expr()
1401 if (top->op != CPP_EOF && top->op != CPP_OPEN_PAREN) in _cpp_parse_expr()
1404 cpp_token_as_text (pfile, top->token)); in _cpp_parse_expr()
1413 top = reduce (pfile, top, op.op); in _cpp_parse_expr()
1414 if (!top) in _cpp_parse_expr()
1425 if (!num_zerop (top->value)) in _cpp_parse_expr()
[all …]
/netbsd/src/external/mit/lua/dist/src/
Dlapi.c70 api_check(L, idx <= ci->top.p - (ci->func.p + 1), "unacceptable index"); in index2value()
71 if (o >= L->top.p) return &G(L)->nilvalue; in index2value()
75 api_check(L, idx != 0 && -idx <= L->top.p - (ci->func.p + 1), in index2value()
77 return s2v(L->top.p + idx); in index2value()
105 api_check(L, o < L->top.p, "invalid index"); in index2stack()
109 api_check(L, idx != 0 && -idx <= L->top.p - (ci->func.p + 1), in index2stack()
112 return L->top.p + idx; in index2stack()
123 if (L->stack_last.p - L->top.p > n) /* stack large enough? */ in lua_checkstack()
127 if (res && ci->top.p < L->top.p + n) in lua_checkstack()
128 ci->top.p = L->top.p + n; /* adjust frame top */ in lua_checkstack()
[all …]
Dltm.c114 StkId func = L->top.p; in luaT_callTM()
119 L->top.p = func + 4; in luaT_callTM()
131 StkId func = L->top.p; in luaT_callTMres()
135 L->top.p += 3; in luaT_callTMres()
142 setobjs2s(L, res, --L->top.p); /* move result to its place */ in luaT_callTMres()
177 StkId top = L->top.p; in luaT_tryconcatTM() local
178 if (l_unlikely(!callbinTM(L, s2v(top - 2), s2v(top - 1), top - 2, in luaT_tryconcatTM()
180 luaG_concaterror(L, s2v(top - 2), s2v(top - 1)); in luaT_tryconcatTM()
212 if (callbinTM(L, p1, p2, L->top.p, event)) /* try original event */ in luaT_callorderTM()
213 return !l_isfalse(s2v(L->top.p)); in luaT_callorderTM()
[all …]
Dldo.c111 setobjs2s(L, oldtop, L->top.p - 1); /* error message on current top */ in luaD_seterrorobj()
115 L->top.p = oldtop + 1; in luaD_seterrorobj()
128 setobjs2s(L, g->mainthread->top.p++, L->top.p - 1); /* copy error obj. */ in luaD_throw()
172 L->top.offset = savestack(L, L->top.p); in relstack()
177 ci->top.offset = savestack(L, ci->top.p); in relstack()
189 L->top.p = restorestack(L, L->top.offset); in correctstack()
194 ci->top.p = restorestack(L, ci->top.offset); in correctstack()
259 int needed = cast_int(L->top.p - L->stack.p) + n; in luaD_growstack()
283 StkId lim = L->top.p; in stackinuse()
285 if (lim < ci->top.p) lim = ci->top.p; in stackinuse()
[all …]
Dlapi.h18 #define api_incr_top(L) {L->top.p++; \
19 api_check(L, L->top.p <= L->ci->top.p, \
29 { if ((nres) <= LUA_MULTRET && L->ci->top.p < L->top.p) \
30 L->ci->top.p = L->top.p; }
35 api_check(L, (n) < (L->top.p - L->ci->func.p), \
/netbsd/src/crypto/external/bsd/openssh/dist/
Dbitmap.c35 size_t top; /* index of top word allocated */ member
50 ret->top = 0; in bitmap_new()
69 b->top = 0; in bitmap_zero()
75 if (b->top >= b->len) in bitmap_test_bit()
77 if (b->len == 0 || (n / BITMAP_BITS) > b->top) in bitmap_test_bit()
88 if (b->top >= b->len || n > BITMAP_MAX) in reserve()
110 if (offset > b->top) in bitmap_set_bit()
111 b->top = offset; in bitmap_set_bit()
120 if (b->top >= b->len) in retop()
122 while (b->top > 0 && b->d[b->top] == 0) in retop()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dreg-stack.cc204 int top; /* index to top stack element */ member
370 int top; in straighten_stack() local
376 if (regstack->top <= 0) in straighten_stack()
381 for (top = temp_stack.top = regstack->top; top >= 0; top--) in straighten_stack()
382 temp_stack.reg[top] = FIRST_STACK_REG + temp_stack.top - top; in straighten_stack()
392 int top = regstack->top; in pop_stack() local
395 regstack->top--; in pop_stack()
397 if (regstack->reg [top] != regno) in pop_stack()
400 for (i = regstack->top; i >= 0; i--) in pop_stack()
404 for (j = i; j < top; j++) in pop_stack()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/err/
Derr.c347 es->top = es->bottom = 0; in ERR_clear_error()
462 while (es->bottom != es->top) { in get_error_values()
463 if (es->err_flags[es->top] & ERR_FLAG_CLEAR) { in get_error_values()
464 err_clear(es, es->top, 0); in get_error_values()
465 es->top = es->top > 0 ? es->top - 1 : ERR_NUM_ERRORS - 1; in get_error_values()
478 if (es->bottom == es->top) in get_error_values()
483 i = es->top; in get_error_values()
786 err_clear_data(es, es->top, deallocate); in err_set_error_data_int()
787 err_set_data(es, es->top, data, size, flags); in err_set_error_data_int()
830 i = es->top; in ERR_add_error_vdata()
[all …]
/netbsd/src/sys/arch/amiga/dev/
Dite_rh.c147 screen_up(struct ite_softc *ip, int top, int bottom, int lines) in screen_up() argument
151 if (top >= bottom) in screen_up()
154 if (top + lines >= bottom) { in screen_up()
155 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols); in screen_up()
159 RZ3AlphaCopy(ip->grf, 0, top+lines, 0, top, ip->cols, bottom-top-lines+1); in screen_up()
165 screen_down (struct ite_softc *ip, int top, int bottom, int lines) in screen_down() argument
169 if (top >= bottom) in screen_down()
172 if (top + lines >= bottom) { in screen_down()
173 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols); in screen_down()
177 RZ3AlphaCopy(ip->grf, 0, top, 0, top+lines, ip->cols, bottom-top-lines+1); in screen_down()
[all …]
/netbsd/src/external/bsd/top/dist/
DFAQ13 1. What is top?
16 information about the system and its top cpu-using processes. Think
20 2. Where do I get the latest version of top?
22 The official site for top is "ftp.unixtop.org" in the directory
23 "/pub/top". Top is also a SourceForge project, and the most recent
28 3. Is there a web page for top?
32 components of the output of top, web-based retrieval of the package,
35 4. Is there a mailing list or on-line bulletin board for top?
37 There is a mailing list used for general announcements regarding top,
47 2000. A full statement concerning top and the year 2000 can be found
[all …]
Dconfig.sparcv9.make2 all: sparcv7/top sparcv9/top
3 -cp -f $(ISAEXEC) top
5 sparcv7/top: $(SRC) $(INC)
7 BINARY=./top ARCHFLAG= top
9 sparcv9/top: $(SRC) $(INC)
10 cd sparcv9; $(MAKE) -f ../Makefile VPATH=.. srcdir=.. BINARY=./top top
Dconfig.amd64.make2 all: i386/top amd64/top
3 -cp -f /usr/lib/isaexec top
5 i386/top: $(SRC) $(INC)
7 BINARY=./top ARCHFLAG= top
9 amd64/top: $(SRC) $(INC)
10 cd amd64; $(MAKE) -f ../Makefile VPATH=.. srcdir=.. BINARY=./top top
/netbsd/src/lib/libcurses/
Dscroll.c73 setscrreg(int top, int bottom) in setscrreg() argument
76 return wsetscrreg(stdscr, top, bottom); in setscrreg()
84 getscrreg(int *top, int *bottom) in getscrreg() argument
87 return wgetscrreg(stdscr, top, bottom); in getscrreg()
131 wsetscrreg(WINDOW *win, int top, int bottom) in wsetscrreg() argument
136 if (top < 0 || bottom >= win->maxy || bottom - top < 1) in wsetscrreg()
138 win->scr_t = top; in wsetscrreg()
148 wgetscrreg(WINDOW *win, int *top, int *bottom) in wgetscrreg() argument
153 *top = win->scr_t; in wgetscrreg()
/netbsd/src/sys/coda/
Dcoda_venus.c157 #define CNV_VV2V_ATTR(top, fromp) \ argument
159 (top)->va_type = (fromp)->va_type; \
160 (top)->va_mode = (fromp)->va_mode; \
161 (top)->va_nlink = (fromp)->va_nlink; \
162 (top)->va_uid = (fromp)->va_uid; \
163 (top)->va_gid = (fromp)->va_gid; \
164 (top)->va_fsid = VNOVAL; \
165 (top)->va_fileid = (fromp)->va_fileid; \
166 (top)->va_size = (fromp)->va_size; \
167 (top)->va_blocksize = (fromp)->va_blocksize; \
[all …]

12345678910>>...62