| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lapi.c | 45 #define api_incr_top(L) {api_check(L, L->top < L->ci->top); L->top++;} 102 if (L->ci->top < L->top + size) in lua_checkstack() 103 L->ci->top = L->top + size; in lua_checkstack() 116 api_check(from, to->ci->top - to->top >= n); in lua_xmove() 119 setobj2s(to, to->top++, from->top + i); in lua_xmove() 186 L->top--; in lua_remove() 223 L->top--; in lua_replace() 539 luaV_gettable(L, t, L->top - 1, L->top - 1); in lua_gettable() 651 luaV_settable(L, t, L->top - 2, L->top - 1); in lua_settable() 692 L->top--; in lua_rawseti() [all …]
|
| H A D | ldo.c | 67 L->top = oldtop + 1; in luaD_seterrorobj() 129 L->top = (L->top - oldstack) + L->stack; in correctstack() 133 ci->top = (ci->top - oldstack) + L->stack; in correctstack() 184 ptrdiff_t top = savestack(L, L->top); in luaD_callhook() local 194 L->ci->top = L->top + LUA_MINSTACK; in luaD_callhook() 203 L->top = restorestack(L, top); in luaD_callhook() 297 for (st = L->top; st < ci->top; st++) in luaD_precall() 299 L->top = ci->top; in luaD_precall() 314 ci->top = L->top + LUA_MINSTACK; in luaD_precall() 359 L->top = res; in luaD_poscall() [all …]
|
| H A D | lvm.c | 87 L->top += 3; in callTMres() 90 L->top--; in callTMres() 103 L->top += 4; in callTM() 286 if (!(ttisstring(top-2) || ttisnumber(top-2)) || !tostring(L, top-1)) { in luaV_concat() 287 if (!call_binTM(L, top-2, top-1, top-2, TM_CONCAT)) in luaV_concat() 288 luaG_concaterror(L, top-2, top-1); in luaV_concat() 405 lua_assert(L->top == L->ci->top || luaG_checkopenop(i)); in luaV_execute() 598 if (nresults >= 0) L->top = L->ci->top; in luaV_execute() 648 if (b) L->top = L->ci->top; in luaV_execute() 688 L->top = L->ci->top; in luaV_execute() [all …]
|
| /f-stack/freebsd/libkern/ |
| H A D | mcount.c | 184 top->selfpc = selfpc; in _MCOUNT_DECL() 185 top->count = 1; in _MCOUNT_DECL() 186 top->link = 0; in _MCOUNT_DECL() 189 top = &p->tos[toindex]; in _MCOUNT_DECL() 194 top->count++; in _MCOUNT_DECL() 204 if (top->link == 0) { in _MCOUNT_DECL() 216 top->selfpc = selfpc; in _MCOUNT_DECL() 217 top->count = 1; in _MCOUNT_DECL() 225 prevtop = top; in _MCOUNT_DECL() 226 top = &p->tos[top->link]; in _MCOUNT_DECL() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lapi.c | 102 if (res && ci->top < L->top + size) in lua_checkstack() 103 ci->top = L->top + size; /* adjust frame top */ in lua_checkstack() 118 setobj2s(to, to->top++, from->top + i); in lua_xmove() 185 L->top--; in lua_remove() 298 setobjs2s(L, L->top, L->top - 1); in lua_arith() 611 luaV_gettable(L, gt, L->top - 1, L->top - 1); in lua_getglobal() 620 luaV_gettable(L, t, L->top - 1, L->top - 1); in lua_gettable() 631 luaV_gettable(L, t, L->top - 1, L->top - 1); in lua_getfield() 738 luaV_settable(L, gt, L->top - 1, L->top - 2); in lua_setglobal() 749 luaV_settable(L, t, L->top - 2, L->top - 1); in lua_settable() [all …]
|
| H A D | lapi.h | 15 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ 19 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } 21 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
|
| H A D | lvm.c | 297 StkId top = L->top; in luaV_concat() local 299 if (!(ttisstring(top-2) || ttisnumber(top-2)) || !tostring(L, top-1)) { in luaV_concat() 300 if (!call_binTM(L, top-2, top-1, top-2, TM_CONCAT)) in luaV_concat() 301 luaG_concaterror(L, top-2, top-1); in luaV_concat() 520 L->top = ci->top; /* restore top */ in luaV_finishOp() 525 L->top = ci->top; /* correct top */ in luaV_finishOp() 530 L->top = ci->top; /* adjust results */ in luaV_finishOp() 727 L->top = ci->top; /* restore top */ in luaV_execute() 808 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ in luaV_execute() 825 if (b) L->top = ci->top; in luaV_execute() [all …]
|
| H A D | ldo.c | 215 L->top = (L->top - oldstack) + L->stack; in correctstack() 219 ci->top = (ci->top - oldstack) + L->stack; in correctstack() 266 StkId lim = L->top; in stackinuse() 269 if (lim < ci->top) lim = ci->top; in stackinuse() 291 ptrdiff_t top = savestack(L, L->top); in luaD_hook() local 298 ci->top = L->top + LUA_MINSTACK; in luaD_hook() 308 L->top = restorestack(L, top); in luaD_hook() 382 ci->top = L->top + LUA_MINSTACK; in luaD_precall() 418 L->top = ci->top; in luaD_precall() 452 L->top = res; in luaD_poscall() [all …]
|
| /f-stack/tools/libxo/tests/core/saved/ |
| H A D | test_12.HIPx.out | 12 <div class="data color-fg-red" data-tag="name" data-xpath="/top/data/thing/name">thing</div> 16 <div class="data" data-tag="time" data-xpath="/top/data/thing[name = 'thing']/time">02:15</div> 24 <div class="data" data-tag="time" data-xpath="/top/data/thing[name = 'thing']/time">03:45</div> 28 <div class="data color-fg-red" data-tag="name" data-xpath="/top/data/thing/name">thing</div> 32 <div class="data" data-tag="time" data-xpath="/top/data/thing[name = 'thing']/time">02:15</div> 40 <div class="data" data-tag="time" data-xpath="/top/data/thing[name = 'thing']/time">03:45</div> 44 <div class="data color-fg-red" data-tag="name" data-xpath="/top/data/thing/name">thing</div> 60 <div class="data color-fg-red" data-tag="name" data-xpath="/top/data/thing/name">thing</div> 76 <div class="data color-fg-red" data-tag="name" data-xpath="/top/data/thing/name">thing</div> 92 <div class="data color-fg-red" data-tag="name" data-xpath="/top/data/thing/name">thing</div> [all …]
|
| H A D | test_08.HIPx.out | 6 …<div class="data" data-tag="name" data-xpath="/top/data/contents/item/name" data-key="key">gum … 7 …<div class="data" data-tag="count" data-xpath="/top/data/contents/item[name = 'gum']/count"> … 10 …<div class="data" data-tag="name" data-xpath="/top/data/contents/item/name" data-key="key">rope … 11 …<div class="data" data-tag="count" data-xpath="/top/data/contents/item[name = 'rope']/count"> … 14 …<div class="data" data-tag="name" data-xpath="/top/data/contents/item/name" data-key="key">ladder … 18 …<div class="data" data-tag="name" data-xpath="/top/data/contents/item/name" data-key="key">bolt … 22 …<div class="data" data-tag="name" data-xpath="/top/data/contents/item/name" data-key="key">water … 34 …<div class="data" data-tag="name" data-xpath="/top/data2/contents/item/name" data-key="key">gum … 122 …<div class="data" data-tag="last" data-xpath="/top/data4/m1/contents/item[name = 'gum']/last">3</d… 156 …<div class="data" data-tag="last" data-xpath="/top/data4/m1/contents/item[name = 'rope']/last">3</… [all …]
|
| H A D | test_02.HIPx.out | 2 <div class="data" data-tag="name" data-xpath="/top/data/name">em0 </div> 8 …<div class="data" data-tag="what" data-xpath="/top/data[name = 'em0 '][name = 'em0']/what">braces… 28 <div class="data" data-tag="fd" data-xpath="/top/data[name = 'em0 '][name = 'em0']/fd">-1</div> 32 …<div class="data" data-tag="test" data-xpath="/top/data[name = 'em0 '][name = 'em0']/test">good</… 36 <div class="data" data-tag="fd" data-xpath="/top/data[name = 'em0 '][name = 'em0']/fd">-1</div> 40 …<div class="data" data-tag="test" data-xpath="/top/data[name = 'em0 '][name = 'em0']/test">good</… 113 <div class="data" data-tag="ten" data-xpath="/top/data[name = 'em0 '][name = 'em0']/ten">10</div> 129 <div class="data" data-tag="min" data-xpath="/top/data[name = 'em0 '][name = 'em0']/min">15</div> 131 <div class="data" data-tag="cur" data-xpath="/top/data[name = 'em0 '][name = 'em0']/cur">20</div> 139 <div class="data" data-tag="min" data-xpath="/top/data[name = 'em0 '][name = 'em0']/min">15</div> [all …]
|
| H A D | test_01.HIPx.out | 3 <div class="data" data-tag="type" data-xpath="/top/type">ethernet</div> 5 <div class="data" data-tag="type" data-xpath="/top/type">bridge</div> 7 <div class="data" data-tag="type" data-xpath="/top/type"> 18u</div> 9 <div class="data" data-tag="type" data-xpath="/top/type"> 24</div> 12 <div class="data" data-tag="address" data-xpath="/top/address">0x0</div> 14 <div class="data" data-tag="port" data-xpath="/top/port">1</div> 19 <div class="data" data-tag="address" data-xpath="/top/address">0x0</div> 21 <div class="data" data-tag="port" data-xpath="/top/port">1</div> 28 <div class="data" data-tag="port" data-xpath="/top/port">1</div> 37 <div class="data" data-tag="host" data-xpath="/top/host">my-box</div> [all …]
|
| H A D | test_09.HIPx.out | 7 <div class="data" data-tag="name" data-xpath="/top/data/contents/name">gum </div> 11 <div class="data" data-tag="name" data-xpath="/top/data/contents/name">rope </div> 15 <div class="data" data-tag="name" data-xpath="/top/data/contents/name">ladder </div> 19 <div class="data" data-tag="name" data-xpath="/top/data/contents/name">bolt </div> 23 <div class="data" data-tag="name" data-xpath="/top/data/contents/name">water </div> 35 <div class="data" data-tag="item" data-xpath="/top/data/contents/item">gum </div> 39 <div class="data" data-tag="item" data-xpath="/top/data/contents/item">rope </div> 85 <div class="data" data-tag="total" data-xpath="/top/data/contents/total">six</div> 88 <div class="data" data-tag="one" data-xpath="/top/data/contents/one">one</div> 89 <div class="data" data-tag="two" data-xpath="/top/data/contents/two">two</div> [all …]
|
| H A D | test_10.HIPx.out | 9 <div class="data effect-bold" data-tag="data" data-xpath="/top/data/data">bold</div> 11 …<div class="data effect-bold effect-underline" data-tag="data" data-xpath="/top/data/data">bold-ul… 17 <div class="data effect-underline" data-tag="data" data-xpath="/top/data/data">underline</div> 19 <div class="data" data-tag="data" data-xpath="/top/data/data">plain</div> 263 <div class="data" data-tag="item" data-xpath="/top/data/item">gum</div> 269 <div class="data" data-tag="item" data-xpath="/top/data/item">rope</div> 275 <div class="data" data-tag="item" data-xpath="/top/data/item">ladder</div> 281 <div class="data" data-tag="item" data-xpath="/top/data/item">bolt</div> 287 <div class="data" data-tag="item" data-xpath="/top/data/item">water</div> 306 <div class="data" data-tag="cost" data-xpath="/top/cost">425</div> [all …]
|
| /f-stack/tools/libxo/tests/gettext/saved/ |
| H A D | gt_01.HIPx.out | 3 <div class="data" data-tag="noun" data-xpath="/top/noun">ordsway</div> 7 <div class="data" data-tag="owner" data-xpath="/top/owner">ymay</div> 14 <div class="data" data-tag="noun" data-xpath="/top/noun">ordsway</div> 16 <div class="data" data-tag="owner" data-xpath="/top/owner">ymay</div> 23 <div class="data" data-tag="bytes" data-xpath="/top/bytes">0</div> 28 <div class="data" data-tag="bytes" data-xpath="/top/bytes">1</div> 33 <div class="data" data-tag="bytes" data-xpath="/top/bytes">2</div> 38 <div class="data" data-tag="bytes" data-xpath="/top/bytes">3</div> 43 <div class="data" data-tag="bytes" data-xpath="/top/bytes">4</div> 62 <div class="data" data-tag="time" data-xpath="/top/time">32</div> [all …]
|
| /f-stack/tools/libxo/tests/xo/ |
| H A D | xo_02.sh | 21 ${XOP} --top-wrap --open a/b/c "$@" 22 ${XOP} --top-wrap --close a/b/c --not-first "$@" 24 ${XOP} --top-wrap --wrap a/b/c "$@" 26 ${XOP} --top-wrap --open a/b/c "$@" 28 ${XOP} --top-wrap --close a/b/c --not-first "$@" 32 ${XOP} --top-wrap --wrap a/b/c "$@" 34 ${XOP} --top-wrap "test\n" 41 ${XOP} --top-wrap --open top/data 44 ${XOP} --top-wrap --close top/data
|
| /f-stack/freebsd/crypto/aesni/ |
| H A D | aesni_wrap.c | 115 struct blocks8 *top; in aesni_encrypt_ecb() local 126 top->blk[0] = tout[0]; in aesni_encrypt_ecb() 127 top->blk[1] = tout[1]; in aesni_encrypt_ecb() 128 top->blk[2] = tout[2]; in aesni_encrypt_ecb() 129 top->blk[3] = tout[3]; in aesni_encrypt_ecb() 130 top->blk[4] = tout[4]; in aesni_encrypt_ecb() 131 top->blk[5] = tout[5]; in aesni_encrypt_ecb() 155 struct blocks8 *top; in aesni_decrypt_ecb() local 216 struct blocks8 *top; in aesni_encrypt_icm() local 333 __m128i *top; in aesni_crypt_xts_block8() local [all …]
|
| /f-stack/freebsd/kern/ |
| H A D | subr_smp.c | 682 top, top->cg_count, mp_ncpus); in smp_topo() 685 top, cpusetobj_strprint(cpusetbuf, &top->cg_mask), in smp_topo() 693 top = &top->cg_child[0]; in smp_topo() 696 return (top); in smp_topo() 715 top = &group[0]; in smp_topo_none() 724 return (top); in smp_topo_none() 775 return (top); in smp_topo_1level() 804 return (top); in smp_topo_2level() 816 cg = top; in smp_topo_find() 1174 while (node != top && (node = node->parent) != top) in topo_next_node() [all …]
|
| /f-stack/dpdk/drivers/net/bnxt/tf_core/ |
| H A D | stack.c | 24 st->top = STACK_EMPTY; in stack_init() 43 return st->top + 1; in stack_size() 51 return st->top == STACK_EMPTY; in stack_is_empty() 59 return st->top == st->max - 1; in stack_is_full() 72 st->items[++st->top] = x; in stack_push() 86 *x = st->items[st->top]; in stack_pop() 87 st->top--; in stack_pop() 98 printf("top=%d\n", st->top); in stack_dump() 101 if (st->top == -1) { in stack_dump()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/arm/amlogic/ |
| H A D | analog-top.txt | 1 Amlogic Meson8 and Meson8b "analog top" registers: 4 The analog top registers contain information about the so-called 8 - reg: the register range of the analog top registers 10 - "amlogic,meson8-analog-top" 11 - "amlogic,meson8b-analog-top" 17 analog_top: analog-top@81a8 { 18 compatible = "amlogic,meson8-analog-top", "syscon";
|
| /f-stack/tools/libxo/xohtml/ |
| H A D | xohtml.css | 37 padding-top: 10px; 58 padding-top: 40px; 65 margin-top: 10px; 150 margin-top: 4px; 151 padding-top: 4px; 159 padding-top: 4px; 377 div#input-top { 432 div#target-top, 433 div#command-top { 468 div#output-top { [all …]
|
| /f-stack/tools/libxo/tests/xo/saved/ |
| H A D | xo_01.HIPx.out | 3 <div class="data" data-tag="name" data-xpath="/top/item/name">one</div> 7 <div class="data" data-tag="value" data-xpath="/top/item[name = 'one']/value">001</div> 12 <div class="data" data-tag="color" data-xpath="/top/item[name = 'one']/color">red</div> 16 <div class="data" data-tag="name" data-xpath="/top/item/name">two</div> 20 <div class="data" data-tag="value" data-xpath="/top/item[name = 'two']/value">002</div> 25 <div class="data" data-tag="color" data-xpath="/top/item[name = 'two']/color">blue</div> 29 <div class="data" data-tag="name" data-xpath="/top/item/name">three</div> 33 <div class="data" data-tag="value" data-xpath="/top/item[name = 'three']/value">003</div> 38 <div class="data" data-tag="color" data-xpath="/top/item[name = 'three']/color">green</div> 42 <div class="data" data-tag="name" data-xpath="/top/item/name">four</div> [all …]
|
| /f-stack/dpdk/lib/librte_stack/ |
| H A D | rte_stack_lf_c11.h | 50 new_head.top = first; in __rte_stack_lf_push_elems() 53 last->next = old_head.top; in __rte_stack_lf_push_elems() 115 rte_prefetch0(old_head.top); in __rte_stack_lf_pop_elems() 117 tmp = old_head.top; in __rte_stack_lf_pop_elems() 141 new_head.top = tmp; in __rte_stack_lf_pop_elems() 166 return old_head.top; in __rte_stack_lf_pop_elems()
|
| H A D | rte_stack_lf_generic.h | 57 new_head.top = first; in __rte_stack_lf_push_elems() 60 last->next = old_head.top; in __rte_stack_lf_push_elems() 110 rte_prefetch0(old_head.top); in __rte_stack_lf_pop_elems() 112 tmp = old_head.top; in __rte_stack_lf_pop_elems() 134 new_head.top = tmp; in __rte_stack_lf_pop_elems() 146 return old_head.top; in __rte_stack_lf_pop_elems()
|
| /f-stack/tools/libxo/doc/ |
| H A D | xo.rst | 49 <top> 57 </top> 60 "top": { 84 <top> 88 </top> 91 "top": { 113 xo --top-wrap --open top/data 116 xo --top-wrap --close top/data 131 <top> 136 </top> [all …]
|