| /src/crypto/external/apache2/openssl/dist/crypto/err/ |
| err_mark.c | 23 if (es->bottom == es->top) 25 es->err_marks[es->top]++; 34 if (es == NULL || es->bottom == es->top) 37 err_clear(es, es->top, 0); 38 es->top = es->top > 0 ? es->top - 1 : ERR_NUM_ERRORS - 1; 50 while (es->bottom != es->top 51 && es->err_marks[es->top] == 0) { 52 err_clear(es, es->top, 0) 65 int count = 0, top; local 84 int top; local [all...] |
| err_save.c | 49 int top; local 60 es->top = es->bottom = 0; 65 for (count = 0, top = thread_es->top; 66 thread_es->bottom != top 67 && thread_es->err_marks[top] == 0; 69 top = top > 0 ? top - 1 : ERR_NUM_ERRORS - 1; 72 for (i = 0, j = top; i < count; ++i) 126 size_t top; local [all...] |
| /src/external/gpl2/texinfo/dist/makeinfo/tests/ |
| top | 2 # Test that a top node can be ignored. 6 ../makeinfo $srcdir/top.txi || exit 1 9 ../makeinfo --no-split --no-warn --html $srcdir/top.txi -o top.html || exit 1 11 rm -f top*.html top.info
|
| html-top | 2 # Test that a bare top node does not crash with --html. 7 ../makeinfo --no-split --force -o html-top.html --html $srcdir/html-top.txi \ 9 test -s html-top.html 12 rm -f html-top.html
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| mips_pro.c | 19 top (int y) function 27 return top (-1) + top (1);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| mips_pro.c | 19 top (int y) function 27 return top (-1) + top (1);
|
| /src/external/mit/libcbor/dist/src/cbor/internal/ |
| stack.c | 11 return (struct _cbor_stack){.top = NULL, .size = 0}; 15 struct _cbor_stack_record *top = stack->top; local 16 stack->top = stack->top->lower; 17 _CBOR_FREE(top); 28 *new_top = (struct _cbor_stack_record){stack->top, item, subitems}; 29 stack->top = new_top;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/top/ |
| nouveau_nvkm_subdev_top_base.c | 32 nvkm_top_device_new(struct nvkm_top *top) 43 list_add_tail(&info->head, &top->device); 51 struct nvkm_top *top = device->top; local 54 if (top) { 55 list_for_each_entry(info, &top->device, head) { 67 struct nvkm_top *top = device->top; local 70 if (top) { 71 list_for_each_entry(info, &top->device, head) 83 struct nvkm_top *top = device->top; local 99 struct nvkm_top *top = device->top; local 122 struct nvkm_top *top = device->top; local 136 struct nvkm_top *top = device->top; local 150 struct nvkm_top *top = device->top; local 168 struct nvkm_top *top = nvkm_top(subdev); local 175 struct nvkm_top *top = nvkm_top(subdev); local 196 struct nvkm_top *top; local [all...] |
| /src/external/mit/lua/dist/src/ |
| lapi.h | 17 /* Increments 'L->top.p', checking for stack overflows */ 18 #define api_incr_top(L) {L->top.p++; \ 19 api_check(L, L->top.p <= L->ci->top.p, \ 26 ** increases its stack space ('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), [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| ubsan_diag_standalone.cc | 23 uptr top = 0; local 27 __sanitizer::GetThreadStackTopAndBottom(false, &top, &bottom); 32 stack.Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom,
|
| /src/lib/libcurses/ |
| scroll.c | 70 * Set the top and bottom of the scrolling region for stdscr. 73 setscrreg(int top, int bottom) 76 return wsetscrreg(stdscr, top, bottom); 81 * Get the top and bottom of the scrolling region for stdscr. 84 getscrreg(int *top, int *bottom) 87 return wgetscrreg(stdscr, top, bottom); 128 * Set the top and bottom of the scrolling region for win. 131 wsetscrreg(WINDOW *win, int top, int bottom) 136 if (top < 0 || bottom >= win->maxy || bottom - top < 1 [all...] |
| /src/common/lib/libc/gmon/ |
| mcount.c | 134 struct tostruct *top, *prevtop; local 204 top = &p->tos[(size_t)toindex]; 205 top->selfpc = selfpc; 206 top->count = 1; 207 top->link = 0; 210 top = &p->tos[(size_t)toindex]; 211 if (top->selfpc == selfpc) { 215 top->count++; 220 * top points to what we are looking at, 221 * prevtop points to previous top 296 struct tostruct *top; local [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_mp_rshd.c | 37 register mp_digit *bottom, *top; local 44 /* top [offset into digits] */ 45 top = a->dp + b; 49 * the top of the window are copied to the bottom 58 *bottom++ = *top++; 61 /* zero the top digits */
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pairing_heap_/ |
| find_fn_imps.hpp | 46 top() const function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/ |
| find_fn_imps.hpp | 46 top() const function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/pairing_heap_/ |
| find_fn_imps.hpp | 46 top() const function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/ |
| find_fn_imps.hpp | 46 top() const function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gdb/dist/gdbserver/ |
| ax.cc | 409 ULONGEST top; local 620 top = aexpr->bytes[pc++]; 621 emit_const (top); 626 top = aexpr->bytes[pc++]; 627 top = (top << 8) + aexpr->bytes[pc++]; 628 emit_const (top); 633 top = aexpr->bytes[pc++]; 634 top = (top << 8) + aexpr->bytes[pc++] 947 ULONGEST stack[STACK_MAX], top; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| ax.cc | 409 ULONGEST top; local 620 top = aexpr->bytes[pc++]; 621 emit_const (top); 626 top = aexpr->bytes[pc++]; 627 top = (top << 8) + aexpr->bytes[pc++]; 628 emit_const (top); 633 top = aexpr->bytes[pc++]; 634 top = (top << 8) + aexpr->bytes[pc++] 947 ULONGEST stack[STACK_MAX], top; local [all...] |
| /src/external/gpl3/binutils/dist/gas/config/ |
| loongarch-parse.y | 30 static struct reloc_info *top, *end; 54 top = reloc_stack_top; 55 end = top + max_reloc_num; 61 if (is_const (top - 1)) 62 *imm = (--top)->value.X_add_number; 65 *reloc_num = top - reloc_stack_top; 75 if (end <= top) 77 top->type = BFD_RELOC_LARCH_SOP_PUSH_ABSOLUTE; 78 top->value.X_op = O_constant; 79 top->value.X_add_number = imm [all...] |
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| loongarch-parse.y | 29 static struct reloc_info *top, *end; 53 top = reloc_stack_top; 54 end = top + max_reloc_num; 60 if (is_const (top - 1)) 61 *imm = (--top)->value.X_add_number; 64 *reloc_num = top - reloc_stack_top; 74 if (end <= top) 76 top->type = BFD_RELOC_LARCH_SOP_PUSH_ABSOLUTE; 77 top->value.X_op = O_constant; 78 top->value.X_add_number = imm [all...] |
| /src/crypto/external/bsd/openssh/dist/ |
| openssh-lpk_openldap.schema | 16 objectclass ( 1.3.6.1.4.1.24552.500.1.1.2.0 NAME 'ldapPublicKey' SUP top AUXILIARY
|
| /src/external/cddl/dtracetoolkit/dist/Bin/ |
| cpudists | 8 # USAGE: cpudists [-ahV] [-t top] [interval [count]] 12 # -t num # print top num only 58 opt_all=0; opt_time=1; opt_top=0; top=0; interval=1; count=1 65 t) opt_top=1; top=$OPTARG ;; 67 USAGE: cpudists [-ahV] [-t top] [interval [count]] 71 -t num # print top num only 98 inline int TOP = '$top'; 164 OPT_top ? trunc(@Procs, TOP) : 1;
|
| cputimes | 14 # USAGE: cputimes [-ahTV] [-t top] [interval [count]] 19 # -t num # print top num lines only 23 # cputimes -at 8 5 # print top 8 lines every 5 secs 68 top=0; interval=1; count=1 76 t) opt_top=1; top=$OPTARG ;; 78 USAGE: cputimes [-ahTV] [-t top] [interval [count]] 83 -t num # print top num lines only 87 cputimes -at 8 5 # top 8 lines every 5 secs 115 inline int TOP = '$top'; [all...] |
| /src/external/cddl/dtracetoolkit/dist/Kernel/ |
| cpudists | 8 # USAGE: cpudists [-ahV] [-t top] [interval [count]] 12 # -t num # print top num only 58 opt_all=0; opt_time=1; opt_top=0; top=0; interval=1; count=1 65 t) opt_top=1; top=$OPTARG ;; 67 USAGE: cpudists [-ahV] [-t top] [interval [count]] 71 -t num # print top num only 98 inline int TOP = '$top'; 164 OPT_top ? trunc(@Procs, TOP) : 1;
|