Searched refs:pointer (Results 26 - 50 of 345) sorted by relevance

1234567891011>>

/freebsd-current/libexec/rtld-elf/i386/
H A Drtld_start.S33 xorl %ebp,%ebp # Clear frame pointer for good form
34 movl %esp,%esi # Save initial stack pointer
40 andl $0xfffffff0,%esp # Align stack pointer
48 pushl %esi # Pass initial stack pointer to rtld
55 * %edx contains a pointer to a termination function that should be
67 * order, they are (1) "obj", a pointer to the calling object's Obj_Entry,
/freebsd-current/sys/modules/mlx5fpga_tools/
H A DMakefile17 CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS}
/freebsd-current/sys/conf/
H A DMakefile.powerpc48 -Wno-error=incompatible-pointer-types-discards-qualifiers \
61 CFLAGS+= -fno-omit-frame-pointer
H A DMakefile.riscv39 CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls
/freebsd-current/contrib/tcpdump/
H A Dprint-sflow.c314 const u_char *pointer, u_int len)
321 sflow_gen_counter = (const struct sflow_generic_counter_t *)pointer;
359 const u_char *pointer, u_int len)
366 sflow_eth_counter = (const struct sflow_ethernet_counter_t *)pointer;
389 const u_char *pointer _U_, u_int len _U_)
396 const u_char *pointer, u_int len)
403 sflow_100basevg_counter = (const struct sflow_100basevg_counter_t *)pointer;
432 const u_char *pointer, u_int len)
439 sflow_vlan_counter = (const struct sflow_vlan_counter_t *)pointer;
462 const u_char *pointer, u_in
313 print_sflow_counter_generic(netdissect_options *ndo, const u_char *pointer, u_int len) argument
358 print_sflow_counter_ethernet(netdissect_options *ndo, const u_char *pointer, u_int len) argument
395 print_sflow_counter_basevg(netdissect_options *ndo, const u_char *pointer, u_int len) argument
431 print_sflow_counter_vlan(netdissect_options *ndo, const u_char *pointer, u_int len) argument
461 print_sflow_counter_processor(netdissect_options *ndo, const u_char *pointer, u_int len) argument
482 sflow_print_counter_records(netdissect_options *ndo, const u_char *pointer, u_int len, u_int records) argument
560 sflow_print_counter_sample(netdissect_options *ndo, const u_char *pointer, u_int len) argument
585 sflow_print_expanded_counter_sample(netdissect_options *ndo, const u_char *pointer, u_int len) argument
611 print_sflow_raw_packet(netdissect_options *ndo, const u_char *pointer, u_int len) argument
634 print_sflow_ethernet_frame(netdissect_options *ndo, const u_char *pointer, u_int len) argument
652 print_sflow_extended_switch_data(netdissect_options *ndo, const u_char *pointer, u_int len) argument
671 sflow_print_flow_records(netdissect_options *ndo, const u_char *pointer, u_int len, u_int records) argument
757 sflow_print_flow_sample(netdissect_options *ndo, const u_char *pointer, u_int len) argument
787 sflow_print_expanded_flow_sample(netdissect_options *ndo, const u_char *pointer, u_int len) argument
[all...]
/freebsd-current/usr.sbin/bhyve/
H A Dbasl.c170 * do not boot via EFI. EFI ROMs provide a pointer to the firmware
216 * guests which do not boot via EFI. EFI ROMs provide a pointer
274 struct basl_table_pointer *pointer; local
276 STAILQ_FOREACH(pointer, &table->pointers, chain) {
281 assert(pointer->off < table->len);
282 assert(pointer->off + pointer->size <= table->len);
284 src_table = basl_get_table_by_signature(pointer->src_signature);
287 pointer->src_signature);
291 /* Cause guest BIOS to patch the pointer
474 struct basl_table_pointer *pointer; local
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/inline/
H A Dtst.InlineExpression.d65 inline int * pointer = &`kmem_flags;
/freebsd-current/sbin/dhclient/
H A Dhash.c79 unsigned char *pointer)
97 bp->value = pointer;
78 add_hash(struct hash_table *table, const unsigned char *name, int len, unsigned char *pointer) argument
/freebsd-current/bin/sh/
H A Dmemalloc.c56 pointer
59 pointer p;
74 pointer
75 ckrealloc(pointer p, int nbytes)
86 ckfree(pointer p)
157 pointer
173 stunalloc(pointer p)
232 * stack and only adjust the stack pointer when it knows how big the
233 * string is. Stackblock (defined in stack.h) returns a pointer to a block
267 sp = ckrealloc((pointer)oldstack
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__memory/
H A Dallocate_at_least.h31 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr allocation_result<typename allocator_traits<_Alloc>::pointer>
53 __allocation_result<typename allocator_traits<_Alloc>::pointer>
H A Dallocator.h48 _LIBCPP_DEPRECATED_IN_CXX17 typedef void* pointer; typedef in class:allocator
64 _LIBCPP_DEPRECATED_IN_CXX17 typedef const void* pointer; typedef in class:allocator
145 _LIBCPP_DEPRECATED_IN_CXX17 typedef _Tp* pointer; typedef in class:allocator
155 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI pointer address(reference __x) const _NOEXCEPT {
176 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void destroy(pointer __p) { __p->~_Tp(); }
225 _LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* pointer; typedef in class:allocator
253 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void destroy(pointer __p) { __p->~_Tp(); }
H A Dpointer_traits.h113 typedef _Ptr pointer; typedef in struct:__pointer_traits_impl
114 typedef typename __pointer_traits_element_type<pointer>::type element_type;
115 typedef typename __pointer_traits_difference_type<pointer>::type difference_type;
119 using rebind = typename __pointer_traits_rebind<pointer, _Up>::type;
123 typedef typename __pointer_traits_rebind<pointer, _Up>::type other;
131 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 static pointer
133 return pointer::pointer_to(__r);
142 typedef _Tp* pointer; typedef in struct:pointer_traits
160 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 static pointer
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist_iterator.h26 using pointer = typename OptionsT::pointer;
33 using pointer = typename OptionsT::const_pointer;
67 using pointer = typename Traits::pointer;
84 explicit ilist_iterator(pointer NP) : NodePtr(Access::getNodePtr(NP)) {}
141 pointer operator->() const { return &operator*(); }
192 using pointer = typename Traits::pointer;
221 explicit ilist_iterator_w_bits(pointer N
[all...]
H A Dilist_node.h194 static ilist_node_impl<OptionsT> *getNodePtr(typename OptionsT::pointer N) {
205 static typename OptionsT::pointer getValuePtr(ilist_node_impl<OptionsT> *N) {
206 return static_cast<typename OptionsT::pointer>(N);
240 using pointer = typename OptionsT::pointer;
244 static node_type *getNodePtr(pointer N) {
252 static pointer getValuePtr(node_type *N) {
/freebsd-current/contrib/ntp/sntp/unity/
H A Dunity_fixture.c15 //If you decide to use the function pointer approach.
271 //Automatic pointer restoration functions
275 void ** pointer; member in struct:_PointerPair
288 void UnityPointer_Set(void ** pointer, void * newValue) argument
293 pointer_store[pointer_index].pointer = pointer;
294 pointer_store[pointer_index].old_value = *pointer;
295 *pointer = newValue;
304 *(pointer_store[pointer_index].pointer) =
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/typedef/
H A Dtst.TypedefDataAssign.d59 typedef int * pointer;
101 pointer p;
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_sync.c47 static const uint8_t *truncate(const uint8_t *pointer, size_t alignment) argument
49 uintptr_t raw = (uintptr_t) pointer;
57 static const uint8_t *align(const uint8_t *pointer, size_t alignment) argument
59 return truncate(pointer + alignment - 1, alignment);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/M68k/GISel/
H A DM68kLegalizerInfo.cpp27 const LLT p0 = LLT::pointer(0, 32);
/freebsd-current/stand/i386/btx/lib/
H A Dbtxv86.S50 pushl $__v86 # Push pointer
54 addl $0x4,%esp # Discard pointer
60 __v86_swap: xchgl %ebp,0x4(%esp,1) # Swap pointer, EBP
77 xchgl %ebp,0x4(%esp,1) # Swap pointer, EBP
/freebsd-current/stand/i386/btx/btxldr/
H A Dbtxldr.S30 .set MEM_ESP,0x1000 # New stack pointer
90 call putstr # pointer
95 addl $0x4,%ebx # bump pointer
101 cmpl $0x0, %esi # If the bootinfo pointer
108 movl %ebp,BA_BOOTINFO+4(%esp) # Update pointer
109 movl %edi,%ebp # Restore base pointer
200 addl %ebx,%edx # To pointer
218 addl %ebx,%esi # as pointer
220 addl %ebp,%edi # as pointer
299 movl $BDA_POS,%ebx # BDA pointer
[all...]
/freebsd-current/sys/modules/ipoib/
H A DMakefile16 CFLAGS+= -Wno-cast-qual -Wno-pointer-arith
/freebsd-current/sys/modules/mlx4ib/
H A DMakefile29 CFLAGS+= -Wno-cast-qual -Wno-pointer-arith
/freebsd-current/sys/modules/mlx5ib/
H A DMakefile32 CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS}
/freebsd-current/bin/sh/bltin/
H A Dbltin.h75 pointer stalloc(int);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dz_AIX_asm.S80 // Stack offsets relative to stack pointer:
180 std 2, 40(1) # Save the TOC pointer to the linkage area
183 ld 2, 8(3) # TOC pointer
184 ld 11, 16(3) # Environment pointer
191 ld 2, 40(1) # Restore TOC pointer from linkage area
234 // Stack offsets relative to stack pointer:
334 stw 2, 20(1) # Save the TOC pointer to the linkage area
337 lwz 2, 4(3) # TOC pointer
338 lwz 11, 8(3) # Environment pointer
345 lwz 2, 20(1) # Restore TOC pointer fro
[all...]

Completed in 318 milliseconds

1234567891011>>