Searched refs:from (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/haiku/headers/os/drivers/pcmcia/
H A Dmem_op.h47 static inline void copy_pc_to_user(void *to, const void *from, size_t n) argument
52 put_user(readl_ns(from), (int *)to);
53 (char *)from += 4; (char *)to += 4; n -= 4;
56 put_user(readb((char *)from++), (char *)to++);
59 static inline void copy_user_to_pc(void *to, const void *from, size_t n) argument
66 get_user(l, (int *)from);
68 (char *)to += 4; (char *)from += 4; n -= 4;
71 get_user(c, (char *)from++);
78 static inline void copy_from_pc(void *to, const void *from, size_t n) argument
83 *(u_short *)to = readw_ns(from);
90 copy_to_pc(void *to, const void *from, size_t n) argument
102 copy_pc_to_user(void *to, const void *from, size_t n) argument
114 copy_user_to_pc(void *to, const void *from, size_t n) argument
[all...]
/haiku/src/system/libroot/posix/stdio/
H A Drename.c16 rename(const char *from, const char *to) argument
18 RETURN_AND_SET_ERRNO(_kern_rename(-1, from, -1, to));
23 renameat(int fromFD, const char* from, int toFD, const char* to) argument
25 RETURN_AND_SET_ERRNO(_kern_rename(fromFD, from, toFD, to));
/haiku/src/servers/app/
H A DAngle.h60 Angle &operator=(const Angle &from);
61 Angle &operator=(const float &from);
62 Angle &operator=(const long &from);
63 Angle &operator=(const int &from);
65 bool operator==(const Angle &from);
66 bool operator!=(const Angle &from);
67 bool operator<(const Angle &from);
68 bool operator>(const Angle &from);
69 bool operator>=(const Angle &from);
70 bool operator<=(const Angle &from);
[all...]
H A DAngle.cpp305 Angle::operator=(const Angle &from) argument
307 fAngleValue = from.fAngleValue;
313 Angle::operator=(const float &from) argument
315 fAngleValue = from;
321 Angle::operator=(const long &from) argument
323 fAngleValue = (float)from;
329 Angle::operator=(const int &from) argument
331 fAngleValue = (float)from;
337 Angle::operator==(const Angle &from) argument
339 return (fAngleValue == from
344 operator !=(const Angle &from) argument
351 operator >(const Angle &from) argument
358 operator <(const Angle &from) argument
365 operator >=(const Angle &from) argument
372 operator <=(const Angle &from) argument
[all...]
/haiku/src/system/boot/loader/
H A Dmisc.cpp13 user_memcpy(void* to, const void* from, size_t size) argument
15 memcpy(to, from, size);
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dvm.cpp18 user_memcpy(void *to, const void *from, size_t size) argument
20 memcpy(to, from, size);
26 user_strlcpy(char *to, const char *from, size_t size) argument
28 return strlcpy(to, from, size);
/haiku/headers/private/kernel/arch/
H A Duser_memory.h18 status_t _arch_cpu_user_memcpy(void* to, const void* from, size_t size,
20 ssize_t _arch_cpu_user_strlcpy(char* to, const char* from, size_t size,
29 arch_cpu_user_memcpy(void* to, const void* from, size_t size) argument
31 return _arch_cpu_user_memcpy(to, from, size,
37 arch_cpu_user_strlcpy(char* to, const char* from, size_t size) argument
39 return _arch_cpu_user_strlcpy(to, from, size,
/haiku/src/system/kernel/arch/generic/
H A Dgeneric_vm_physical_page_ops.h18 status_t generic_vm_memcpy_from_physical(void* to, phys_addr_t from,
20 status_t generic_vm_memcpy_to_physical(phys_addr_t to, const void* from,
22 void generic_vm_memcpy_physical_page(phys_addr_t to, phys_addr_t from);
/haiku/headers/private/kernel/boot/platform/bios_ia32/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku/headers/private/kernel/boot/platform/efi/
H A Dplatform_stage2_args.h10 # error This file is included from <boot/stage2_args.h> only
/haiku/headers/private/kernel/boot/platform/openfirmware/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku/src/system/kernel/arch/arm64/
H A DPMAPPhysicalPageMapper.cpp39 PMAPPhysicalPageMapper::MemcpyFromPhysical(void* to, phys_addr_t from, size_t length, bool user)
44 ASSERT(from < KERNEL_PMAP_SIZE);
45 memcpy(to, reinterpret_cast<void*>(KERNEL_PMAP_BASE + from), length);
52 PMAPPhysicalPageMapper::MemcpyToPhysical(phys_addr_t to, const void* from, size_t length, bool user)
58 memcpy(reinterpret_cast<void*>(KERNEL_PMAP_BASE + to), from, length);
65 PMAPPhysicalPageMapper::MemcpyPhysicalPage(phys_addr_t to, phys_addr_t from)
68 ASSERT(from < KERNEL_PMAP_SIZE);
70 reinterpret_cast<void*>(KERNEL_PMAP_BASE + from), B_PAGE_SIZE);
/haiku/src/kits/interface/
H A DCardView.cpp27 BCardView::BCardView(BMessage* from) argument
29 BView(from)
58 BCardView::Instantiate(BMessage* from) argument
60 if (validate_instantiation(from, "BCardView"))
61 return new BCardView(from);
/haiku/src/apps/cortex/Persistence/
H A DStringContent.cpp17 * derived from this software without specific prior written permission.
100 int32 from = last; local
101 for(; from > 0 && isspace(content[from]); --from) {}
102 if(from < last)
103 content.Remove(from+1, last-from);
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DBitFieldTesters.cpp24 BitFieldTester::BitFieldTester(BMessage* from) argument
26 BArchivable(from)
48 ConstantFieldTester::ConstantFieldTester(BMessage* from) argument
50 BitFieldTester(from)
52 if (from->FindBool("ctRes", &fResult) != B_OK)
67 ConstantFieldTester::Instantiate(BMessage* from) argument
69 if (validate_instantiation(from, "ConstantFieldTester"))
70 return new ConstantFieldTester(from);
95 HasBitsFieldTester::HasBitsFieldTester(BMessage* from) argument
97 BitFieldTester(from)
119 Instantiate(BMessage* from) argument
152 NotFieldTester(BMessage* from) argument
191 Instantiate(BMessage* from) argument
228 MinMatchFieldTester(BMessage* from) argument
284 Instantiate(BMessage* from) argument
[all...]
H A DBitFieldTesters.h25 BitFieldTester(BMessage* from);
38 ConstantFieldTester(BMessage* from);
42 static BArchivable* Instantiate(BMessage* from);
57 HasBitsFieldTester(BMessage* from);
61 static BArchivable* Instantiate(BMessage* from);
76 NotFieldTester(BMessage* from);
81 static BArchivable* Instantiate(BMessage* from);
97 MinMatchFieldTester(BMessage* from);
104 static BArchivable* Instantiate(BMessage* from);
/haiku/headers/private/app/
H A DMessageAdapter.h31 const BMessage* from);
33 static status_t Flatten(uint32 format, const BMessage* from,
35 static status_t Flatten(uint32 format, const BMessage* from,
43 static status_t ConvertToKMessage(const BMessage* from,
47 static status_t _ConvertFromKMessage(const KMessage* from,
50 static ssize_t _R5FlattenedSize(const BMessage* from);
53 const BMessage* from, char* buffer,
/haiku/src/build/libbe/app/
H A DMessenger.cpp50 \param from The messenger to be copied.
52 BMessenger::BMessenger(const BMessenger& from) argument
54 fPort(from.fPort),
55 fHandlerToken(from.fHandlerToken),
56 fTeam(from.fTeam)
73 \param from the messenger to be copied.
77 BMessenger::operator=(const BMessenger &from) argument
79 if (this != &from) {
80 fPort = from.fPort;
81 fHandlerToken = from
[all...]
/haiku/headers/build/os/support/
H A DArchivable.h54 BArchivable(BMessage* from);
56 static BArchivable *Instantiate(BMessage* from);
75 bool validate_instantiation(BMessage* from,
/haiku/headers/private/kernel/boot/platform/routerboard_mipsel/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku/headers/private/kernel/boot/platform/u-boot/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku/headers/private/kernel/boot/platform/amiga_m68k/
H A Dplatform_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku/headers/private/kernel/boot/platform/atari_m68k/
H A Dplatform_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only

Completed in 336 milliseconds

1234567891011>>