Home
last modified time | relevance | path

Searched refs:new_label (Results 1 – 13 of 13) sorted by relevance

/third_party/openssl/dev/release-aux/
Drelease-version-fn.sh61 local new_label="$1"
63 case "$new_label" in
65 if [ "$new_label" != "$PRE_LABEL" ]; then
66 PRE_LABEL="$new_label"
/third_party/ntfs-3g/ntfsprogs/
Dntfslabel.c377 ntfschar *new_label = NULL; in change_label() local
381 label_len = ntfs_mbstoucs(label, &new_label); in change_label()
393 new_label[label_len] = const_cpu_to_le16(0); in change_label()
397 result = ntfs_volume_rename(vol, new_label, label_len) ? 1 : 0; in change_label()
399 free(new_label); in change_label()
/third_party/ltp/tools/sparse/sparse-src/
Dshow-parse.c527 static int new_label(void) in new_label() function
642 target = new_label(); in show_statement()
646 int last = new_label(); in show_statement()
677 loop_bottom = new_label(); in show_statement()
681 loop_bottom = new_label(); in show_statement()
687 loop_top = new_label(); in show_statement()
Dcompile-i386.c569 static int new_label(void) in new_label() function
830 f->ret_target = new_label(); in emit_func_pre()
1452 target_false = new_label(); in emit_conditional_test()
1470 cond_end = new_label(); in emit_conditional_end()
1637 int label = new_label(); in emit_string_expr()
1750 label->label = next_test = new_label(); in emit_switch_statement()
1780 label->label = switch_end = new_label(); in emit_switch_statement()
1921 loop_bottom = new_label(); in emit_loop()
1922 loop_continue = new_label(); in emit_loop()
1928 loop_top = new_label(); in emit_loop()
/third_party/cef/libcef/browser/
Dmenu_model_impl.cc895 CefString new_label = label; in GetFormattedLabelAt() local
896 if (menu_model_delegate_->FormatLabel(this, new_label)) in GetFormattedLabelAt()
897 label = new_label; in GetFormattedLabelAt()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dloop_utils.cpp496 std::unique_ptr<Instruction> new_label{new Instruction( in CloneAndAttachLoopToHeader() local
498 std::unique_ptr<BasicBlock> new_exit_bb{new BasicBlock(std::move(new_label))}; in CloneAndAttachLoopToHeader()
Dloop_unroller.cpp384 std::unique_ptr<Instruction> new_label{new Instruction( in PartiallyUnrollResidualFactor() local
386 std::unique_ptr<BasicBlock> new_exit_bb{new BasicBlock(std::move(new_label))}; in PartiallyUnrollResidualFactor()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dloop_utils.cpp496 std::unique_ptr<Instruction> new_label{new Instruction( in CloneAndAttachLoopToHeader() local
498 std::unique_ptr<BasicBlock> new_exit_bb{new BasicBlock(std::move(new_label))}; in CloneAndAttachLoopToHeader()
Dloop_unroller.cpp384 std::unique_ptr<Instruction> new_label{new Instruction( in PartiallyUnrollResidualFactor() local
386 std::unique_ptr<BasicBlock> new_exit_bb{new BasicBlock(std::move(new_label))}; in PartiallyUnrollResidualFactor()
/third_party/spirv-tools/source/opt/
Dloop_utils.cpp496 std::unique_ptr<Instruction> new_label{new Instruction( in CloneAndAttachLoopToHeader() local
498 std::unique_ptr<BasicBlock> new_exit_bb{new BasicBlock(std::move(new_label))}; in CloneAndAttachLoopToHeader()
Dloop_unroller.cpp384 std::unique_ptr<Instruction> new_label{new Instruction( in PartiallyUnrollResidualFactor() local
386 std::unique_ptr<BasicBlock> new_exit_bb{new BasicBlock(std::move(new_label))}; in PartiallyUnrollResidualFactor()
/third_party/mesa3d/src/amd/compiler/
Daco_optimizer.cpp157 void add_label(Label new_label) in add_label()
162 if (new_label & instr_usedef_labels) in add_label()
165 if (new_label & instr_mod_labels) { in add_label()
170 if (new_label & temp_labels) { in add_label()
177 if (new_label & const_labels) { in add_label()
180 } else if (new_label & val_labels) { in add_label()
185 label |= new_label; in add_label()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_parser.y88 static void new_label(const char *name) in new_label() function
810 label: T_IDENTIFIER ':' { new_label($1); }