Searched refs:to (Results 26 - 50 of 284) sorted by relevance

1234567891011>>

/haiku/src/libs/compat/openbsd_network/compat/sys/
H A Dmbuf.h16 /* back to OpenBSD KASSERT */
49 m_dup_pkthdr_openbsd(struct mbuf* to, const struct mbuf* from, int how) argument
51 return !m_dup_pkthdr(to, from, how);
56 m_tag_copy_chain_openbsd(struct mbuf* to, const struct mbuf* from, int how) argument
58 return !m_tag_copy_chain(to, from, how);
/haiku/headers/os/mail/
H A DMailMessage.h54 // ready to send via the appropriate channel. ReplyMessage()
66 void SetSubject(const char* to,
69 void SetReplyTo(const char* to,
72 void SetFrom(const char* to,
75 void SetTo(const char* to,
78 void SetCC(const char* to,
81 void SetBCC(const char* to);
82 void SetPriority(int to);
117 // Message will be set to the message file if not equal to NUL
[all...]
/haiku/src/libs/print/libprint/
H A DPrintUtils.cpp12 Permission is hereby granted, free of charge, to any person obtaining a copy of
13 this software and associated documentation files (the "Software"), to deal in
14 the Software without restriction, including without limitation the rights to
16 of the Software, and to permit persons to whom the Software is furnished to do
17 so, subject to the following conditions:
127 AddFields(BMessage* to, const BMessage* from, const char* excludeList[], argument
130 if (to == from)
145 if (!overwrite && to
[all...]
H A DHalftoneView.cpp45 BPoint to(x, red_bottom);
48 view.StrokeLine(from, to);
50 from.y = to.y+1;
51 to.y = green_bottom;
53 view.StrokeLine(from, to);
55 from.y = to.y+1;
56 to.y = blue_bottom;
58 view.StrokeLine(from, to);
60 from.y = to.y+1;
61 to
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DUtility.h29 /*! \a to must be a power of 2.
33 round_up(const IntType& value, const RoundType& to) argument
35 return (value + (to - 1)) & ~((IntType)to - 1);
39 /*! \a to must be a power of 2.
43 round_down(const IntType& value, const RoundType& to) argument
45 return value & ~((IntType)to - 1);
115 // rounds up to the next off_t boundary
124 // That's a stupid check, but the only method to differentiate the
/haiku/src/apps/switcher/
H A DPanelWindow.cpp103 BPoint to; local
110 to.y = from.y;
116 to.x = from.x;
123 to.x = screenFrame.left;
127 to.x = screenFrame.right - Bounds().Width();
131 to.y = screenFrame.top;
135 to.y = screenFrame.bottom - Bounds().Height();
139 MoveTo(from.x + _Factor() * (to.x - from.x),
140 from.y + _Factor() * (to.y - from.y));
/haiku/src/bin/network/traceroute/
H A Dfindsaddr-haiku.c24 findsaddr(const struct sockaddr_in *to, struct sockaddr_in *from) argument
34 request->destination = (struct sockaddr *)to;
/haiku/src/add-ons/kernel/network/stack/
H A Dancillary_data.h23 ancillary_data_container* to);
/haiku/src/apps/bootmanager/
H A DBootDrive.h27 BootMenuList& to);
/haiku/src/system/kernel/arch/generic/
H A DGenericVMPhysicalPageMapper.h37 virtual status_t MemcpyFromPhysical(void* to, phys_addr_t from,
39 virtual status_t MemcpyToPhysical(phys_addr_t to,
41 virtual void MemcpyPhysicalPage(phys_addr_t to,
/haiku/src/system/libroot/posix/glibc/locale/
H A Dgen-translit.pl45 my($to) = $2;
47 my($tolen) = cstrlen($to);
51 push(@tos, $to);
/haiku/src/system/kernel/arch/x86/paging/
H A Dx86_physical_page_mapper.h25 // Must be invoked with thread pinned to current CPU.
48 // Must be invoked with thread pinned to current CPU.
73 status_t MemcpyFromPhysical(void* to, phys_addr_t from, size_t length,
75 status_t MemcpyToPhysical(phys_addr_t to, const void* from,
77 void MemcpyPhysicalPage(phys_addr_t to, phys_addr_t from) override;
/haiku/src/system/libroot/posix/string/arch/x86_64/
H A Darch_string.cpp18 // __m128i resolves to a type with an attribute, which can't get into the
81 auto to = reinterpret_cast<uint64_t*>(destination); local
83 *to = *from;
84 to = reinterpret_cast<uint64_t*>(destination + length - 8);
86 *to = *from;
115 auto to = reinterpret_cast<__m128i*>(destination); local
120 copy_sse<4>(to, from);
121 to += 4;
126 table_sse[length / 16](to, from);
140 auto to local
[all...]
/haiku/src/system/kernel/arch/arm64/
H A DPMAPPhysicalPageMapper.h42 virtual status_t MemcpyFromPhysical(void* to, phys_addr_t from,
44 virtual status_t MemcpyToPhysical(phys_addr_t to,
47 virtual void MemcpyPhysicalPage(phys_addr_t to,
/haiku/src/apps/cortex/support/
H A Dset_tools.h16 * 3. The name of the author may not be used to endorse or promote products
36 // Tools to manipulate STL set types.
101 void map_value_copy(input_iter begin, input_iter end, output_iter to) { argument
103 *to = (*begin).second;
104 ++to;
109 // adapt a unary functor to a map (eek)
/haiku/src/tests/servers/app/gradients/
H A Dmain.cpp98 BPoint to(200, 0);
99 BGradientLinear l(from, to);
124 BGradientLinear lo(from, to);
175 BPoint to(275, 138);
176 BGradientLinear l(from, to);
185 BPoint to(138, 10);
186 BGradientLinear l(from, to);
/haiku/src/system/libnetwork/
H A Dsocket.cpp30 sockaddr_in *to = (sockaddr_in *)_to; local
32 memset(to, 0, sizeof(sockaddr));
33 to->sin_len = sizeof(sockaddr);
39 to->sin_family = AF_INET;
41 to->sin_family = from->sin_family;
43 to->sin_port = from->sin_port;
44 to->sin_addr.s_addr = from->sin_addr;
53 r5_sockaddr_in *to = (r5_sockaddr_in *)_to; local
55 if (to == NULL)
58 memset(to,
[all...]
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dtransform_procs.c26 /*! Transforms a 6-byte command to 10-byte one if required. Transformed command
30 \param cmd: SCSI command buffer to be transformed
48 scsi_cmd_rw_10 *to = (scsi_cmd_rw_10 *)(*rcmd); local
50 to->opcode = (from->opcode == READ_6) ? READ_10 : WRITE_10;
51 to->lba = B_HOST_TO_BENDIAN_INT32(((from->addr[0] & 0x1f) << 16)
53 to->lun = (from->addr[0] & CMD_LUN) >> CMD_LUN_SHIFT;
54 to->control = from->ctrl;
58 to->length = B_HOST_TO_BENDIAN_INT16((uint16)256);
60 to->length = B_HOST_TO_BENDIAN_INT16((uint16)from->len);
66 scsi_cmd_generic_10 *to local
[all...]
/haiku/src/system/kernel/arch/ppc/
H A Darch_cpu.cpp175 // TODO: all functions that use fault handlers need to be implemented
176 // in assembly due to problems passing in label addresses in gcc4.
179 arch_cpu_user_memcpy(void *to, const void *from, size_t size, argument
182 char *tmp = (char *)to;
202 /** \brief Copies at most (\a size - 1) characters from the string in \a from to
203 * the string in \a to, NULL-terminating the result.
205 * \param to Pointer to the destination C-string.
206 * \param from Pointer to the source C-string.
207 * \param size Size in bytes of the string buffer pointed to b
213 arch_cpu_user_strlcpy(char *to, const char *from, size_t size, addr_t *faultHandler) argument
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.h39 status_t Retrieve(int32 message, BPositionIO* to);
40 status_t GetHeader(int32 message, BPositionIO* to);
60 int32 message, BPositionIO* to,
/haiku/headers/private/fs_shell/
H A Dfssh_stdio.h21 extern int fssh_rename(const char *from, const char *to);
/haiku/headers/private/kernel/arch/m68k/
H A Darch_thread.h23 uint32 m68k_next_page_directory(Thread *from, Thread *to);
/haiku/headers/private/kernel/arch/
H A Dvm.h31 struct VMAddressSpace *to);
/haiku/src/kits/support/
H A DPointerList.cpp13 // - Rewrite to use STL
32 // TODO: The implementation of _PointerList_ should be completely rewritten to
83 // Method to be implemented by sub classes
184 // nothing to do
206 // nothing to do
227 // nothing to do
232 // need to adapt arguments and return value
377 _PointerList_::MoveItem(int32 from, int32 to) argument
379 if (from == to)
383 void* toItem = ItemAt(to);
[all...]
/haiku/headers/private/net/
H A DAddressUtilities.h94 status_t CopyTo(sockaddr* to) const
96 return fModule->set_to(to, fAddress);
99 status_t CopyTo(sockaddr_storage* to) const
101 return CopyTo((sockaddr*)to);
212 status_t CopyTo(sockaddr* to) const
214 return fModule->set_to(to, fAddress);
217 status_t CopyTo(sockaddr_storage* to) const
219 return CopyTo((sockaddr*)to);

Completed in 125 milliseconds

1234567891011>>