Home
last modified time | relevance | path

Searched refs:label_type (Results 1 – 3 of 3) 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/llvm/bindings/ocaml/llvm/
Dllvm.ml325 external label_type : llcontext -> lltype = "llvm_label_type"
Dllvm.mli554 (** [label_type c] creates a type of a basic block in the context [c]. See
556 val label_type : llcontext -> lltype val