Home
last modified time | relevance | path

Searched refs:start_value (Results 1 – 25 of 3769) sorted by relevance

12345678910>>...151

/dports/deskutils/pal/pal-0.4.3/src/convert/
H A Dical2pal.c50 struct icaltimetype start_value = icalcomponent_get_dtstart(vevent); in output_pal_from_ical() local
53 struct icaldurationtype duration = icaltime_subtract(end_value, start_value); in output_pal_from_ical()
67 start_value.year, start_value.month, start_value.day, in output_pal_from_ical()
74 start_value.hour, start_value.minute, in output_pal_from_ical()
94 printf("%04i%02i%02i%s ", start_value.year, start_value.month, start_value.day, startstop); in output_pal_from_ical()
107 printf("0000%02i%02i ", start_value.month, start_value.day); in output_pal_from_ical()
171 printf("*%02i%1i%i%s ", start_value.month, n, weekday, startstop); in output_pal_from_ical()
177 printf("*%02iL%i%s ", start_value.month, weekday, startstop); in output_pal_from_ical()
194 printf("000000%02i%s %s %s\n", start_value.day, startstop, summary_text, time); in output_pal_from_ical()
252 printf("*%02i%1i%i%s ", start_value.month, n, weekday, startstop); in output_pal_from_ical()
[all …]
/dports/math/mathomatic/mathomatic-ceb0861/primes/
H A Dmatho-primes.c167 start_value = -1.0; in main()
215 if (start_value < 0) in main()
216 start_value = 0; in main()
249 if (start_value < 0) in main()
250 start_value = 0; in main()
278 if (start_value < 0) in main()
279 start_value = 0; in main()
298 if (start_value < 0.0) { in main()
308 start_value = 0; in main()
383 d -= start_value; in elim_factor()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/torque/
H A Dinstance-type-generator.cc111 int SelectOwnValues(InstanceTypeTree* root, int start_value) { in SelectOwnValues() argument
113 root->value = start_value; in SelectOwnValues()
114 } else if (root->value < start_value) { in SelectOwnValues()
142 std::unique_ptr<InstanceTypeTree> root, int start_value, in SolveInstanceTypeConstraints() argument
144 if (root->start < start_value) { in SolveInstanceTypeConstraints()
214 start_value = SelectOwnValues(root.get(), start_value); in SolveInstanceTypeConstraints()
226 start_value = SolveInstanceTypeConstraints( in SolveInstanceTypeConstraints()
227 std::move(it->second), start_value, &root->children); in SolveInstanceTypeConstraints()
239 start_value = SelectOwnValues(root.get(), start_value); in SolveInstanceTypeConstraints()
252 root->end = start_value - 1; in SolveInstanceTypeConstraints()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/torque/
H A Dinstance-type-generator.cc111 int SelectOwnValues(InstanceTypeTree* root, int start_value) { in SelectOwnValues() argument
113 root->value = start_value; in SelectOwnValues()
114 } else if (root->value < start_value) { in SelectOwnValues()
142 std::unique_ptr<InstanceTypeTree> root, int start_value, in SolveInstanceTypeConstraints() argument
144 if (root->start < start_value) { in SolveInstanceTypeConstraints()
214 start_value = SelectOwnValues(root.get(), start_value); in SolveInstanceTypeConstraints()
226 start_value = SolveInstanceTypeConstraints( in SolveInstanceTypeConstraints()
227 std::move(it->second), start_value, &root->children); in SolveInstanceTypeConstraints()
239 start_value = SelectOwnValues(root.get(), start_value); in SolveInstanceTypeConstraints()
252 root->end = start_value - 1; in SolveInstanceTypeConstraints()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/torque/
H A Dinstance-type-generator.cc111 int SelectOwnValues(InstanceTypeTree* root, int start_value) { in SelectOwnValues() argument
113 root->value = start_value; in SelectOwnValues()
114 } else if (root->value < start_value) { in SelectOwnValues()
142 std::unique_ptr<InstanceTypeTree> root, int start_value, in SolveInstanceTypeConstraints() argument
144 if (root->start < start_value) { in SolveInstanceTypeConstraints()
214 start_value = SelectOwnValues(root.get(), start_value); in SolveInstanceTypeConstraints()
226 start_value = SolveInstanceTypeConstraints( in SolveInstanceTypeConstraints()
227 std::move(it->second), start_value, &root->children); in SolveInstanceTypeConstraints()
239 start_value = SelectOwnValues(root.get(), start_value); in SolveInstanceTypeConstraints()
252 root->end = start_value - 1; in SolveInstanceTypeConstraints()
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/share/extensions/
H A Dinterp_att_g.py63 start_value = inkex.Color(self.options.start_val)
67 (end_value[v] - start_value[v]) / float(total - 1)
70 return start_value, color_inc
74 start_value = self.options.start_val.replace(",", ".")
79 start_value = self.svg.unittouu(start_value + unit)
83 start_value = float(start_value)
87 _("Bad values for a number field: {}, {}.".format(start_value, end_value)))
90 val_inc = (end_value - start_value) / float(total - 1)
91 return start_value, val_inc
/dports/misc/urh/urh-2.9.2/src/urh/util/
H A DGenericCRC.py44 ("CRC8 NRSC-5", dict(polynomial="0x31", start_value=1)),
66 self.start_value = self.__read_parameter(start_value)
142 array.array("B", self.start_value),
177 if len(self.start_value) < self.poly_order - 1:
254 if isinstance(start_value, int):
255 self.start_value = array.array("B", [start_value] * (self.poly_order - 1))
256 elif isinstance(start_value, array.array) and len(start_value) == self.poly_order - 1:
257 self.start_value = start_value
292 self.start_value = [val != 0] * (poly_order - 1)
483 start_value = tag.get("start_value", "0000")
[all …]
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/
H A Dram.c39 static int start_value = 0; variable
48 start_value = val; in set_start_value()
49 if (start_value < 0) { in set_start_value()
50 start_value = 0; in set_start_value()
52 if (start_value > 0xff) { in set_start_value()
53 start_value = 0xff; in set_start_value()
74 &start_value, set_start_value, NULL },
116 uint8_t v = start_value; in ram_init()
/dports/archivers/rvm/rvm-1.11/
H A Dtest-timer.cc99 timer::value_type start_value; in test3() local
111 assert(t.start_value() == base_value); in test3()
126 assert(t.start_value() == base_value); in test3()
141 assert(t.start_value() == base_value); in test3()
156 assert(t.start_value() == base_value); in test3()
171 assert(t.start_value() == base_value); in test3()
207 start_value = base_value; in test3()
209 t.assign(start_value, stop_value); in test3()
248 assert(t.start_value() == start_value); in test3()
284 start_value = base_value; in test3()
[all …]
/dports/games/emptyepsilon/EmptyEpsilon-EE-2021.06.23/src/screenComponents/
H A DsnapSlider.cpp3 …r(GuiContainer* owner, string id, float min_value, float max_value, float start_value, func_t func) in GuiSnapSlider() argument
4 : GuiSlider(owner, id, min_value, max_value, start_value, func), snap_value(start_value) in GuiSnapSlider()
18 …, string id, sf::Vector2f min_value, sf::Vector2f max_value, sf::Vector2f start_value, func_t func) in GuiSnapSlider2D() argument
19 : GuiSlider2D(owner, id, min_value, max_value, start_value, func), snap_value(start_value) in GuiSnapSlider2D()
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/arb_shader_atomic_counters/
H A Dunique-id.c48 check(int dx, int dy, uint32_t start_value, uint32_t end_value) in check() argument
50 const uint32_t base = MIN2(start_value, end_value); in check()
51 const uint32_t size = MAX2(start_value, end_value) - base; in check()
87 run_test_vertex(const char *op, uint32_t start_value, uint32_t end_value) in run_test_vertex() argument
118 atomic_counters_draw_rect(prog, 1, &start_value) && in run_test_vertex()
119 check(L - 1, L - 1, start_value, end_value); in run_test_vertex()
127 run_test_fragment(const char *op, uint32_t start_value, uint32_t end_value) in run_test_fragment() argument
155 atomic_counters_draw_rect(prog, 1, &start_value) && in run_test_fragment()
156 check(1, 1, start_value, end_value); in run_test_fragment()
/dports/math/gnumeric/gnumeric-1.12.50/src/tools/
H A Dfill-series.c48 gnm_float start = info->start_value; in do_row_filling_wday()
75 gnm_float start = info->start_value; in do_column_filling_wday()
103 gnm_float start = info->start_value; in do_row_filling_month()
122 gnm_float start = info->start_value; in do_column_filling_month()
141 gnm_float start = info->start_value; in do_row_filling_year()
160 gnm_float start = info->start_value; in do_column_filling_year()
179 gnm_float start = info->start_value; in do_row_filling_linear()
192 gnm_float start = info->start_value; in do_column_filling_linear()
328 /info->start_value))/ in fill_series_adjust_variables()
340 - info->start_value)/ in fill_series_adjust_variables()
[all …]
/dports/security/py-ospd/ospd-21.4.4/ospd/
H A Dnetwork.py88 start_value = int(binascii.hexlify(_start_value), 16)
90 start_value = 0
94 if end_value < 0 or end_value > 255 or end_value < start_value:
119 start_value = (start_value << (32 - block)) + 1
121 end_value = (start_value | (0xFFFFFFFF >> block)) - 1
123 start_packed = struct.pack('!I', start_value)
146 start_value = (start_value << (128 - block)) + 1
148 end_value = (start_value | (int('ff' * 16, 16) >> block)) - 1
150 high = start_value >> 64
151 low = start_value & ((1 << 64) - 1)
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc38 int start_value = (buffer_number * size) % SCHAR_MAX; in VerifyBuffer() local
40 if (buffer[i] != (i + start_value) % SCHAR_MAX) { in VerifyBuffer()
57 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
59 buffer[i] = (i + start_value) % SCHAR_MAX; in ACTION_P2()
67 int start_value = (iteration * size) % SCHAR_MAX; in UpdateInputBuffer() local
69 buffer[i] = (i + start_value) % SCHAR_MAX; in UpdateInputBuffer()
80 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
82 EXPECT_EQ(buffer[i], (i + start_value) % SCHAR_MAX); in ACTION_P2()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc38 int start_value = (buffer_number * size) % SCHAR_MAX; in VerifyBuffer() local
40 if (buffer[i] != (i + start_value) % SCHAR_MAX) { in VerifyBuffer()
57 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
59 buffer[i] = (i + start_value) % SCHAR_MAX; in ACTION_P2()
67 int start_value = (iteration * size) % SCHAR_MAX; in UpdateInputBuffer() local
69 buffer[i] = (i + start_value) % SCHAR_MAX; in UpdateInputBuffer()
80 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
82 EXPECT_EQ(buffer[i], (i + start_value) % SCHAR_MAX); in ACTION_P2()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc38 int start_value = (buffer_number * size) % SCHAR_MAX; in VerifyBuffer() local
40 if (buffer[i] != (i + start_value) % SCHAR_MAX) { in VerifyBuffer()
57 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
59 buffer[i] = (i + start_value) % SCHAR_MAX; in ACTION_P2()
67 int start_value = (iteration * size) % SCHAR_MAX; in UpdateInputBuffer() local
69 buffer[i] = (i + start_value) % SCHAR_MAX; in UpdateInputBuffer()
80 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
82 EXPECT_EQ(buffer[i], (i + start_value) % SCHAR_MAX); in ACTION_P2()
/dports/games/frogatto/frogatto-1.3.1/src/
H A Dsegment_editor_dialog.cpp35 const int start_value = start.as_int(); in init() local
37 …add_widget(widget_ptr(new label(formatter() << "Difficulty: " << start_value, graphics::color_whit… in init()
40 …())), boost::bind(&segment_editor_dialog::set_segment_start_difficulty, this, start_value - 10)))); in init()
41 …())), boost::bind(&segment_editor_dialog::set_segment_start_difficulty, this, start_value - 1)))); in init()
42 …())), boost::bind(&segment_editor_dialog::set_segment_start_difficulty, this, start_value + 1)))); in init()
43 …))), boost::bind(&segment_editor_dialog::set_segment_start_difficulty, this, start_value + 10)))); in init()
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/sys_vars/r/
H A Dmax_connections_basic.result1 SET @start_value = @@global.max_connections;
2 SELECT @start_value > 0;
3 @start_value > 0
6 SET @@global.max_connections = @start_value+1;
8 SELECT @@global.max_connections <> @start_value+1;
9 @@global.max_connections <> @start_value+1
12 SET @@global.max_connections = @start_value;
13 SELECT @@global.max_connections = @start_value;
14 @@global.max_connections = @start_value
133 SET @@global.max_connections = @start_value;
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/sys_vars/r/
H A Dmax_connections_basic.result1 SET @start_value = @@global.max_connections;
2 SELECT @start_value > 0;
3 @start_value > 0
6 SET @@global.max_connections = @start_value+1;
8 SELECT @@global.max_connections <> @start_value+1;
9 @@global.max_connections <> @start_value+1
12 SET @@global.max_connections = @start_value;
13 SELECT @@global.max_connections = @start_value;
14 @@global.max_connections = @start_value
133 SET @@global.max_connections = @start_value;
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/sys_vars/r/
H A Dmax_connections_basic.result1 SET @start_value = @@global.max_connections;
2 SELECT @start_value > 0;
3 @start_value > 0
6 SET @@global.max_connections = @start_value+1;
8 SELECT @@global.max_connections <> @start_value+1;
9 @@global.max_connections <> @start_value+1
12 SET @@global.max_connections = @start_value;
13 SELECT @@global.max_connections = @start_value;
14 @@global.max_connections = @start_value
133 SET @@global.max_connections = @start_value;
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/suite/sys_vars/r/
H A Dmax_connections_basic.result1 SET @start_value = @@global.max_connections;
2 SELECT @start_value > 0;
3 @start_value > 0
6 SET @@global.max_connections = @start_value+1;
8 SELECT @@global.max_connections <> @start_value+1;
9 @@global.max_connections <> @start_value+1
12 SET @@global.max_connections = @start_value;
13 SELECT @@global.max_connections = @start_value;
14 @@global.max_connections = @start_value
133 SET @@global.max_connections = @start_value;
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/sys_vars/r/
H A Dmax_connections_basic.result1 SET @start_value = @@global.max_connections;
2 SELECT @start_value > 0;
3 @start_value > 0
6 SET @@global.max_connections = @start_value+1;
8 SELECT @@global.max_connections <> @start_value+1;
9 @@global.max_connections <> @start_value+1
12 SET @@global.max_connections = @start_value;
13 SELECT @@global.max_connections = @start_value;
14 @@global.max_connections = @start_value
133 SET @@global.max_connections = @start_value;
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/suite/sys_vars/r/
H A Dmax_connections_basic.result1 SET @start_value = @@global.max_connections;
2 SELECT @start_value > 0;
3 @start_value > 0
6 SET @@global.max_connections = @start_value+1;
8 SELECT @@global.max_connections <> @start_value+1;
9 @@global.max_connections <> @start_value+1
12 SET @@global.max_connections = @start_value;
13 SELECT @@global.max_connections = @start_value;
14 @@global.max_connections = @start_value
133 SET @@global.max_connections = @start_value;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc41 int start_value = (buffer_number * size) % SCHAR_MAX; in VerifyBuffer() local
43 if (buffer[i] != (i + start_value) % SCHAR_MAX) { in VerifyBuffer()
59 int start_value = (iteration * samples_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
61 buffer[i] = (i + start_value) % SCHAR_MAX; in ACTION_P2()
70 int start_value = (iteration * size) % SCHAR_MAX; in UpdateInputBuffer() local
72 buffer[i] = (i + start_value) % SCHAR_MAX; in UpdateInputBuffer()
82 int start_value = (iteration * samples_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
84 EXPECT_EQ(buffer[i], (i + start_value) % SCHAR_MAX); in ACTION_P2()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc41 int start_value = (buffer_number * size) % SCHAR_MAX; in VerifyBuffer() local
43 if (buffer[i] != (i + start_value) % SCHAR_MAX) { in VerifyBuffer()
59 int start_value = (iteration * samples_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
61 buffer[i] = (i + start_value) % SCHAR_MAX; in ACTION_P2()
70 int start_value = (iteration * size) % SCHAR_MAX; in UpdateInputBuffer() local
72 buffer[i] = (i + start_value) % SCHAR_MAX; in UpdateInputBuffer()
82 int start_value = (iteration * samples_per_10_ms) % SCHAR_MAX; in ACTION_P2() local
84 EXPECT_EQ(buffer[i], (i + start_value) % SCHAR_MAX); in ACTION_P2()

12345678910>>...151