Home
last modified time | relevance | path

Searched refs:step (Results 1 – 22 of 22) sorted by relevance

/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_heap_hashstring.c90 duk_size_t step; in duk_heap_hashstring() local
106 step = (len >> DUK_USE_STRHASH_SKIP_SHIFT) + 1; in duk_heap_hashstring()
107 for (off = len; off >= step; off -= step) { in duk_heap_hashstring()
Dduk_heap_stringtable.c496 duk_uint32_t step; local
505 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(h));
544 i = (i + step) % size;
557 duk_uint32_t step; local
562 step = DUK__HASH_PROBE_STEP(strhash);
577 (long) i, (long) step, (long) size));
582 (long) i, (long) step, (long) size));
583 i = (i + step) % size;
597 duk_uint32_t step; local
608 step = DUK__HASH_PROBE_STEP(hash);
[all …]
Dduk_hobject_props.c828 duk_uint32_t j, step; in duk__realloc_props() local
832 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(key)); in duk__realloc_props()
841 DUK_DDD(DUK_DDDPRINT("rebuild miss %ld, step %ld", (long) j, (long) step)); in duk__realloc_props()
842 j = (j + step) % new_h_size; in duk__realloc_props()
1140 duk_uint32_t i, step; in duk_hobject_find_existing_entry() local
1148 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(key)); in duk_hobject_find_existing_entry()
1176 i = (i + step) % n; in duk_hobject_find_existing_entry()
1285 duk_uint32_t i, step; in duk__alloc_entry_checked() local
1290 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(key)); in duk__alloc_entry_checked()
1305 i = (i + step) % n; in duk__alloc_entry_checked()
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_heap_hashstring.c90 duk_size_t step; in duk_heap_hashstring() local
106 step = (len >> DUK_USE_STRHASH_SKIP_SHIFT) + 1; in duk_heap_hashstring()
107 for (off = len; off >= step; off -= step) { in duk_heap_hashstring()
Dduk_heap_stringtable.c496 duk_uint32_t step; local
505 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(h));
544 i = (i + step) % size;
557 duk_uint32_t step; local
562 step = DUK__HASH_PROBE_STEP(strhash);
577 (long) i, (long) step, (long) size));
582 (long) i, (long) step, (long) size));
583 i = (i + step) % size;
597 duk_uint32_t step; local
608 step = DUK__HASH_PROBE_STEP(hash);
[all …]
Dduk_hobject_props.c821 duk_uint32_t j, step; in duk__realloc_props() local
825 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(key)); in duk__realloc_props()
834 DUK_DDD(DUK_DDDPRINT("rebuild miss %ld, step %ld", (long) j, (long) step)); in duk__realloc_props()
835 j = (j + step) % new_h_size; in duk__realloc_props()
1145 duk_uint32_t i, step; in duk_hobject_find_existing_entry() local
1153 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(key)); in duk_hobject_find_existing_entry()
1181 i = (i + step) % n; in duk_hobject_find_existing_entry()
1290 duk_uint32_t i, step; in duk__alloc_entry_checked() local
1295 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(key)); in duk__alloc_entry_checked()
1310 i = (i + step) % n; in duk__alloc_entry_checked()
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dlstring.c78 size_t step = (l>>5)+1; /* if string is too long, don't hash all its chars */ in luaS_newlstr() local
80 for (l1=l; l1>=step; l1-=step) /* compute hash */ in luaS_newlstr()
Dlvm.c655 lua_Number step = nvalue(ra+2); in luaV_execute() local
656 lua_Number idx = luai_numadd(nvalue(ra), step); /* increment index */ in luaV_execute()
658 if (luai_numlt(0, step) ? luai_numle(idx, limit) in luaV_execute()
/civetweb-2.7.6/test/
Dpage.lua82 stmt:step()
99 while stmt:step() == sqlite3.ROW do
Dpage.lp70 while stmt:step() == sqlite3.ROW do
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlstring.c54 size_t step = (l >> LUAI_HASHLIMIT) + 1; in luaS_hash() local
55 for (l1 = l; l1 >= step; l1 -= step) in luaS_hash()
Dlvm.c768 lua_Number step = nvalue(ra+2); in luaV_execute()
769 lua_Number idx = luai_numadd(L, nvalue(ra), step); /* increment index */ in luaV_execute()
771 if (luai_numlt(L, 0, step) ? luai_numle(L, idx, limit) in luaV_execute()
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlstring.c51 size_t step = (l >> LUAI_HASHLIMIT) + 1; in luaS_hash() local
52 for (; l >= step; l -= step) in luaS_hash()
Dlvm.c135 static int forlimit (const TValue *obj, lua_Integer *p, lua_Integer step, in forlimit() argument
138 if (!luaV_tointeger(obj, p, (step < 0 ? 2 : 1))) { /* not fit in integer? */ in forlimit()
144 if (step < 0) *stopnow = 1; in forlimit()
148 if (step >= 0) *stopnow = 1; in forlimit()
1192 lua_Integer step = ivalue(ra + 2); in luaV_execute() local
1193 lua_Integer idx = intop(+, ivalue(ra), step); /* increment index */ in luaV_execute()
1195 if ((0 < step) ? (idx <= limit) : (limit <= idx)) { in luaV_execute()
1202 lua_Number step = fltvalue(ra + 2); in luaV_execute() local
1203 lua_Number idx = luai_numadd(L, fltvalue(ra), step); /* inc. index */ in luaV_execute()
1205 if (luai_numlt(0, step) ? luai_numle(idx, limit) in luaV_execute()
/civetweb-2.7.6/src/third_party/lua-5.1.5/
DINSTALL29 If you want to build and install Lua in one step, do "make xxx install",
/civetweb-2.7.6/examples/_obsolete/docroot/
Djquery.js139 …x.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);…
140step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.sty…
141 …le(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J… method in c.fx
144 c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:…
/civetweb-2.7.6/test/ajax/
Djquery.js2step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.s…
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-noline/
Dduktape.c41848 duk_size_t step; local
41864 step = (len >> DUK_USE_STRHASH_SKIP_SHIFT) + 1;
41865 for (off = len; off >= step; off -= step) {
45170 duk_uint32_t step; local
45179 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(h));
45218 i = (i + step) % size;
45231 duk_uint32_t step; local
45236 step = DUK__HASH_PROBE_STEP(strhash);
45251 (long) i, (long) step, (long) size));
45256 (long) i, (long) step, (long) size));
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src/
Dduktape.c42161 duk_size_t step; local
42177 step = (len >> DUK_USE_STRHASH_SKIP_SHIFT) + 1;
42178 for (off = len; off >= step; off -= step) {
45518 duk_uint32_t step; local
45527 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(h));
45566 i = (i + step) % size;
45579 duk_uint32_t step; local
45584 step = DUK__HASH_PROBE_STEP(strhash);
45599 (long) i, (long) step, (long) size));
45604 (long) i, (long) step, (long) size));
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src/
Dduktape.c41939 duk_size_t step; local
41955 step = (len >> DUK_USE_STRHASH_SKIP_SHIFT) + 1;
41956 for (off = len; off >= step; off -= step) {
45267 duk_uint32_t step; local
45276 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(h));
45315 i = (i + step) % size;
45328 duk_uint32_t step; local
45333 step = DUK__HASH_PROBE_STEP(strhash);
45348 (long) i, (long) step, (long) size));
45353 (long) i, (long) step, (long) size));
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-noline/
Dduktape.c42070 duk_size_t step; local
42086 step = (len >> DUK_USE_STRHASH_SKIP_SHIFT) + 1;
42087 for (off = len; off >= step; off -= step) {
45421 duk_uint32_t step; local
45430 step = DUK__HASH_PROBE_STEP(DUK_HSTRING_GET_HASH(h));
45469 i = (i + step) % size;
45482 duk_uint32_t step; local
45487 step = DUK__HASH_PROBE_STEP(strhash);
45502 (long) i, (long) step, (long) size));
45507 (long) i, (long) step, (long) size));
[all …]
/civetweb-2.7.6/src/third_party/
Dsqlite3.c112163 int (*step)(sqlite3_stmt*);
112447 #define sqlite3_step sqlite3_api->step