Searched refs:dereference (Results 1 - 19 of 19) sorted by relevance

/openbsd-current/gnu/llvm/llvm/utils/gdb-scripts/
H A Dprettyprinters.py60 ret = '[{}]'.format(self.i), (self.begin+self.i).dereference()
89 return '[%d]' % count, cur.dereference()
120 gdb.lookup_type('llvm::ErrorInfoBase').pointer()).dereference())
122 val.type.template_argument(0).pointer()).dereference())
176 while self.cur != self.end and (is_equal(self.cur.dereference()['first'], empty) or is_equal(self.cur.dereference()['first'], tombstone)):
183 v = cur.dereference()['first' if self.first else 'second']
224 it_deref = it.dereference()
230 entry = entry_ptr.dereference()
239 value = value_ptr.dereference()
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/IO/
H A Dc55Capture.pm29 Note the '$$' dereference.
/openbsd-current/gnu/llvm/libcxx/utils/gdb/libcxx/
H A Dprinters.py351 entry = self.item.dereference()
379 entry = self.item.dereference()
468 yield i, (start_addr.dereference() + i).dereference()
523 yield "", current_node.cast(self.nodetype).dereference()["__value_"]
524 current_node = current_node.dereference()["__next_"]
584 result = node.cast(self.cast_type).dereference()["__left_"]
588 result = node.cast(self.cast_type).dereference()["__right_"]
608 parent = node.cast(self.cast_type).dereference()["__parent_"]
614 # This is ugly, but the only other option is to dereference a
[all...]
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedPointee.cpp126 static std::optional<DereferenceInfo> dereference(ProgramStateRef State,
163 std::optional<DereferenceInfo> DerefInfo = dereference(State, FR);
221 static std::optional<DereferenceInfo> dereference(ProgramStateRef State, function
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Doverload.t75 like($@, qr/Overloaded dereference did not return a reference/,
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dpos.t54 like $@, qr/^Can't modify array dereference in match position at /,
57 like $@, qr/^Can't modify hash dereference in match position at /,
H A Dattrs.t161 like $@, qr/Can't declare scalar dereference in "our"/;
163 like $@, qr/Can't declare scalar dereference in "my"/;
H A Dlvref.t482 qr/^Can't modify reference to array dereference in list assignment at/,
498 qr/^Can't modify reference to hash dereference in scalar assignment a/,
499 "Can't modify reference to hash dereference in scalar assignment";
502 qr/^Can't modify reference to hash dereference in scalar assignment a/,
/openbsd-current/gnu/llvm/clang/lib/AST/Interp/
H A DByteCodeExprGen.h201 bool dereference(const Expr *LV, DerefKind AK,
H A DByteCodeExprGen.cpp68 return dereference(
75 // Pointer on stack - dereference it.
601 bool ByteCodeExprGen<Emitter>::dereference(
656 // If the param is a pointer, we can dereference a dummy value.
1363 return dereference(
/openbsd-current/gnu/llvm/libcxxabi/src/
H A Daix_state_tab_eh.inc119 // change, dereference the address in
124 // change, dereference the address in
427 _LIBCXXABI_TRACE_STATETAB("Flag: FSMEntryFlag::oldConditionalStateChange, dereference "
436 _LIBCXXABI_TRACE_STATETAB("Flag: FSMEntryFlag::conditionalStateChange, dereference "
463 _LIBCXXABI_TRACE_STATETAB("Flag: FSMEntryFlag::oldConditionalStateChange, dereference "
473 _LIBCXXABI_TRACE_STATETAB("Flag: FSMEntryFlag::conditionalStateChange, dereference "
/openbsd-current/gnu/usr.bin/perl/lib/
H A Doverload.pm561 error message if the dereference operator doesn't match it).
564 not be called to implement a missing dereference operator.
566 If a dereference operator is overloaded then it must return a
883 There are exceptions to the above rules for dereference operations
1149 the scalar dereference. Thus we can get the I<actual> non-overloaded
1151 overload dereference). Similarly, the object returned by the
1159 dereference on a reference to an object which is I<implemented> as a
1162 overloaded dereference operator). Here is one possible fetching routine:
H A Dfeature.pm279 dereference syntax|perlref/Postfix Dereference Syntax> so that
280 postfix array dereference, postfix scalar dereference, and
298 postfix dereference syntax outside double-quotish interpolations. In those
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py250 children=None, dereference=None):
265 :param dereference: A ValueCheck for the SBValue returned by the
273 self.dereference = dereference
315 if self.dereference is not None:
316 self.dereference.check_value(test_base, val.Dereference(), error_msg)
/openbsd-current/gnu/llvm/lldb/source/Expression/
H A DDWARFExpression.cpp1037 "Failed to dereference pointer from 0x%" PRIx64
1065 // 1 - uint8_t that specifies the size of the data to dereference.
1155 "Failed to dereference pointer for for DW_OP_deref_size: "
1184 "Failed to dereference pointer from 0x%" PRIx64
1212 // 1 - uint8_t that specifies the size of the data to dereference.
1231 // DESCRIPTION: Provides an extended dereference mechanism. The entry at
2696 bool dereference = false;
2720 if (dereference) {
/openbsd-current/gnu/usr.bin/perl/regen/
H A Dfeature.pl701 dereference syntax|perlref/Postfix Dereference Syntax> so that
702 postfix array dereference, postfix scalar dereference, and
720 postfix dereference syntax outside double-quotish interpolations. In those
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A DChangeLog-3.x186 * infrun.c (restore_inferior_status): Don't dereference fid if NULL.
2858 pointer dereference, since the clipper machine can't handle having
4075 (val_print): Added an argument DEREF_REF to dereference references
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DSTLExtras.h328 // T is a function reference... dereference the stored pointer.
548 assert(BaseT::wrapped() != End && "Cannot dereference end iterator!");
553 assert(BaseT::wrapped() != End && "Cannot dereference end iterator!");
662 /// This means you can only dereference the iterator once, and you can only
683 assert(!IsEarlyIncremented && "Cannot dereference twice!");
717 /// to dereference exactly once each element, and to increment exactly once each
1398 /// * ReferenceT dereference(const BaseT &base, ptrdiff_t index)
1431 return DerivedT::dereference(base.first, base.second + index);
/openbsd-current/gnu/usr.bin/perl/ext/B/
H A DB.pm873 a dereference (rv2gv) - so that the glob is created at runtime.

Completed in 188 milliseconds