| /openbsd/src/regress/usr.bin/mandoc/tbl/layout/ |
| D | lines-nogroff.out_ascii | 7 vline top left: 12 hline and vline top left: 17 vline and hline top left: 22 vline top: 27 vline and hline top: 32 hline and vline top: 37 hline, vline, hline top: 42 vline top right: 47 vline and hline top right: 52 hline and vline top right: [all …]
|
| D | lines.out_ascii | 7 hline top left: 10 hline top: 13 double hline top: 16 hline top right: 200 vline left below hline top left: 204 vline right below hline top left: 208 vline left below hline at the top: 212 vline right below hline at the top: 216 vline below hline at the top: 220 vline left below hline top right: [all …]
|
| /openbsd/src/sys/lib/libkern/ |
| D | mcount.c | 52 struct tostruct *top, *prevtop; in _MCOUNT_DECL() local 111 top = &p->tos[toindex]; in _MCOUNT_DECL() 112 top->selfpc = selfpc; in _MCOUNT_DECL() 113 top->count = 1; in _MCOUNT_DECL() 114 top->link = 0; in _MCOUNT_DECL() 117 top = &p->tos[toindex]; in _MCOUNT_DECL() 118 if (top->selfpc == selfpc) { in _MCOUNT_DECL() 122 top->count++; in _MCOUNT_DECL() 132 if (top->link == 0) { in _MCOUNT_DECL() 143 top = &p->tos[toindex]; in _MCOUNT_DECL() [all …]
|
| /openbsd/src/sys/ddb/ |
| D | db_prof.c | 89 struct tostruct *top, *prevtop; in db_prof_count() local 135 top = &p->tos[toindex]; in db_prof_count() 136 top->selfpc = selfpc; in db_prof_count() 137 top->count = 1; in db_prof_count() 138 top->link = 0; in db_prof_count() 141 top = &p->tos[toindex]; in db_prof_count() 142 if (top->selfpc == selfpc) { in db_prof_count() 146 top->count++; in db_prof_count() 156 if (top->link == 0) { in db_prof_count() 167 top = &p->tos[toindex]; in db_prof_count() [all …]
|
| /openbsd/src/lib/libc/gmon/ |
| D | mcount.c | 50 struct tostruct *top, *prevtop; in _MCOUNT_DECL() local 109 top = &p->tos[toindex]; in _MCOUNT_DECL() 110 top->selfpc = selfpc; in _MCOUNT_DECL() 111 top->count = 1; in _MCOUNT_DECL() 112 top->link = 0; in _MCOUNT_DECL() 115 top = &p->tos[toindex]; in _MCOUNT_DECL() 116 if (top->selfpc == selfpc) { in _MCOUNT_DECL() 120 top->count++; in _MCOUNT_DECL() 130 if (top->link == 0) { in _MCOUNT_DECL() 141 top = &p->tos[toindex]; in _MCOUNT_DECL() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/ext/B/B/ |
| D | Xref.pm | 154 my $top = UNKNOWN; # shadows top element of stack as 223 warn sprintf("top = [%s, %s, %s]\n", @$top) if $debug_top; 275 $top = UNKNOWN; 282 $top = $pad[$op->targ + $i]; 283 process($top, $op->private & OPpLVAL_INTRO ? "intro" : "used"); 289 $top = $pad[$op->targ]; 290 process($top, $op->private & OPpLVAL_INTRO ? "intro" : "used"); 302 sub pp_rv2cv { deref(shift, $top, "&"); } 303 sub pp_rv2hv { deref(shift, $top, "%"); } 304 sub pp_rv2sv { deref(shift, $top, "\$"); } [all …]
|
| /openbsd/src/lib/libcrypto/bn/ |
| D | bn_lib.c | 97 a->top = 0; in BN_clear() 157 .top = 1, 187 while (a->top > 0 && a->d[a->top - 1] == 0) in bn_correct_top() 188 a->top--; in bn_correct_top() 295 if (!bn_wexpand(a, b->top)) in BN_copy() 298 bn_copy_words(a->d, b->d, b->top); in BN_copy() 303 a->top = b->top; in BN_copy() 328 tmp_top = a->top; in BN_swap() 333 a->top = b->top; in BN_swap() 338 b->top = tmp_top; in BN_swap() [all …]
|
| D | bn_word.c | 91 for (i = a->top - 1; i >= 0; i--) { in BN_mod_word() 116 if (a->top == 0) in BN_div_word() 125 for (i = a->top - 1; i >= 0; i--) { in BN_div_word() 132 if ((a->top > 0) && (a->d[a->top - 1] == 0)) in BN_div_word() 133 a->top--; in BN_div_word() 164 for (i = 0; w != 0 && i < a->top; i++) { in BN_add_word() 168 if (w && i == a->top) { in BN_add_word() 169 if (!bn_wexpand(a, a->top + 1)) in BN_add_word() 171 a->top++; in BN_add_word() 203 if ((a->top == 1) && (a->d[0] < w)) { in BN_sub_word() [all …]
|
| D | bn_mont.c | 217 if (mod->top > 1) { in BN_MONT_CTX_set() 219 N->top += bn_ct_ne_zero(N->d[1]); in BN_MONT_CTX_set() 242 if (Ninv->top > 0) in BN_MONT_CTX_set() 246 if (Ninv->top > 1) in BN_MONT_CTX_set() 316 n_len = mctx->N.top; in bn_montgomery_reduce() 334 for (i = a->top; i < max; i++) in bn_montgomery_reduce() 364 r->top = n_len; in bn_montgomery_reduce() 496 if (mctx->N.top <= 1 || a->top != mctx->N.top || b->top != mctx->N.top) in bn_montgomery_multiply() 498 if (!bn_wexpand(r, mctx->N.top)) in bn_montgomery_multiply() 503 if (!bn_wexpand(t, mctx->N.top * 2 + 2)) in bn_montgomery_multiply() [all …]
|
| D | bn_exp.c | 314 MOD_EXP_CTIME_COPY_TO_PREBUF(const BIGNUM *b, int top, unsigned char *buf, in MOD_EXP_CTIME_COPY_TO_PREBUF() argument 321 if (top > b->top) in MOD_EXP_CTIME_COPY_TO_PREBUF() 322 top = b->top; /* this works because 'buf' is explicitly zeroed */ in MOD_EXP_CTIME_COPY_TO_PREBUF() 324 for (i = 0, j = idx; i < top; i++, j += width) { in MOD_EXP_CTIME_COPY_TO_PREBUF() 332 MOD_EXP_CTIME_COPY_FROM_PREBUF(BIGNUM *b, int top, unsigned char *buf, int idx, in MOD_EXP_CTIME_COPY_FROM_PREBUF() argument 339 if (!bn_wexpand(b, top)) in MOD_EXP_CTIME_COPY_FROM_PREBUF() 343 for (i = 0; i < top; i++, table += width) { in MOD_EXP_CTIME_COPY_FROM_PREBUF() 365 for (i = 0; i < top; i++, table += width) { in MOD_EXP_CTIME_COPY_FROM_PREBUF() 379 b->top = top; in MOD_EXP_CTIME_COPY_FROM_PREBUF() 399 int top; in BN_mod_exp_mont_consttime() local [all …]
|
| /openbsd/src/usr.bin/ssh/ |
| D | bitmap.c | 32 size_t top; /* index of top word allocated */ member 47 ret->top = 0; in bitmap_new() 66 b->top = 0; in bitmap_zero() 72 if (b->top >= b->len) in bitmap_test_bit() 74 if (b->len == 0 || (n / BITMAP_BITS) > b->top) in bitmap_test_bit() 85 if (b->top >= b->len || n > BITMAP_MAX) in reserve() 107 if (offset > b->top) in bitmap_set_bit() 108 b->top = offset; in bitmap_set_bit() 117 if (b->top >= b->len) in retop() 119 while (b->top > 0 && b->d[b->top] == 0) in retop() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | gmon.c | 192 register struct tostruct *top; in mcount() local 236 top = &tos[toindex]; in mcount() 237 top->selfpc = selfpc; in mcount() 238 top->count = 1; in mcount() 239 top->link = 0; in mcount() 242 top = &tos[toindex]; in mcount() 243 if (top->selfpc == selfpc) { in mcount() 247 top->count++; in mcount() 257 if (top->link == 0) { in mcount() 268 top = &tos[toindex]; in mcount() [all …]
|
| D | cppexp.c | 745 struct op *top = pfile->op_stack; local 757 top->op = CPP_EOF; 779 top->value = eval_token (pfile, op.token); 820 if (top->op == CPP_OPEN_PAREN) 823 else if (top->op == CPP_EOF) 825 if (top->op != CPP_EOF && top->op != CPP_OPEN_PAREN) 827 cpp_token_as_text (pfile, top->token)); 830 top = reduce (pfile, top, op.op); 831 if (!top) 842 if (!num_zerop (top->value)) [all …]
|
| /openbsd/src/gnu/gcc/libcpp/ |
| D | expr.c | 755 struct op *top = pfile->op_stack; in _cpp_parse_expr() local 767 top->op = CPP_EOF; in _cpp_parse_expr() 789 top->value = eval_token (pfile, op.token); in _cpp_parse_expr() 822 if (op.op == CPP_CLOSE_PAREN && top->op == CPP_OPEN_PAREN) in _cpp_parse_expr() 825 if (op.op == CPP_EOF && top->op == CPP_EOF) in _cpp_parse_expr() 828 if (top->op != CPP_EOF && top->op != CPP_OPEN_PAREN) in _cpp_parse_expr() 830 cpp_token_as_text (pfile, top->token)); in _cpp_parse_expr() 838 top = reduce (pfile, top, op.op); in _cpp_parse_expr() 839 if (!top) in _cpp_parse_expr() 850 if (!num_zerop (top->value)) in _cpp_parse_expr() [all …]
|
| /openbsd/src/gnu/gcc/gcc/config/i386/ |
| D | gmon-sol2.c | 250 register struct tostruct *top; in internal_mcount() local 307 top = &tos[toindex]; in internal_mcount() 308 top->selfpc = selfpc; in internal_mcount() 309 top->count = 1; in internal_mcount() 310 top->link = 0; in internal_mcount() 313 top = &tos[toindex]; in internal_mcount() 314 if (top->selfpc == selfpc) { in internal_mcount() 318 top->count++; in internal_mcount() 328 if (top->link == 0) { in internal_mcount() 339 top = &tos[toindex]; in internal_mcount() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/config/i386/ |
| D | gmon-sol2.c | 256 register struct tostruct *top; in internal_mcount() local 313 top = &tos[toindex]; in internal_mcount() 314 top->selfpc = selfpc; in internal_mcount() 315 top->count = 1; in internal_mcount() 316 top->link = 0; in internal_mcount() 319 top = &tos[toindex]; in internal_mcount() 320 if (top->selfpc == selfpc) { in internal_mcount() 324 top->count++; in internal_mcount() 334 if (top->link == 0) { in internal_mcount() 345 top = &tos[toindex]; in internal_mcount() [all …]
|
| /openbsd/src/gnu/gcc/gcc/config/sparc/ |
| D | gmon-sol2.c | 281 register struct tostruct *top; in internal_mcount() local 332 top = &tos[toindex]; in internal_mcount() 333 top->selfpc = selfpc; in internal_mcount() 334 top->count = 1; in internal_mcount() 335 top->link = 0; in internal_mcount() 338 top = &tos[toindex]; in internal_mcount() 339 if (top->selfpc == selfpc) { in internal_mcount() 343 top->count++; in internal_mcount() 353 if (top->link == 0) { in internal_mcount() 364 top = &tos[toindex]; in internal_mcount() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/config/sparc/ |
| D | gmon-sol2.c | 282 register struct tostruct *top; local 333 top = &tos[toindex]; 334 top->selfpc = selfpc; 335 top->count = 1; 336 top->link = 0; 339 top = &tos[toindex]; 340 if (top->selfpc == selfpc) { 344 top->count++; 354 if (top->link == 0) { 365 top = &tos[toindex]; [all …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/msan/ |
| D | msan_thread.cpp | 27 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls() 35 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 48 CHECK(MEM_IS_APP(stack_.top - 1)); in Init() 83 return {stack_.bottom, stack_.top}; in GetStackBounds() 88 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds() 89 return {next_stack_.bottom, next_stack_.top}; in GetStackBounds() 90 return {stack_.bottom, stack_.top}; in GetStackBounds() 93 uptr MsanThread::stack_top() { return GetStackBounds().top; } in stack_top() 99 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack() 105 next_stack_.top = bottom + size; in StartSwitchFiber() [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | reg-stack.c | 203 int top; /* index to top stack element */ member 368 int top; in straighten_stack() local 374 if (regstack->top <= 0) in straighten_stack() 379 for (top = temp_stack.top = regstack->top; top >= 0; top--) in straighten_stack() 380 temp_stack.reg[top] = FIRST_STACK_REG + temp_stack.top - top; in straighten_stack() 390 int top = regstack->top; in pop_stack() local 393 regstack->top--; in pop_stack() 395 if (regstack->reg [top] != regno) in pop_stack() 398 for (i = regstack->top; i >= 0; i--) in pop_stack() 402 for (j = i; j < top; j++) in pop_stack() [all …]
|
| /openbsd/src/lib/libcbor/src/cbor/internal/ |
| D | builder_callbacks.c | 32 switch (ctx->stack->top->item->type) { in _cbor_builder_append() 37 if (cbor_array_is_definite(ctx->stack->top->item)) { in _cbor_builder_append() 41 CBOR_ASSERT(ctx->stack->top->subitems > 0); in _cbor_builder_append() 44 if (!cbor_array_push(ctx->stack->top->item, item)) { in _cbor_builder_append() 50 ctx->stack->top->subitems--; in _cbor_builder_append() 51 if (ctx->stack->top->subitems == 0) { in _cbor_builder_append() 52 cbor_item_t *stack_item = ctx->stack->top->item; in _cbor_builder_append() 58 if (!cbor_array_push(ctx->stack->top->item, item)) { in _cbor_builder_append() 69 if (ctx->stack->top->subitems % 2) { in _cbor_builder_append() 71 if (!_cbor_map_add_value(ctx->stack->top->item, item)) { in _cbor_builder_append() [all …]
|
| D | stack.c | 11 return (struct _cbor_stack){.top = NULL, .size = 0}; in _cbor_stack_init() 15 struct _cbor_stack_record *top = stack->top; in _cbor_stack_pop() local 16 stack->top = stack->top->lower; in _cbor_stack_pop() 17 _cbor_free(top); in _cbor_stack_pop() 29 *new_top = (struct _cbor_stack_record){stack->top, item, subitems}; in _cbor_stack_push() 30 stack->top = new_top; in _cbor_stack_push()
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/ |
| D | Stack.t | 54 is($stack->top, $hub, "got the hub"); 64 ok(my $top = $stack->top, "Generated a top hub"); 65 is($top->ipc, test2_ipc, "Used sync's ipc"); 66 ok($top->format, 'Got formatter'); 68 is($stack->top, $stack->top, "do not generate a new top if there is already a top"); 71 is($stack->top, $new, "new one is on top"); 72 is($new->ipc, $top->ipc, "inherited ipc"); 73 is($new->format, $top->format, "inherited formatter");
|
| /openbsd/src/gnu/llvm/clang/www/analyzer/ |
| D | content.css | 14 h1 { padding-top:0px; margin-top:0px;} 15 h2 { color:#333333; padding-top:0.5em; } 16 h3 { padding-top: 0.5em; margin-bottom: -0.25em; color:#2d58b7 } 49 tr { vertical-align:top } 55 border-top: 2px solid #cccccc; 61 table.options { margin-left:0px; margin-top:20px; margin-bottom:20px } 69 margin:0px; margin-top:20px; margin-bottom:20px; 78 border-top: 2px solid #cccccc; 91 table.checkers div.example { border-top:1px #cccccc dashed; width:100%; padding-top: 5px; margin-to… 92 table.checkers div.example:first-child { border-top:none; padding-top: 0px; margin-top: 0px } [all …]
|
| /openbsd/src/lib/libcrypto/err/ |
| D | err.c | 136 int top, bottom; member 568 ret->top = 0; in ERR_get_state() 611 get_error_values(int inc, int top, const char **file, int *line, in get_error_values() argument 620 if (inc && top) { in get_error_values() 633 if (es->bottom == es->top) in get_error_values() 635 if (top) in get_error_values() 636 i = es->top; /* last error */ in get_error_values() 781 if (es->bottom == es->top) in ERR_set_mark() 783 es->err_flags[es->top] |= ERR_FLAG_MARK; in ERR_set_mark() 795 while (es->bottom != es->top && in ERR_pop_to_mark() [all …]
|