Home
last modified time | relevance | path

Searched refs:dereference (Results 1 – 25 of 171) sorted by relevance

1234567

/openbsd/gnu/llvm/llvm/utils/gdb-scripts/
H A Dprettyprinters.py89 return '[%d]' % count, cur.dereference()
224 it_deref = it.dereference()
230 entry = entry_ptr.dereference()
239 value = value_ptr.dereference()
304 val = child['stdString'].dereference()
323 return str(child['decUL'].dereference())
326 return str(child['decL'].dereference())
329 return str(child['decULL'].dereference())
332 return str(child['decLL'].dereference())
335 val = child['uHex'].dereference()
[all …]
/openbsd/gnu/usr.bin/perl/t/lib/croak/
H A Dop72 Can't modify array dereference in numeric bitwise and (&) at - line 2, near "1;"
79 Can't modify array dereference in numeric bitwise or (|) at - line 2, near "1;"
86 Can't modify array dereference in numeric bitwise xor (^) at - line 2, near "1;"
93 Can't modify array dereference in string bitwise and (&.) at - line 2, near "1;"
100 Can't modify array dereference in string bitwise or (|.) at - line 2, near "1;"
107 Can't modify array dereference in string bitwise xor (^.) at - line 2, near "1;"
113 Can't modify hash dereference in substr at - line 1, near "3;"
119 Can't modify hash dereference in substr at - line 1, near "3;"
125 Can't modify hash dereference in vec at - line 1, near "3;"
131 Can't modify hash dereference in vec at - line 1, near "3;"
[all …]
/openbsd/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()
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_"]
697 key_value = _cc_field(node.cast(self.util.cast_type).dereference())
728 self.node = self.addr.cast(cast_type).dereference()
814 next_val = next_ptr.cast(self.cast_type).dereference()
[all …]
/openbsd/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); in isDereferencableUninit()
221 static std::optional<DereferenceInfo> dereference(ProgramStateRef State, in dereference() function
/openbsd/gnu/usr.bin/perl/t/lib/warnings/
H A Dpp9 Use of uninitialized value in scalar dereference [pp_rv2sv()]
78 Use of uninitialized value $x in scalar dereference at - line 3.
H A Dpp_hot172 Use of uninitialized value $a in array dereference at - line 4.
181 Use of uninitialized value $a in hash dereference at - line 4.
H A D9uninit334 Use of uninitialized value $m1 in scalar dereference at - line 5.
335 Use of uninitialized value $g1 in scalar dereference at - line 6.
336 Use of uninitialized value $m1 in array dereference at - line 8.
337 Use of uninitialized value $g1 in array dereference at - line 9.
338 Use of uninitialized value $m2 in hash dereference at - line 10.
339 Use of uninitialized value $g2 in hash dereference at - line 11.
1204 Use of uninitialized value $m1 in subroutine dereference at - line 5.
1205 Use of uninitialized value $g1 in subroutine dereference at - line 6.
2020 Use of uninitialized value $a in array dereference at - line 3.
/openbsd/gnu/usr.bin/perl/pod/
H A Dperldsc.pod61 X<reference> X<dereference> X<dereferencing> X<pointer>
104 That's because Perl doesn't (ever) implicitly dereference your variables.
199 C<< $AoA[$i]->@* >> dereference on the left-hand-side of the assignment.
243 Note also that there exists another way to write a dereference! These
249 The first form, called I<postfix dereference> is generally easier to
253 encounter the other form, I<circumfix dereference>, in older code.
263 X<dereference, precedence> X<dereferencing, precedence>
278 dereference the thing at that subscript. That's fine in C, but this isn't C.
282 array, and then dereference that, and finally tell you the I<i'th> value
284 write C<< $AoA[$i]->$* >> to explicitly dereference the I<i'th> item,
H A Dperlref.pod244 dereference them in a context that assumes they exist. Because we haven't
314 X<reference, use> X<dereferencing> X<dereference>
334 C<$arrayref[0]> or C<$hashref{"KEY"}> there. The dereference of the
390 including a previous dereference. Note that C<$array[$x]> is I<not> the
450 the dereference syntax always indicates the type of reference desired.
739 Postfix dereference should work in all circumstances where block
740 (circumfix) dereference worked, and should be entirely equivalent. This
935 If you try to dereference the key, it won't do a hard dereference, and
H A Dperlcheat.pod22 $@%&* dereference $$foo{bar} aka $foo->{bar}
H A Dperlexperiment.pod296 =item Postfix dereference syntax
437 Superseded by L</Postfix dereference syntax>.
H A Dperlperf.pod117 sensitive to typos, and it's much clearer to dereference the variable
125 # dereference
144 'dereference' => sub {
159 $> perl dereference
161 Benchmark: timing 1000000 iterations of dereference, direct...
162 dereference: 2 wallclock secs ( 1.59 usr + 0.00 sys = 1.59 CPU) @ 628930.82/s (n=1000000)
/openbsd/gnu/llvm/libcxx/
H A D.clang-tidy26 readability-redundant-function-ptr-dereference,
/openbsd/gnu/usr.bin/perl/t/op/
H A Dpos.t57 like $@, qr/^Can't modify hash dereference in match position at /,
H A Dattrs.t161 like $@, qr/Can't declare scalar dereference in "our"/;
/openbsd/gnu/llvm/clang/docs/
H A DDebuggingCoroutines.rst492 def dereference(addr):
493 return long(cast_addr2long_pointer(addr).dereference())
508 return dereference(self.continuation_addr)
514 self.resume_func = dereference(self.coro_frame.resume_addr)
600 block = gdb.block_for_pc(long(cast_addr2long_pointer(addr).dereference()))
610 coro_frame = gdb.Value(addr).cast(coro_frame_ptr_type).dereference()
/openbsd/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/gnu/usr.bin/perl/regen/
H A Dopcodes64 rv2sv scalar dereference ck_rvconst ds1
66 rv2cv subroutine dereference ck_rvconst d1
223 rv2av array dereference ck_rvconst dt1
242 rv2hv hash dereference ck_rvconst dt1
/openbsd/gnu/llvm/clang/lib/AST/Interp/
H A DByteCodeExprGen.cpp68 return dereference( in VisitCastExpr()
601 bool ByteCodeExprGen<Emitter>::dereference( in dereference() function in ByteCodeExprGen
1363 return dereference( in VisitUnaryOperator()
H A DByteCodeExprGen.h201 bool dereference(const Expr *LV, DerefKind AK,
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py250 children=None, dereference=None): argument
273 self.dereference = dereference
315 if self.dereference is not None:
316 self.dereference.check_value(test_base, val.Dereference(), error_msg)
/openbsd/gnu/llvm/libcxx/docs/DesignDocs/
H A DUniquePtrTrivialAbi.rst92 the deference of ``x`` would be UB if it were ``nullptr``. (This dereference would not have caused
/openbsd/usr.bin/awk/
H A DFIXES68 Matchop dereference after free problem fix when the first
/openbsd/gnu/llvm/libcxx/include/
H A D__hash_table331 … "Attempted to dereference a non-dereferenceable unordered container iterator");
338 … "Attempted to dereference a non-dereferenceable unordered container iterator");
446 … "Attempted to dereference a non-dereferenceable unordered container const_iterator");
452 … "Attempted to dereference a non-dereferenceable unordered container const_iterator");
552 … "Attempted to dereference a non-dereferenceable unordered container local_iterator");
559 … "Attempted to dereference a non-dereferenceable unordered container local_iterator");
685 … "Attempted to dereference a non-dereferenceable unordered container const_local_iterator");
692 … "Attempted to dereference a non-dereferenceable unordered container const_local_iterator");
/openbsd/gnu/llvm/llvm/docs/
H A DCMakePrimer.rst157 because the first dereference turns ``list_name`` into the name of the sub-list
158 (a, b, or c in the example), then the second dereference is to get the value of

1234567