Home
last modified time | relevance | path

Searched refs:label_type (Results 1 – 5 of 5) sorted by relevance

/external/dnsmasq/src/
Drfc1035.c42 unsigned int label_type; in extract_name() local
71 label_type = l & 0xc0; in extract_name()
73 if (label_type == 0xc0) /* pointer */ in extract_name()
91 else if (label_type == 0x80) in extract_name()
93 else if (label_type == 0x40) in extract_name()
285 unsigned int label_type; in skip_name() local
290 label_type = (*ansp) & 0xc0; in skip_name()
292 if (label_type == 0xc0) in skip_name()
298 else if (label_type == 0x80) in skip_name()
300 else if (label_type == 0x40) in skip_name()
/external/chromium_org/v8/src/
Dtyping.cc214 Type* label_type; in VisitSwitchStatement() local
217 &tag_type, &label_type, &combined_type); in VisitSwitchStatement()
219 NarrowLowerType(label, label_type); in VisitSwitchStatement()
Dhydrogen.cc4782 Type* label_type = clause->label()->bounds().lower; in VisitSwitchStatement() local
4785 Token::EQ_STRICT, tag_value, label_value, tag_type, label_type, in VisitSwitchStatement()
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml383 external label_type : llcontext -> lltype = "llvm_label_type"
Dllvm.mli640 (** [label_type c] creates a type of a basic block in the context [c]. See
642 val label_type : llcontext -> lltype val