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

1234567891011>>

/haiku-fatelf/src/bin/gdb/libiberty/
H A Dbcmp.c20 bcmp (from, to, count)
21 char *from, *to;
28 if (*from++ != *to++)
/haiku-fatelf/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-fatelf/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-fatelf/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-fatelf/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-fatelf/headers/private/mail/
H A Ddes.h8 /* des.h - adapted from d3des.h:
44 /* from[8] to[8]
46 * internal key register) one block of eight bytes at address 'from'
50 extern void des_encrypt(char *from,char *to);
51 extern void des_decrypt(char *from,int fromLength,char *to);
/haiku-fatelf/src/bin/coreutils/man/
H A Dbasename.x2 basename \- strip directory and suffix from filenames
H A Dcut.x2 cut \- remove sections from each line of files
H A Ddirname.x2 dirname \- strip non-directory suffix from file name
H A Dtee.x2 tee \- read from standard input and write to standard output and files
/haiku-fatelf/src/system/boot/loader/
H A Dvm.cpp13 user_memcpy(void* to, const void* from, size_t size) argument
15 memcpy(to, from, size);
/haiku-fatelf/src/system/libroot/posix/glibc/string/
H A Dswab.c24 const char *from = (const char *) bfrom; local
30 const char b0 = from[--n], b1 = from[--n];
/haiku-fatelf/src/bin/gawk/
H A Dylwrap102 from="$1"
105 if test $from = "y.tab.c"; then
106 from="y_tab.c"
108 if test $from = "y.tab.h"; then
109 from="y_tab.h"
113 if test -f "$from"; then
131 FROM=`echo "$from" | sed \
137 sed "/^#/{s,$input_rx,,;s,$from,$2,;s,$FORM,$TO,;}" "$from" >"$target" ||
/haiku-fatelf/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-fatelf/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-fatelf/headers/private/kernel/boot/platform/cfe/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku-fatelf/headers/private/kernel/boot/platform/openfirmware/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku-fatelf/src/add-ons/kernel/partitioning_systems/gpt/
H A Dutility.h21 void to_utf8(const uint16* from, size_t maxFromLength, char* to, size_t toSize);
25 void to_ucs2(const char* from, size_t fromLength, uint16* to,
/haiku-fatelf/src/bin/bash/lib/sh/
H A Drename.c42 rename (from, to)
43 const char *from, *to;
47 if (stat (from, &fb) < 0)
63 if (link (from, to) < 0)
66 if (unlink (from) < 0 && errno != ENOENT)
/haiku-fatelf/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_NO_ERROR)
67 ConstantFieldTester::Instantiate(BMessage* from) argument
69 if (validate_instantiation(from, "ConstantFieldTester"))
70 return new ConstantFieldTester(from);
94 HasBitsFieldTester::HasBitsFieldTester(BMessage* from) argument
96 BitFieldTester(from)
117 Instantiate(BMessage* from) argument
149 NotFieldTester(BMessage* from) argument
189 Instantiate(BMessage* from) argument
225 MinMatchFieldTester(BMessage* from) argument
282 Instantiate(BMessage* from) argument
[all...]
/haiku-fatelf/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-fatelf/src/build/libbe/app/
H A DMessenger.cpp55 \param from The messenger to be copied.
57 BMessenger::BMessenger(const BMessenger& from) argument
59 fPort(from.fPort),
60 fHandlerToken(from.fHandlerToken),
61 fTeam(from.fTeam)
78 \param from the messenger to be copied.
82 BMessenger::operator=(const BMessenger &from) argument
84 if (this != &from) {
85 fPort = from.fPort;
86 fHandlerToken = from
[all...]
/haiku-fatelf/headers/build/os/support/
H A DArchivable.h54 BArchivable(BMessage* from);
56 static BArchivable *Instantiate(BMessage* from);
75 _IMPEXP_BE bool validate_instantiation(BMessage* from,
/haiku-fatelf/src/libs/zlib/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
208 from = out - dist;
210 PUP(out) = PUP(from);
216 from = window - OFF;
218 from += wsize - op;
219 if (op < len) { /* some from window */
222 PUP(out) = PUP(from);
[all...]

Completed in 143 milliseconds

1234567891011>>