Searched refs:from (Results 26 - 50 of 386) sorted by relevance

1234567891011>>

/haiku/src/system/libroot/posix/locale/
H A DLocaleInternal.cpp45 int from, to; local
48 from = 1;
51 from = to = category;
54 for (int lc = from; lc <= to; lc++) {
/haiku/src/servers/app/
H A DServerBitmap.h73 inline void ShallowCopy(const ServerBitmap *from);
79 BPoint from, BPoint to, int32 width,
137 ServerBitmap::ShallowCopy(const ServerBitmap* from) argument
139 if (!from)
142 fBuffer = from->fBuffer;
143 fWidth = from->fWidth;
144 fHeight = from->fHeight;
145 fBytesPerRow = from->fBytesPerRow;
146 fSpace = from->fSpace;
147 fFlags = from
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/gpt/
H A Dutility.h21 size_t to_utf8(const uint16* from, size_t maxFromLength, char* to, size_t toSize);
25 size_t to_ucs2(const char* from, size_t fromLength, uint16* to,
/haiku/src/system/kernel/arch/generic/
H A DGenericVMPhysicalPageMapper.cpp84 GenericVMPhysicalPageMapper::MemcpyFromPhysical(void* to, phys_addr_t from, argument
87 return generic_vm_memcpy_from_physical(to, from, length, user);
92 GenericVMPhysicalPageMapper::MemcpyToPhysical(phys_addr_t to, const void* from, argument
95 return generic_vm_memcpy_to_physical(to, from, length, user);
101 phys_addr_t from)
103 generic_vm_memcpy_physical_page(to, from);
100 MemcpyPhysicalPage(phys_addr_t to, phys_addr_t from) argument
H A Dgeneric_vm_physical_page_ops.cpp42 generic_vm_memcpy_from_physical(void* _to, phys_addr_t from, size_t length, argument
46 phys_addr_t pageOffset = from % B_PAGE_SIZE;
55 status_t error = vm_get_physical_page_current_cpu(from - pageOffset,
72 from += toCopy;
85 const uint8* from = (const uint8*)_from; local
101 error = user_memcpy((void*)(virtualAddress + pageOffset), from,
104 memcpy((void*)(virtualAddress + pageOffset), from, toCopy);
112 from += toCopy;
125 generic_vm_memcpy_physical_page(phys_addr_t to, phys_addr_t from) argument
132 status_t error = vm_get_physical_page_current_cpu(from,
[all...]
/haiku/src/tests/kits/app/bmessenger/
H A DMessengerAssignmentTester.cpp61 BMessenger &operator=(const BMessenger &from)
62 @case 1 from is uninitialized
69 BMessenger from; local
71 CHK(&(messenger = from) == &messenger);
81 BMessenger &operator=(const BMessenger &from)
82 @case 2 from is properly initialized to a local target
85 Target() should return the same values as for from.
95 // create the from messenger
96 BMessenger from(NULL, looper, &result);
97 CHK(from
[all...]
/haiku/src/kits/app/
H A DMessageFilter.cpp69 BMessageFilter::operator=(const BMessageFilter& from) argument
71 fFiltersAny = from.FiltersAnyCommand();
72 fWhat = from.Command();
73 fDelivery = from.MessageDelivery();
74 fSource = from.MessageSource();
75 fFilterFunction = from.FilterFunction();
77 SetLooper(from.Looper());
/haiku/src/apps/switcher/
H A DPanelWindow.cpp102 BPoint from; local
108 from.y = screenFrame.top
110 to.y = from.y;
114 from.x = screenFrame.left
116 to.x = from.x;
122 from.x = screenFrame.left - Bounds().Width();
126 from.x = screenFrame.right;
130 from.y = screenFrame.top - Bounds().Height();
134 from.y = screenFrame.bottom;
139 MoveTo(from
[all...]
/haiku/src/apps/haikudepot/model/
H A DCreateUserDetail.cpp20 CreateUserDetail::CreateUserDetail(BMessage* from) argument
22 from->FindString(KEY_NICKNAME, &fNickname);
23 from->FindString(KEY_PASSWORD_CLEAR, &fPasswordClear);
24 from->FindBool(KEY_IS_PASSWORD_REPEATED, &fIsPasswordRepeated);
25 from->FindString(KEY_EMAIL, &fEmail);
26 from->FindString(KEY_CAPTCHA_TOKEN, &fCaptchaToken);
27 from->FindString(KEY_CAPTCHA_RESPONSE, &fCaptchaResponse);
28 from->FindString(KEY_LANGUAGE_ID, &fLanguageId);
29 from->FindString(KEY_AGREED_USER_USAGE_CONDITIONS_CODE,
H A DUserUsageConditions.cpp18 UserUsageConditions::UserUsageConditions(BMessage* from) argument
26 if (from->FindInt16(KEY_MINIMUM_AGE, &minimumAge) != B_OK)
30 if (from->FindString(KEY_CODE, &fCode) != B_OK)
32 if (from->FindString(KEY_COPY_MARKDOWN, &fCopyMarkdown) != B_OK)
H A DPasswordRequirements.cpp26 PasswordRequirements::PasswordRequirements(BMessage* from) argument
34 if (from->FindUInt32(KEY_MIN_PASSWORD_LENGTH, &value) == B_OK) {
38 if (from->FindUInt32(
43 if (from->FindUInt32(
H A DScreenshotCoordinate.cpp22 ScreenshotCoordinate::ScreenshotCoordinate(const BMessage* from) argument
24 from->FindString(kCodeKey, &fCode);
25 from->FindUInt16(kWidthKey, &fWidth);
26 from->FindUInt16(kHeightKey, &fHeight);
H A DUserDetail.cpp19 UserUsageConditionsAgreement::UserUsageConditionsAgreement(BMessage* from) argument
21 from->FindUInt64(KEY_TIMESTAMP_AGREED, &fTimestampAgreed);
22 from->FindString(KEY_CODE, &fCode);
23 from->FindBool(KEY_IS_LATEST, &fIsLatest);
108 UserDetail::UserDetail(BMessage* from) argument
111 if (from->FindMessage(KEY_AGREEMENT,
115 from->FindString(KEY_NICKNAME, &fNickname);
/haiku/src/kits/interface/
H A DGridView.cpp29 BGridView::BGridView(BMessage* from) argument
31 BView(from)
60 BGridView::Instantiate(BMessage* from) argument
62 if (validate_instantiation(from, "BGridView"))
63 return new BGridView(from);
H A DGroupView.cpp29 BGroupView::BGroupView(BMessage* from) argument
31 BView(from)
54 BGroupView::Instantiate(BMessage* from) argument
56 if (validate_instantiation(from, "BGroupView"))
57 return new BGroupView(from);
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.h38 CommandActuator(BMessage* from);
68 LaunchCommandActuator(BMessage* from);
73 static BArchivable* Instantiate(BMessage* from);
94 BeepCommandActuator(BMessage* from);
102 static BArchivable* Instantiate(BMessage* from);
113 BMessage* from);
121 static BArchivable* Instantiate(BMessage * from);
149 MIMEHandlerCommandActuator(BMessage* from);
159 static BArchivable* Instantiate(BMessage* from);
171 MouseCommandActuator(BMessage* from);
[all...]
/haiku/src/tests/system/glue/
H A DStackAlign.cpp9 #define CHECK_STACK_ALIGN(from) \
12 printf("In %s, stack is NOT aligned: %lx\n", from, gStackPointer); \
14 printf("In %s, stack is aligned!\n", from);
39 // Test from called function
42 // Test from thread
48 // Test from signal handler
/haiku/src/system/kernel/arch/x86/paging/
H A Dx86_physical_page_mapper_mapped.h158 auto from = (void*)(_from + KERNEL_PMAP_BASE);
161 return user_memcpy(to, from, length);
163 memcpy(to, from, length);
170 X86PhysicalPageMapper::MemcpyToPhysical(phys_addr_t _to, const void* from, argument
179 return user_memcpy(to, from, length);
181 memcpy(to, from, length);
188 phys_addr_t from)
190 memcpy((void*)(to + KERNEL_PMAP_BASE), (void*)(from + KERNEL_PMAP_BASE),
187 MemcpyPhysicalPage(phys_addr_t to, phys_addr_t from) argument
/haiku/headers/private/kernel/arch/mipsel/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/src/add-ons/translators/wonderbrush/support/
H A Dbitmap_compression.h21 extract_bitmap(BBitmap** bitmap, const BMessage* from, const char* fieldName);
/haiku/src/system/libroot/posix/glibc/include/
H A Dstring.h7 #define __memcpy(to, from, size) memcpy(to, from, size)
26 __mempcpy(void *to, const void *from, size_t size) argument
28 memcpy(to, from, size);
/haiku/headers/private/kernel/boot/platform/routerboard_mipsel/
H A Dplatform_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
/haiku/headers/private/kernel/boot/platform/u-boot/
H A Dplatform_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
/haiku/headers/private/kernel/boot/platform/openfirmware/
H A Dplatform_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
/haiku/src/libs/compat/openbsd_network/compat/sys/
H A Dmbuf.h49 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);

Completed in 167 milliseconds

1234567891011>>