Home
last modified time | relevance | path

Searched refs:label_entry (Results 1 – 7 of 7) sorted by relevance

/external/tcpdump/
Dprint-mpls.c63 uint32_t label_entry; in mpls_print() local
70 ND_TCHECK2(*p, sizeof(label_entry)); in mpls_print()
71 if (length < sizeof(label_entry)) { in mpls_print()
75 label_entry = EXTRACT_32BITS(p); in mpls_print()
78 MPLS_LABEL(label_entry))); in mpls_print()
81 MPLS_LABEL(label_entry) < sizeof(mpls_labelname) / sizeof(mpls_labelname[0])) in mpls_print()
82 ND_PRINT((ndo, " (%s)", mpls_labelname[MPLS_LABEL(label_entry)])); in mpls_print()
83 ND_PRINT((ndo, ", exp %u", MPLS_EXP(label_entry))); in mpls_print()
84 if (MPLS_STACK(label_entry)) in mpls_print()
86 ND_PRINT((ndo, ", ttl %u)", MPLS_TTL(label_entry))); in mpls_print()
[all …]
/external/bcc/src/cc/frontends/b/
Dcodegen_llvm.cc1044 BasicBlock *label_entry = resolve_label(jump_label); in visit_parser_state_stmt_node() local
1045 B.SetInsertPoint(label_entry); in visit_parser_state_stmt_node()
1055 BasicBlock *label_entry = resolve_label(jump_label); in visit_state_decl_stmt_node() local
1056 B.SetInsertPoint(label_entry); in visit_state_decl_stmt_node()
1180 BasicBlock *label_entry = BasicBlock::Create(ctx(), "entry", fn); in visit_func_decl_stmt_node() local
1181 B.SetInsertPoint(label_entry); in visit_func_decl_stmt_node()
1183 labels_[scoped_entry_label] = label_entry; in visit_func_decl_stmt_node()
1185 retval_ = make_alloca(label_entry, fn->getReturnType(), "ret"); in visit_func_decl_stmt_node()
1187 errval_ = make_alloca(label_entry, B.getInt64Ty(), "err"); in visit_func_decl_stmt_node()
1328 BasicBlock *label_entry = resolve_label("entry"); in resolve_entry_stack() local
[all …]
/external/swiftshader/third_party/LLVM/unittests/VMCore/
DPassManagerTest.cpp468 BasicBlock* label_entry = BasicBlock::Create(getGlobalContext(), "entry",func_test1,0); in makeLLVMModule() local
471 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry); in makeLLVMModule()
476 ReturnInst::Create(getGlobalContext(), int32_3, label_entry); in makeLLVMModule()
/external/llvm/unittests/IR/
DLegacyPassManagerTest.cpp471 BasicBlock *label_entry = in makeLLVMModule() local
475 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry); in makeLLVMModule()
480 ReturnInst::Create(Context, int32_3, label_entry); in makeLLVMModule()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DLegacyPassManagerTest.cpp529 BasicBlock *label_entry = in makeLLVMModule() local
533 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry); in makeLLVMModule()
539 ReturnInst::Create(Context, int32_3, label_entry); in makeLLVMModule()
/external/swiftshader/third_party/LLVM/test/CodeGen/CPP/
D2009-05-04-CondBr.ll2 ; RUN: grep "BranchInst::Create(label_if_then, label_if_end, int1_cmp, label_entry);" %t
/external/bcc/src/cc/
Dbpf_module.cc362 BasicBlock *label_entry = BasicBlock::Create(*ctx_, "entry", fn); in make_reader() local
363 B.SetInsertPoint(label_entry); in make_reader()
425 BasicBlock *label_entry = BasicBlock::Create(*ctx_, "entry", fn); in make_writer() local
426 B.SetInsertPoint(label_entry); in make_writer()