Searched defs:label_entry (Results 1 - 3 of 3) sorted by relevance

/external/tcpdump/
H A Dprint-mpls.c63 uint32_t label_entry; local
70 ND_TCHECK2(*p, sizeof(label_entry));
71 if (length < sizeof(label_entry)) {
75 label_entry = EXTRACT_32BITS(p);
78 MPLS_LABEL(label_entry)));
81 MPLS_LABEL(label_entry) < sizeof(mpls_labelname) / sizeof(mpls_labelname[0]))
82 ND_PRINT((ndo, " (%s)", mpls_labelname[MPLS_LABEL(label_entry)]));
83 ND_PRINT((ndo, ", exp %u", MPLS_EXP(label_entry)));
84 if (MPLS_STACK(label_entry))
86 ND_PRINT((ndo, ", ttl %u)", MPLS_TTL(label_entry)));
[all...]
/external/llvm/unittests/IR/
H A DLegacyPassManagerTest.cpp471 BasicBlock *label_entry = local
474 // Block entry (label_entry)
475 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry);
480 ReturnInst::Create(Context, int32_3, label_entry);
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DPassManagerTest.cpp468 BasicBlock* label_entry = BasicBlock::Create(getGlobalContext(), "entry",func_test1,0); local
470 // Block entry (label_entry)
471 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry);
476 ReturnInst::Create(getGlobalContext(), int32_3, label_entry); local

Completed in 310 milliseconds