Searched refs:pointer (Results 101 - 125 of 345) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/libcxx/include/__iterator/
H A Dinsert_iterator.h59 typedef void pointer; typedef in class:insert_iterator
H A Dreverse_iterator.h56 typename iterator_traits<_Iter>::pointer,
82 using pointer = typename iterator_traits<_Iter>::pointer;
136 _LIBCPP_HIDE_FROM_ABI constexpr pointer operator->() const
146 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 pointer operator->() const { return std::addressof(operator*()); }
358 using pointer = __iterator_pointer_type<_Iter>;
373 _LIBCPP_HIDE_FROM_ABI constexpr pointer operator->() const {
H A Distreambuf_iterator.h39 typedef _CharT* pointer; typedef in class:istreambuf_iterator
H A Distream_iterator.h41 typedef const _Tp* pointer; typedef in class:istream_iterator
/freebsd-current/contrib/llvm-project/libcxx/include/__memory/
H A Dallocation_guard.h49 using _Pointer = typename allocator_traits<_Alloc>::pointer;
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/Support/
H A DBumpVector.h97 using pointer = T *;
158 /// data - Return a pointer to the vector's buffer, even if empty().
159 pointer data() {
160 return pointer(Begin);
163 /// data - Return a pointer to the vector's buffer, even if empty().
/freebsd-current/lib/libc/amd64/string/
H A Dmemrchr.S81 and $~0xf, %rdi # align source pointer
96 mov %rdi, %rsi # pointer to matching chunk
138 lea (%rsi, %rax, 1), %rsi # pointer to match (or junk)
161 /* empty buffer: return a null pointer */
H A Dmemccpy.S82 mov %rsi, %r9 # stash a copy of the source pointer for later
161 cmovc %rsi, %rax # if yes, return pointer, else NULL
170 add %rsi, %rdi # restore destination pointer
186 cmovc %r8, %rax # if yes, return pointer, else NULL
254 /* length zero destination: return null pointer */
/freebsd-current/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1144 // Downcasts the pointer of type Base to Derived.
1287 // pthread_create() accepts a pointer to a function type with the C linkage.
1569 T* pointer() { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
1570 const T* pointer() const { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
1571 const T& get() const { return *pointer(); }
1572 void set(const T& value) { *pointer() = value; }
1582 T* pointer() { return &value_; } function in class:testing::internal::ThreadLocal::ValueHolder
1593 ->pointer();
1773 T* pointer() { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
1774 const T* pointer() cons function in class:testing::internal::ThreadLocal
1785 T* pointer() { return &value_; } function in class:testing::internal::ThreadLocal::ValueHolder
1899 T* pointer() { return &value_; } function in class:testing::internal::ThreadLocal
1900 const T* pointer() const { return &value_; } function in class:testing::internal::ThreadLocal
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h197 using pointer = std::remove_reference_t<T> *;
277 /// Returns a pointer to the stored T value.
278 pointer operator->() {
283 /// Returns a pointer to the stored T value.
333 pointer toPointer(pointer Val) { return Val; }
337 pointer toPointer(wrap *Val) { return &Val->get(); }
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dconfig_file.c612 const krb5_config_binding **pointer,
620 ret = _krb5_config_vget_next (context, c, pointer, type, args);
628 const krb5_config_binding **pointer,
637 *pointer = b;
640 return vget_next(context, b->u.list, pointer, type, p, args);
651 const krb5_config_binding **pointer,
664 if (*pointer == NULL) {
670 return vget_next(context, c, pointer, type, p, args);
675 for (b = (*pointer)->next; b != NULL; b = b->next) {
676 if(strcmp(b->name, (*pointer)
610 _krb5_config_get_next(krb5_context context, const krb5_config_section *c, const krb5_config_binding **pointer, int type, ...) argument
626 vget_next(krb5_context context, const krb5_config_binding *b, const krb5_config_binding **pointer, int type, const char *name, va_list args) argument
649 _krb5_config_vget_next(krb5_context context, const krb5_config_section *c, const krb5_config_binding **pointer, int type, va_list args) argument
[all...]
/freebsd-current/sbin/dhclient/
H A Doptions.c262 size_t i, pointer; local
277 /* This is a pointer to another list of labels. */
279 /* The pointer is truncated. */
280 warning("Truncated pointer in DHCP Domain "
285 pointer = ((label_len & ~(0xC0)) << 8) +
287 if (pointer >= *offset) {
289 * The pointer must indicate a prior
292 warning("Invalid forward pointer in DHCP "
298 &pointer);
333 size_t i, pointer; local
[all...]
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha512-ppc.pl35 # version was that it was using thread local storage pointer register.
38 # dereference the TLS pointer. While it's never the case in openssl
40 # use TLS pointer register. Alternative would be to require caller to
42 # context R2 serves as TLS pointer, while in 64-bit context - R13.
255 $PUSH $num,`$FRAME-$SIZE_T*24`($sp) ; end pointer
256 $PUSH $inp,`$FRAME-$SIZE_T*23`($sp) ; inp pointer
276 $PUSH $t1,`$FRAME-$SIZE_T*24`($sp) ; intermediate end pointer
277 $PUSH $inp,`$FRAME-$SIZE_T*23`($sp) ; inp pointer
279 ; $inp equals to the intermediate end pointer here
321 addi $t1,$sp,`$LOCALS+16*$SZ` ; fictitious end pointer
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAllocatorList.h78 using pointer = T *;
101 using pointer = ValueT *;
119 pointer operator->() const { return &operator*(); }
H A DEquivalenceClasses.h64 /// provides a "next pointer", which is used to enumerate all of the elements
65 /// in the unioned set. Finally, it defines either a "end of list pointer" or
66 /// "leader pointer" depending on whether the value itself is a leader. A
67 /// "leader pointer" points to the node that is the leader for this element,
68 /// if the node is not a leader. A "end of list pointer" points to the last
95 assert(getNext() == nullptr && "Already has a next pointer!");
251 // Update L1LV's end of list pointer.
282 using pointer = value_type *;
292 pointer operator->() const { return &operator*(); }
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dprng.h52 #error Unsupported pointer size
/freebsd-current/crypto/heimdal/appl/telnet/telnetd/
H A Dext.h150 void printsub (int direction, unsigned char *pointer, size_t length);
/freebsd-current/crypto/openssl/apps/
H A Dtsget.in34 my ($data, $pointer) = @_;
35 ${$pointer} .= $data;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/
H A DPPCLegalizerInfo.cpp43 const LLT P0 = LLT::pointer(0, 64);
/freebsd-current/sys/sys/
H A D_types.h87 #error unsupported pointer size
/freebsd-current/sys/dev/ixgbe/
H A Dixgbe_x540.c54 * @hw: pointer to hardware structure
164 * @hw: pointer to hardware structure
165 * @speed: pointer to link speed
181 * @hw: pointer to hardware structure
193 * @hw: pointer to hardware structure
207 * @hw: pointer to hardware structure
309 * @hw: pointer to hardware structure
333 * @hw: pointer to hardware structure
358 * @hw: pointer to hardware structure
390 * @hw: pointer t
505 u16 pointer = 0; local
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Ddeptgt-end-jobs.mk10 # Before 2020-08-22, this test crashed with a null pointer dereference.
/freebsd-current/contrib/ntp/sntp/unity/
H A Dunity.h72 #define TEST_ASSERT_NULL(pointer) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, " Expected NULL")
73 #define TEST_ASSERT_NOT_NULL(pointer) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, " Expected Non-NULL")
176 #define TEST_ASSERT_NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, message)
177 #define TEST_ASSERT_NOT_NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, message)
/freebsd-current/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S33 # + thread_state pointer +
74 # thread_state pointer is in rdi
137 # thread_state pointer is in a0 ($4)
248 # thread_state pointer is in a0 ($4)
292 // thread_state pointer is in r3
498 // Use 16-bytes below the stack pointer as an
500 // Note that the stack pointer is always 16-byte aligned.
556 // thread_state pointer is in r3
668 // r4 is now a 16-byte aligned pointer into the red zone
725 // thread_state pointer i
[all...]
/freebsd-current/sys/modules/linux/
H A DMakefile102 -fno-omit-frame-pointer -foptimize-sibling-calls ${VDSOFLAGS} \
109 -fno-omit-frame-pointer -foptimize-sibling-calls ${VDSOFLAGS} \

Completed in 404 milliseconds

1234567891011>>