Home
last modified time | relevance | path

Searched refs:is_null (Results 1 – 9 of 9) sorted by relevance

/openbsd/src/gnu/llvm/lldb/examples/synthetic/
Dlibcxx.py185 is_null = property(_isnull_impl, None) variable in stdlist_entry
193 if node.is_null:
209 if node is not None and node.sbvalue.IsValid() and not(node.is_null):
402 is_null = property(_null_impl, None) variable in stdmap_iterator_node
413 if x.is_null:
415 while (not x.left.is_null):
425 if x.is_null:
427 while (not x.right.is_null):
433 if x.is_null:
439 if node.is_null:
[all …]
/openbsd/src/gnu/llvm/llvm/docs/
DFaultMaps.rst73 br i1 %ptr_is_null, label %is_null, label %not_null, !make.implicit !0
79 is_null:
91 %t = load i32, i32* %ptr ;; handler-pc = label %is_null
94 is_null:
/openbsd/src/gnu/llvm/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrRef.td33 "ref.is_null\t$ref",
34 "ref.is_null", 0xd1>,
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
DJSON.cpp283 const bool is_null = escaped_ch == 0; in GetToken() local
284 if (was_escaped || (!is_end_quote && !is_null)) { in GetToken()
297 } else if (is_null) { in GetToken()
/openbsd/src/gnu/llvm/llvm/include/llvm/IR/
DIntrinsicsWebAssembly.td36 "llvm.wasm.ref.is_null.extern">;
39 [IntrNoMem], "llvm.wasm.ref.is_null.func">;
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Delf32-xtensa.c4230 bfd_boolean is_null; member
4247 reloc->is_null = FALSE; in init_source_reloc()
4293 if ((!a->is_null) - (!b->is_null)) in source_reloc_compare()
4294 return ((!a->is_null) - (!b->is_null)); in source_reloc_compare()
6173 s_reloc->is_null = TRUE; in collect_source_relocs()
7442 if (!rel->is_null) in is_removable_literal()
7452 if (!curr_rel->is_null in is_removable_literal()
7677 if (reloc[i].is_null) in relocations_reach()
/openbsd/src/gnu/usr.bin/binutils/bfd/
Delf32-xtensa.c3336 bfd_boolean is_null; member
3358 reloc->is_null = FALSE;
4350 s_reloc->is_null = TRUE;
4548 if (rel->is_null
4641 if (reloc[i].is_null)
/openbsd/src/gnu/llvm/llvm/bindings/ocaml/llvm/
Dllvm.ml580 external is_null : llvalue -> bool = "llvm_is_null"
Dllvm.mli885 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
887 val is_null : llvalue -> bool val