Home
last modified time | relevance | path

Searched refs:scope_size (Results 1 – 20 of 20) sorted by relevance

/dports/lang/v8/v8-9.6.180.12/test/debugger/debug/harmony/
H A Dmodules-debug-scopes2.mjs96 var scope_size = scope.scopeObject().properties().length;
98 scope_size--;
102 scope_size--;
107 if (scope_size < minimum_count) {
114 assertTrue(scope_size >= minimum_count);
H A Dmodules-debug-scopes1.mjs118 var scope_size = scope.scopeObject().properties().length;
120 scope_size--;
124 scope_size--;
129 if (scope_size < minimum_count) {
136 assertTrue(scope_size >= minimum_count);
/dports/devel/efl/efl-1.25.1/src/bin/eolian_mono/eolian/mono/
H A Ddocumentation.hh40 int scope_size = 0; member
42 documentation_generator(int scope_size = 0) in documentation_generator()
43 : scope_size(scope_size) {} in documentation_generator()
457 …if (!as_generator(scope_tab(scope_size) << "/// ").generate(sink, attributes::unused, context)) re… in generate_tag()
510 …if (!as_generator(scope_tab(scope_size) << "/// ").generate(sink, attributes::unused, context)) re… in generate_tag_example()
583 if (!(as_generator(scope_tab(scope_size) << "/// ") in generate_tuple_parameters_doc()
587 << scope_tab(scope_size) << "/// " in generate_tuple_parameters_doc()
590 && as_generator("\n" << scope_tab(scope_size) << "/// ") in generate_tuple_parameters_doc()
616 && as_generator("\n" << scope_tab(scope_size) << "/// ") in generate_tuple_parameters_doc()
653 as_generator(scope_tab(scope_size) << "/// ") in generate()
[all …]
/dports/math/libpgmath/flang-d07daf3/tools/flang1/flang1exe/
H A Dscopestack.c45 sem.scope_size = 10; in scopestack_init()
46 NEW(sem.scope_stack, SCOPESTACK, sem.scope_size); in scopestack_init()
74 if (level < 0 || level >= sem.scope_size) { in get_scope()
448 NEED(sem.scope_level + 1, sem.scope_stack, SCOPESTACK, sem.scope_size, in push_scope()
449 sem.scope_size + 10); in push_scope()
487 if (sl < 0 || sl >= sem.scope_size) { in dump_one_scope()
H A Dsemant.h1217 int scope_size; /* size of scope stack */ member
H A Dsemfin.c3625 NEED(sem.scope_level + 1, sem.scope_stack, SCOPESTACK, sem.scope_size, in rw_semant_state()
H A Dinterf.c801 if (l->use_module->sl >= sem.scope_size) { in update_list_exceptions()
/dports/mail/dovecot-pigeonhole/dovecot-2.3-pigeonhole-0.5.17/src/lib-sieve/plugins/variables/
H A Dext-variables-common.c336 unsigned int i, scope_size; in sieve_variable_scope_binary_dump() local
342 if (!sieve_binary_read_unsigned(denv->sblock, address, &scope_size)) in sieve_variable_scope_binary_dump()
356 scope_size, (unsigned int)(pc + end_offset)); in sieve_variable_scope_binary_dump()
358 for (i = 0; i < scope_size; i++) { in sieve_variable_scope_binary_dump()
407 unsigned int scope_size, max_scope_size; in sieve_variable_scope_binary_read() local
414 if (!sieve_binary_read_unsigned(sblock, address, &scope_size)) { in sieve_variable_scope_binary_read()
422 if (scope_size > max_scope_size) { in sieve_variable_scope_binary_read()
425 ext_name, scope_size, max_scope_size); in sieve_variable_scope_binary_read()
441 scpbin->size = scope_size; in sieve_variable_scope_binary_read()
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/analyzers/
H A Drainbowanalyzer.cpp104 const int scope_size = s.size() / 2; in analyze() local
119 const int samples_per_band = scope_size / kRainbowBands; in analyze()
/dports/audio/strawberry/strawberry-1.0.0/src/analyzer/
H A Drainbowanalyzer.cpp114 const int scope_size = static_cast<int>(s.size() / 2);
128 const int samples_per_band = scope_size / kRainbowBands;
/dports/databases/pymongo/pymongo-3.12.0/bson/
H A D_cbsonmodule.c2336 uint32_t scope_size; local
2372 memcpy(&scope_size, buffer + *position, 4);
2373 scope_size = BSON_UINT32_FROM_LE(scope_size);
2374 if (scope_size < BSON_MIN_SIZE) {
2379 if ((4 + code_size + 4 + scope_size) != c_w_s_size) {
2385 if (buffer[*position + scope_size - 1]) {
2389 scope_size - 5, options);
2394 *position += scope_size;
/dports/graphics/art/ART-1.9.3/rtgui/
H A Dhistogrampanel.cc2024 const float scope_size = (vectorscope_scale > 0) ? in drawVectorscope() local
2030 const double line_length = scope_size / 2.0; in drawVectorscope()
2065 cr->arc(0, 0, scope_size / 2.0, 0, 2 * RT_PI); in drawVectorscope()
2070 cr->arc(0, 0, i * scope_size / 8.0, 0, 2 * RT_PI); in drawVectorscope()
2108 cr->arc(0, 0, i * scope_size / 8.0, 0, 2 * RT_PI); in drawVectorscope()
2138 cx = (w + scope_size * S * std::cos(H * 2 * RT_PI_F)) / 2; in drawVectorscope()
2139 cy = (h - scope_size * S * std::sin(H * 2 * RT_PI_F)) / 2; in drawVectorscope()
2142 cx = w / 2.f + scope_size * pointer_a * ab_factor; in drawVectorscope()
2143 cy = h / 2.f - scope_size * pointer_b * ab_factor; in drawVectorscope()
/dports/devel/cc65/cc65-2.19/src/dbginfo/
H A Ddbginfo.h454 cc65_size scope_size; /* Size of scope, 0 if unknown */ member
H A Ddbgsh.c710 PrintSize (D->scope_size, 8); in PrintScopes()
H A Ddbginfo.c1589 D->scope_size = S->Size; in CopyScopeInfo()
/dports/math/libpgmath/flang-d07daf3/tools/flang2/flang2exe/
H A Dsemant.h661 int scope_size; /* size of scope stack */ member
/dports/lang/quickjs/quickjs-2021-03-27/
H A Dquickjs.c20009 int scope_size; /* allocated size of fd->scopes array */ member
21784 if ((fd->scope_count + 1) > fd->scope_size) { in push_scope()
21789 new_size = max_int(fd->scope_count + 1, fd->scope_size * 3 / 2); in push_scope()
21802 fd->scope_size = new_size; in push_scope()
28757 fd->scope_size = countof(fd->def_scope_array); in js_new_function_def()
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/quickjs/
H A Dquickjs.c19466 int scope_size; /* allocated size of fd->scopes array */ member
20976 if ((fd->scope_count + 1) > fd->scope_size) { in push_scope()
20981 new_size = max_int(fd->scope_count + 1, fd->scope_size * 3 / 2); in push_scope()
20994 fd->scope_size = new_size; in push_scope()
27677 fd->scope_size = countof(fd->def_scope_array); in js_new_function_def()
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/quickjs/
H A Dquickjs.c19468 int scope_size; /* allocated size of fd->scopes array */ member
20978 if ((fd->scope_count + 1) > fd->scope_size) { in push_scope()
20983 new_size = max_int(fd->scope_count + 1, fd->scope_size * 3 / 2); in push_scope()
20996 fd->scope_size = new_size; in push_scope()
27679 fd->scope_size = countof(fd->def_scope_array); in js_new_function_def()
/dports/games/warzone2100/warzone2100/3rdparty/quickjs/
H A Dquickjs.c20056 int scope_size; /* allocated size of fd->scopes array */ member
21831 if ((fd->scope_count + 1) > fd->scope_size) { in push_scope()
21836 new_size = max_int(fd->scope_count + 1, fd->scope_size * 3 / 2); in push_scope()
21849 fd->scope_size = new_size; in push_scope()
28804 fd->scope_size = countof(fd->def_scope_array); in js_new_function_def()