/netbsd-src/libexec/telnetd/ |
H A D | utility.c | 526 unsigned char *pointer, /* where suboption data sits */ in printsub() argument 543 i = pointer[length - 2]; in printsub() 544 j = pointer[length - 1]; in printsub() 569 switch (pointer[0]) { in printsub() 572 switch (pointer[1]) { in printsub() 574 output_data("IS \"%.*s\"", length-2, (char *)pointer+2); in printsub() 581 pointer[1], pointer[1]); in printsub() 590 switch (pointer[1]) { in printsub() 592 output_data(" IS %.*s", length-2, (char *)pointer+2); in printsub() 595 if (pointer[1] == 1) in printsub() [all …]
|
/netbsd-src/usr.bin/telnet/ |
H A D | utilities.c | 287 unsigned char *pointer, /* where suboption data sits */ in printsub() argument 297 (want_status_response && (pointer[0] == TELOPT_STATUS))) { in printsub() 304 i = pointer[length-2]; in printsub() 305 j = pointer[length-1]; in printsub() 332 switch (pointer[0]) { in printsub() 335 switch (pointer[1]) { in printsub() 337 fprintf(NetTrace, "IS \"%.*s\"", length-2, (char *)pointer+2); in printsub() 345 pointer[1], pointer[1]); in printsub() 354 switch (pointer[1]) { in printsub() 357 fprintf(NetTrace, "%.*s", length-2, (char *)pointer+2); in printsub() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/ |
H A D | memory.d | 33 alias pointer = ClassOrPtr!T; in default_delete() local 36 void opCall()(pointer ptr) const in default_delete() 66 void reset(pointer p = null) 68 pointer t = __ptr(); 76 alias pointer = ClassOrPtr!T; 83 this(pointer ptr) in this() 89 inout(pointer) get() inout nothrow in get() 101 pointer release() nothrow in release() 103 pointer t = __ptr(); in release() 121 ref pointer __ptr() nothrow { return _Mypair._Myval2; } in version() [all …]
|
H A D | vector.d | 50 alias pointer = T*; in vector() local 174 pointer _First = _Get_data()._Myfirst; in vector() 175 pointer _Last = _Get_data()._Mylast; in vector() 258 _Resize(newsize, (pointer _Dest, size_type _Count) => _Udefault(_Dest, _Count)); in vector() 264 … _Resize(newsize, (pointer _Dest, size_type _Count) => _Ufill(_Dest, _Count, forward!val)); in vector() 269 pointer _Whereptr = _Get_data()._Myfirst + offset; in vector() 270 pointer _Oldlast = _Get_data()._Mylast; in vector() 293 pointer _Where = _Get_data()._Myfirst + offset; in vector() 294 pointer _First = array.ptr; in vector() 295 pointer _Last = _First + array.length; in vector() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gdb-scripts/ |
H A D | prettyprinters.py | 30 return escape_bytes(begin.cast(gdb.lookup_type('char').pointer()), self.val['Size']) 46 t = val.type.template_argument(0).pointer() 114 gdb.lookup_type('llvm::ErrorInfoBase').pointer()).dereference()) 116 val.type.template_argument(0).pointer()).dereference()) 193 t = self.val.type.template_argument(3).pointer() 223 entry_ptr = it_deref.cast(entry_base_ty.pointer()) 227 value_ptr = (entry_ptr + 1).cast(value_ty.pointer()) 229 str_data = str_data.cast(gdb.lookup_type('char').const().pointer()) 371 pointer = (pair_union & ptr_mask) 373 return (pointer, value) [all …]
|
/netbsd-src/tests/usr.bin/xlint/lint2/ |
H A D | output_sorted.exp | 2 func0000 has argument 1 with type 'int' at output_sorted.c(10), versus 'pointer to const char' at output_sorted.c(11) [lint2:006] 3 func0000 has argument 2 with type 'pointer to const char' at output_sorted.c(10), versus 'double' at output_sorted.c(11) [lint2:006] 5 func1000 has argument 1 with type 'int' at output_sorted.c(10), versus 'pointer to const char' at output_sorted.c(11) [lint2:006] 6 func1000 has argument 2 with type 'pointer to const char' at output_sorted.c(10), versus 'double' at output_sorted.c(11) [lint2:006] 8 func2000 has argument 1 with type 'int' at output_sorted.c(10), versus 'pointer to const char' at output_sorted.c(11) [lint2:006] 9 func2000 has argument 2 with type 'pointer to const char' at output_sorted.c(10), versus 'double' at output_sorted.c(11) [lint2:006] 11 func3000 has argument 1 with type 'int' at output_sorted.c(10), versus 'pointer to const char' at output_sorted.c(11) [lint2:006] 12 func3000 has argument 2 with type 'pointer to const char' at output_sorted.c(10), versus 'double' at output_sorted.c(11) [lint2:006] 14 func4000 has argument 1 with type 'int' at output_sorted.c(10), versus 'pointer to const char' at output_sorted.c(11) [lint2:006] 15 func4000 has argument 2 with type 'pointer t [all...] |
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | unique_ptr.h | 138 _Ptr<_Up, _Ep, __void_t<typename remove_reference<_Ep>::type::pointer>> in _GLIBCXX_VISIBILITY() 140 using type = typename remove_reference<_Ep>::type::pointer; in _GLIBCXX_VISIBILITY() 148 using pointer = typename _Ptr<_Tp, _Dp>::type; in _GLIBCXX_VISIBILITY() 155 __uniq_ptr_impl(pointer __p) : _M_t() { _M_ptr() = __p; } in _GLIBCXX_VISIBILITY() 158 __uniq_ptr_impl(pointer __p, _Del&& __d) in _GLIBCXX_VISIBILITY() 172 pointer& _M_ptr() { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 173 pointer _M_ptr() const { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 177 void reset(pointer __p) noexcept in _GLIBCXX_VISIBILITY() 179 const pointer __old_p = _M_ptr(); in _GLIBCXX_VISIBILITY() 185 pointer release() noexcept in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | unique_ptr.h | 157 _Ptr<_Up, _Ep, __void_t<typename remove_reference<_Ep>::type::pointer>> in _GLIBCXX_VISIBILITY() 159 using type = typename remove_reference<_Ep>::type::pointer; in _GLIBCXX_VISIBILITY() 167 using pointer = typename _Ptr<_Tp, _Dp>::type; in _GLIBCXX_VISIBILITY() 175 __uniq_ptr_impl(pointer __p) : _M_t() { _M_ptr() = __p; } in _GLIBCXX_VISIBILITY() 179 __uniq_ptr_impl(pointer __p, _Del&& __d) in _GLIBCXX_VISIBILITY() 196 pointer& _M_ptr() noexcept { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 198 pointer _M_ptr() const noexcept { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 205 void reset(pointer __p) noexcept in _GLIBCXX_VISIBILITY() 207 const pointer __old_p = _M_ptr(); in _GLIBCXX_VISIBILITY() 214 pointer release() noexcept in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/PDB/ |
H A D | CodeViewTypes.rst | 58 **Usage:** Describes a pointer to another type. 69 | Member Ptr Info | Only present if |Attributes| indicates this is a member pointer. 87 Near16 = 0x00, // 16 bit pointer 88 Far16 = 0x01, // 16:16 far pointer 89 Huge16 = 0x02, // 16:16 huge pointer 97 Near32 = 0x0a, // 32 bit pointer 98 Far32 = 0x0b, // 16:32 pointer 99 Near64 = 0x0c // 64 bit pointer 102 Pointer = 0x00, // "normal" pointer 104 PointerToDataMember = 0x02, // pointer to data member [all …]
|
/netbsd-src/sys/arch/amiga/pci/ |
H A D | empb_bsm.c | 201 empb_bsrm1(bus_space_handle_t handle, bus_size_t offset, u_int8_t *pointer, in empb_bsrm1() argument 212 *pointer++ = *p; in empb_bsrm1() 220 const u_int8_t *pointer, bus_size_t count) in empb_bswm1() argument 230 *p = *pointer++; in empb_bswm1() 237 empb_bsrr1(bus_space_handle_t handle, bus_size_t offset, u_int8_t *pointer, in empb_bsrr1() argument 248 *pointer++ = *p; in empb_bsrr1() 257 const u_int8_t *pointer, bus_size_t count) in empb_bswr1() argument 267 *p = *pointer++; in empb_bswr1() 376 empb_bsrm2(bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, in empb_bsrm2() argument 387 *pointer++ = *p; in empb_bsrm2() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/ |
H A D | traits.hpp | 74 typename node_alloc_traits::pointer, 76 typename type_traits::pointer, 86 typename node_alloc_traits::pointer, 88 typename type_traits::pointer, 98 typename node_alloc_traits::pointer, 100 typename type_traits::pointer, 110 typename node_alloc_traits::pointer, 112 typename type_traits::pointer, 178 typename node_alloc_traits::pointer, 180 typename type_traits::pointer, [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/ |
H A D | traits.hpp | 74 typename node_alloc_traits::pointer, 76 typename type_traits::pointer, 86 typename node_alloc_traits::pointer, 88 typename type_traits::pointer, 98 typename node_alloc_traits::pointer, 100 typename type_traits::pointer, 110 typename node_alloc_traits::pointer, 112 typename type_traits::pointer, 178 typename node_alloc_traits::pointer, 180 typename type_traits::pointer, [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libgcc/ |
H A D | emutls.c | 34 typedef unsigned int pointer __attribute__((mode(pointer))); typedef 41 pointer offset; 49 pointer size; 72 static pointer emutls_size; 78 pointer size = arr->size; in emutls_destroy() 79 pointer i; in emutls_destroy() 122 ret = (void *) (((pointer) (ptr + sizeof (void *) + obj->align - 1)) in emutls_alloc() 123 & ~(pointer)(obj->align - 1)); in emutls_alloc() 154 pointer offset = __atomic_load_n (&obj->loc.offset, __ATOMIC_ACQUIRE); in __emutls_get_address() 173 pointer size = offset + 32; in __emutls_get_address() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/ |
H A D | emutls.c | 34 typedef unsigned int pointer __attribute__((mode(pointer))); typedef 41 pointer offset; 49 pointer size; 72 static pointer emutls_size; 78 pointer size = arr->size; in emutls_destroy() 79 pointer i; in emutls_destroy() 122 ret = (void *) (((pointer) (ptr + sizeof (void *) + obj->align - 1)) in emutls_alloc() 123 & ~(pointer)(obj->align - 1)); in emutls_alloc() 154 pointer offset = __atomic_load_n (&obj->loc.offset, __ATOMIC_ACQUIRE); in __emutls_get_address() 173 pointer size = offset + 32; in __emutls_get_address() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
H A D | associated.c | 32 associated (const gfc_array_void *pointer, const gfc_array_void *target) in associated() argument 36 if (GFC_DESCRIPTOR_DATA (pointer) == NULL) in associated() 38 if (GFC_DESCRIPTOR_DATA (pointer) != GFC_DESCRIPTOR_DATA (target)) in associated() 40 if (GFC_DESCRIPTOR_DTYPE (pointer).elem_len != GFC_DESCRIPTOR_DTYPE (target).elem_len) in associated() 42 if (GFC_DESCRIPTOR_DTYPE (pointer).type != GFC_DESCRIPTOR_DTYPE (target).type) in associated() 45 rank = GFC_DESCRIPTOR_RANK (pointer); in associated() 49 extent = GFC_DESCRIPTOR_EXTENT(pointer,n); in associated() 53 if (GFC_DESCRIPTOR_STRIDE(pointer,n) != GFC_DESCRIPTOR_STRIDE(target,n) && extent != 1) in associated()
|
/netbsd-src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
H A D | associated.c | 32 associated (const gfc_array_void *pointer, const gfc_array_void *target) in associated() argument 36 if (GFC_DESCRIPTOR_DATA (pointer) == NULL) in associated() 38 if (GFC_DESCRIPTOR_DATA (pointer) != GFC_DESCRIPTOR_DATA (target)) in associated() 40 if (GFC_DESCRIPTOR_SPAN (pointer) != GFC_DESCRIPTOR_SPAN (target)) in associated() 42 if (GFC_DESCRIPTOR_DTYPE (pointer).type != GFC_DESCRIPTOR_DTYPE (target).type) in associated() 44 rank = GFC_DESCRIPTOR_RANK (pointer); in associated() 50 extent = GFC_DESCRIPTOR_EXTENT(pointer,n); in associated() 54 if (GFC_DESCRIPTOR_STRIDE(pointer,n) != GFC_DESCRIPTOR_STRIDE(target,n) && extent != 1) in associated()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | OperationKinds.def | 53 /// The pointer conversion char* -> int* is a bitcast. A conversion 54 /// from any pointer type to a C pointer type is a bitcast unless 56 /// block pointer or ObjC pointer type is a bitcast only if the 86 /// CK_BaseToDerived - A conversion from a C++ class pointer/reference 87 /// to a derived class pointer/reference. 91 /// CK_DerivedToBase - A conversion from a C++ class pointer 92 /// to a base class pointer. 97 /// pointer/reference to a base class that can assume that the 98 /// derived pointer is not null. 111 /// CK_ArrayToPointerDecay - Array to pointer decay. [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/ |
H A D | node_iterators.hpp | 61 typedef typename rebind_traits<_Alloc, Value_Type>::pointer 62 pointer; typedef in __gnu_pbds::detail::ov_tree_node_const_it_ 110 : m_p_value(const_cast<pointer>(p_nd)), in ov_tree_node_const_it_() 111 m_p_begin_value(const_cast<pointer>(p_begin_nd)), in ov_tree_node_const_it_() 112 m_p_end_value(const_cast<pointer>(p_end_nd)), in ov_tree_node_const_it_() 185 pointer m_p_value; 186 pointer m_p_begin_value; 187 pointer m_p_end_value; 204 typedef typename base_type::pointer pointer; typedef in __gnu_pbds::detail::ov_tree_node_it_ 217 typedef typename rebind_traits<_Alloc, Value_Type>::pointer [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/ |
H A D | node_iterators.hpp | 61 typedef typename rebind_traits<_Alloc, Value_Type>::pointer 62 pointer; typedef in __gnu_pbds::detail::ov_tree_node_const_it_ 110 : m_p_value(const_cast<pointer>(p_nd)), in ov_tree_node_const_it_() 111 m_p_begin_value(const_cast<pointer>(p_begin_nd)), in ov_tree_node_const_it_() 112 m_p_end_value(const_cast<pointer>(p_end_nd)), in ov_tree_node_const_it_() 185 pointer m_p_value; 186 pointer m_p_begin_value; 187 pointer m_p_end_value; 204 typedef typename base_type::pointer pointer; typedef in __gnu_pbds::detail::ov_tree_node_it_ 217 typedef typename rebind_traits<_Alloc, Value_Type>::pointer [all …]
|
/netbsd-src/external/lgpl3/mpc/dist/tests/ |
H A D | tgeneric.c | 41 function->pointer.CC (rop4, op, rnd); in tgeneric_cc() 42 function->pointer.CC (rop, op, rnd); in tgeneric_cc() 85 function->pointer.CC_C (rop14, rop24, op, rnd1, rnd2); in tgeneric_cc_c() 86 function->pointer.CC_C (rop1, rop2, op, rnd1, rnd2); in tgeneric_cc_c() 138 function->pointer.FC (rop4, op, rnd); in tgeneric_fc() 139 function->pointer.FC (rop, op, rnd); in tgeneric_fc() 168 function->pointer.CFC (rop4, op1, op2, rnd); in tgeneric_cfc() 169 function->pointer.CFC (rop, op1, op2, rnd); in tgeneric_cfc() 204 function->pointer.CCF (rop4, op1, op2, rnd); in tgeneric_ccf() 205 function->pointer.CCF (rop, op1, op2, rnd); in tgeneric_ccf() [all …]
|
/netbsd-src/sys/arch/amiga/amiga/ |
H A D | simple_busfuncs.c | 139 u_int8_t *pointer, in oabs() 147 *pointer++ = *p; in oabs() 157 const u_int8_t *pointer, in oabs() 165 *p = *pointer++; in oabs() 175 u_int8_t *pointer, in oabs() 183 *pointer++ = *p; in oabs() 194 const u_int8_t *pointer, in oabs() 202 *p = *pointer++; in oabs() 295 u_int16_t *pointer, in oabs() 303 *pointer++ = *p; in oabs() [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/ |
H A D | unique_ptr.h | 122 typedef _LIBCPP_NODEBUG_TYPE typename __pointer<_Tp, deleter_type>::type pointer; 128 __compressed_pair<pointer, deleter_type> __ptr_; 158 is_convertible<typename _UPtr::pointer, pointer>::value && 177 _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {} 182 _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {} 187 explicit unique_ptr(pointer __p) _NOEXCEPT : __ptr_(__p, __default_init_tag()) {} 192 unique_ptr(pointer __p, _LValRefType<_Dummy> __d) _NOEXCEPT 198 unique_ptr(pointer __p, _GoodRValRefType<_Dummy> __d) _NOEXCEPT 207 unique_ptr(pointer __p, _BadRValRefType<_Dummy> __d) = delete; 283 pointer operator->() const _NOEXCEPT { [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/cleanup/ |
H A D | bug2.in | 5 # a still virgin "append header" pointer record. 9 # warning: <filename>: malformed pointer record value: <garbage> 19 # the current "append header" record. The pointer could be the initial 21 # be a later version of that pointer somewhere in the heap. 23 # - Postfix considered the pointer record as any pointer record after 24 # a header record. Thus, it decided that some portion of the pointer 28 # pointer to the new Subject: header value. 30 # - While saving the "append header" pointer record value on the 32 # pointer record value by the actual location of the message body
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | OpaquePointers.rst | 8 Traditionally, LLVM IR pointer types have contained a pointee type. For example, 9 ``i32 *`` is a pointer that points to an ``i32`` somewhere in memory. However, 13 The opaque pointer type project aims to replace all pointer types containing 14 pointee types in LLVM with an opaque pointer type. The new pointer type is 17 Anything to do with pointer address spaces is unaffected. 29 lots of redundant no-op bitcasts in the IR to and from a pointer with a 35 the pointer as. For example, a load needs to know how many bytes to load from 61 LLVM pointer pointee types to keep track of pointee types. The frontend needs to 70 Some specific operations still need to know what type a pointer types to. For 96 * Introduce the opaque pointer type [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | __split_buffer | 43 typedef typename __alloc_traits::pointer pointer; 45 typedef pointer iterator; 48 pointer __first_; 49 pointer __begin_; 50 pointer __end_; 51 __compressed_pair<pointer, allocator_type> __end_cap_; 58 …_LIBCPP_INLINE_VISIBILITY pointer& __end_cap() _NOEXCEPT {return __end_cap_.fir… 59 …_LIBCPP_INLINE_VISIBILITY const pointer& __end_cap() const _NOEXCEPT {return __end_cap_.fir… 128 _LIBCPP_INLINE_VISIBILITY void __destruct_at_begin(pointer __new_begin) 131 void __destruct_at_begin(pointer __new_begin, false_type); [all …]
|