Home
last modified time | relevance | path

Searched refs:loop_value (Results 1 – 25 of 54) sorted by relevance

123

/dports/lang/rust/rustc-1.58.1-src/src/test/ui/
H A Dbreak-diverging-value.rs4 let loop_value = loop { break return 0 }; // ok in loop_break_return() localVariable
8 let loop_value = loop { break loop {} }; // ok in loop_break_loop() localVariable
12 let loop_value = loop { break break }; in loop_break_break() localVariable
16 let loop_value = loop { break { return 0; () } }; // ok in loop_break_return_2() localVariable
26 let loop_value = loop { break get_void() }; in loop_break_void() localVariable
34 let loop_value = loop { break get_never() }; // ok in loop_break_never() localVariable
/dports/audio/gsequencer/gsequencer-3.10.4/ags/audio/recall/
H A Dags_count_beats_audio_run.c1887 g_value_init(&loop_value, in ags_count_beats_audio_run_sequencer_alloc_output_callback()
1891 &loop_value); in ags_count_beats_audio_run_sequencer_alloc_output_callback()
1972 g_value_init(&loop_value, in ags_count_beats_audio_run_notation_alloc_output_callback()
1976 &loop_value); in ags_count_beats_audio_run_notation_alloc_output_callback()
2061 g_value_init(&loop_value, in ags_count_beats_audio_run_wave_alloc_output_callback()
2065 &loop_value); in ags_count_beats_audio_run_wave_alloc_output_callback()
2147 &loop_value); in ags_count_beats_audio_run_midi_alloc_output_callback()
2250 &loop_value); in ags_count_beats_audio_run_sequencer_count_callback()
2384 &loop_value); in ags_count_beats_audio_run_notation_count_callback()
2499 &loop_value); in ags_count_beats_audio_run_wave_count_callback()
[all …]
/dports/x11-wm/fvwm2/fvwm-2.6.9/perllib/FVWM/
H A DEventNames.pm649 my $loop_value = [];
653 push @$loop_value, \%loop_hash;
655 $loop_value
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/android/autofill_assistant/
H A Dinteraction_handler_android.cc54 auto loop_value = user_model->GetValue(proto.loop_value_model_identifier()); in RunForEachLoop() local
55 if (!loop_value.has_value()) { in RunForEachLoop()
61 for (int i = 0; i < GetValueSize(*loop_value); ++i) { in RunForEachLoop()
/dports/x11-wm/fvwm3/fvwm3-1.0.4/perllib/FVWM/
H A DEventNames.pm691 my $loop_value = [];
695 push @$loop_value, \%loop_hash;
697 $loop_value
/dports/games/warmux/warmux-11.04/src/tool/
H A Dresource_manager.cpp339 bool loop_value; in LoadSprite() local
340 if (str2bool(str, loop_value)) in LoadSprite()
341 sprite->animation.SetLoopMode(loop_value); in LoadSprite()
/dports/devel/py-pythran/pythran-0.11.0/pythran/analyses/
H A Dlazyness_analysis.py297 loop_value = v[0] + self.name_count[k]
298 self.result[k] = max(self.result.get(k, 0), loop_value)
/dports/misc/py-tvm/incubator-tvm-0.6.1/src/codegen/llvm/
H A Dcodegen_llvm.cc541 llvm::PHINode* loop_value = builder_->CreatePHI(begin->getType(), 2); in CreateSerialFor() local
542 loop_value->addIncoming(begin, pre_block); in CreateSerialFor()
544 var_map_[loop_var.get()] = loop_value; in CreateSerialFor()
545 builder_->CreateCondBr(CreateLT(loop_var.type(), loop_value, end), in CreateSerialFor()
550 llvm::Value* loop_next = CreateAdd(loop_var.type(), loop_value, stride); in CreateSerialFor()
551 loop_value->addIncoming(loop_next, builder_->GetInsertBlock()); in CreateSerialFor()
/dports/misc/tvm/incubator-tvm-0.6.1/src/codegen/llvm/
H A Dcodegen_llvm.cc541 llvm::PHINode* loop_value = builder_->CreatePHI(begin->getType(), 2); in CreateSerialFor() local
542 loop_value->addIncoming(begin, pre_block); in CreateSerialFor()
544 var_map_[loop_var.get()] = loop_value; in CreateSerialFor()
545 builder_->CreateCondBr(CreateLT(loop_var.type(), loop_value, end), in CreateSerialFor()
550 llvm::Value* loop_next = CreateAdd(loop_var.type(), loop_value, stride); in CreateSerialFor()
551 loop_value->addIncoming(loop_next, builder_->GetInsertBlock()); in CreateSerialFor()
/dports/x11-toolkits/libgdiplus/libgdiplus-6.0.4/src/
H A Dgifcodec.c670 unsigned short loop_value; in gdip_load_gif_image() local
681 loop_value = 0; in gdip_load_gif_image()
742loop_value = (BYTE)(gif->SavedImages[i].ExtensionBlocks[l + 1].Bytes[2] << 8) + (BYTE)gif->SavedIm… in gdip_load_gif_image()
865 gdip_bitmapdata_property_add_short(bitmap_data, PropertyTagLoopCount, loop_value); in gdip_load_gif_image()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/target/llvm/
H A Dcodegen_llvm.cc577 llvm::PHINode* loop_value = builder_->CreatePHI(begin->getType(), 2); in CreateSerialFor() local
578 loop_value->addIncoming(begin, pre_block); in CreateSerialFor()
580 var_map_[loop_var.get()] = loop_value; in CreateSerialFor()
581 builder_->CreateCondBr(CreateLT(loop_var.dtype(), loop_value, end), for_body, for_end, in CreateSerialFor()
586 llvm::Value* loop_next = CreateAdd(loop_var.dtype(), loop_value, stride); in CreateSerialFor()
587 loop_value->addIncoming(loop_next, builder_->GetInsertBlock()); in CreateSerialFor()
/dports/databases/postgresql96-server/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-contrib/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-client/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-plpython/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-docs/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-plperl/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql10-server/postgresql-10.19/src/pl/plpgsql/src/
H A Dpl_exec.c2057 int32 loop_value; in exec_stmt_fori() local
2078 loop_value = DatumGetInt32(value); in exec_stmt_fori()
2132 if (loop_value < end_value) in exec_stmt_fori()
2137 if (loop_value > end_value) in exec_stmt_fori()
2146 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2204 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2206 loop_value -= step_value; in exec_stmt_fori()
2210 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2212 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql96-docs/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql96-client/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()
/dports/databases/postgresql96-contrib/postgresql-9.6.24/src/pl/plpgsql/src/
H A Dpl_exec.c1924 int32 loop_value; in exec_stmt_fori() local
1945 loop_value = DatumGetInt32(value); in exec_stmt_fori()
1999 if (loop_value < end_value) in exec_stmt_fori()
2004 if (loop_value > end_value) in exec_stmt_fori()
2013 assign_simple_var(estate, var, Int32GetDatum(loop_value), false, false); in exec_stmt_fori()
2071 if (loop_value < (PG_INT32_MIN + step_value)) in exec_stmt_fori()
2073 loop_value -= step_value; in exec_stmt_fori()
2077 if (loop_value > (PG_INT32_MAX - step_value)) in exec_stmt_fori()
2079 loop_value += step_value; in exec_stmt_fori()

123