Searched refs:to (Results 101 - 125 of 284) sorted by relevance

1234567891011>>

/haiku/src/apps/icon-o-matic/transformable/
H A DPerspectiveBox.cpp79 // convert to canvas view coordinates
344 // convert to canvas zoom level
373 PerspectiveBox::_StrokeBWLine(BView* into, BPoint from, BPoint to) const
375 // find out how to offset the second line optimally
378 float xDiff = to.x - from.x;
379 float yDiff = to.y - from.y;
396 into->StrokeLine(from, to, B_SOLID_LOW);
398 to += offset;
399 into->StrokeLine(from, to, B_SOLID_HIGH);
/haiku/src/bin/
H A Dmkindex.cpp12 /** Description: Adds an index to a volume. */
43 copy_indexes(dev_t from, dev_t to, bool verbose) argument
63 if (fs_create_index(to, dirent->d_name, info.type, 0) != 0) {
85 " -d, --volume=PATH\ta path on the volume to which the index will be added,\n"
86 "\t\t\tdefaults to current volume.\n"
89 "\t\t\tDefaults to \"string\".\n"
90 " --copy-from\tpath to volume to copy the indexes from.\n"
/haiku/headers/os/net/
H A DNetEndpoint.h60 const BNetAddress& to, int flags = 0);
61 virtual int32 SendTo(BNetBuffer& buffer, const BNetAddress& to,
H A DNetworkRoute.h66 // unimplemented to disallow copying
69 sockaddr*& to);
/haiku/src/system/libroot/posix/arch/m68k/
H A Dsigsetjmp.S18 #warning M68K: do we want to save a7 there ??
/haiku/src/apps/showimage/
H A DFilter.cpp158 // wait for threads to exit
160 // ready to start again
169 // tell FilterThreads to stop calculations
633 int32 to; member in struct:__anon1668
682 cd->to = (intType)fToX;
685 cd->alpha1 = fToX - cd->to;
704 const intType toX = cd->to;
746 // Filter (distribution of error to adjacent pixels, X is current pixel):
821 // left to right
867 // Note: Alogrithm has good results with "left to righ
934 int32 from, to, height, imageHeight; local
1098 int32 from, to; local
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DBTree.cpp136 BTree::Node::_CalculateSpace(uint32 from, uint32 to, uint8 type) const argument
138 if (to < from || to >= ItemCount())
142 return sizeof(btrfs_index) * (to - from + 1);
146 result += sizeof(btrfs_entry) * (to - from + 1);
150 - Item(to)->Offset();
174 BTree::Node::_Copy(const Node* origin, uint32 at, uint32 from, uint32 to, argument
177 TRACE("Node::_Copy() at: %d from: %d to: %d length: %d\n",
178 at, from, to, length);
181 memcpy(Item(at), origin->Item(from), origin->_CalculateSpace(from, to));
481 int from, to; local
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp145 ReportProgress(1, 0, B_TRANSLATE("Connect to server" B_UTF8_ELLIPSIS));
178 printf("POP3: Messages to download: %i\n", (int)toDownload.CountStrings());
213 printf("POP3: Failed to download body %s\n ", uid);
224 printf("POP3: Failed to download header %s\n ", uid);
318 ReportProgress(0, 0, B_TRANSLATE("Connecting to POP3 server"
327 BString errorMessage(B_TRANSLATE("Error while connecting to server %serv"));
529 // Don't remove ids from fUniqueIDs, the indices have to stay the same when
533 // TODO: at some point the purged manifest should be written to disk
539 POP3Protocol::Retrieve(int32 message, BPositionIO* to) argument
543 status_t status = RetrieveInternal(cmd.String(), message, to, tru
564 GetHeader(int32 message, BPositionIO* to) argument
573 RetrieveInternal(const char* command, int32 message, BPositionIO* to, bool postProgress) argument
[all...]
/haiku/src/kits/interface/
H A DListView.cpp151 // NOTE: According to BeBook, BListView does not free the items itself.
283 // and doesn't want us to be messing with flags.
642 // instead of every class having to reimplement it, once some sane
741 // If where is above top, scroll to the first item,
742 // else if where is below bottom scroll to the last item.
758 // scroll to item under mouse while button is pressed
917 // No need to adapt selection, as this item is the last in the list
1391 // Hook method to be implemented by subclasses
1422 BListView::MoveItem(int32 from, int32 to) argument
1427 data.move.to
1757 _Select(int32 from, int32 to, bool extend) argument
1984 _MoveItem(int32 from, int32 to) argument
2063 _RescanSelection(int32 from, int32 to) argument
[all...]
/haiku/headers/private/fs_shell/
H A Dfssh_unistd.h55 extern int fssh_symlink(const char *from, const char *to);
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamFilterInterface.h19 // stack up this filter on top of 'to'
20 status_t ChainFilter(CamFilterInterface *to);
/haiku/src/apps/icon-o-matic/
H A DIconEditorApp.h66 BFilePanel* to);
/haiku/src/system/libroot/posix/glibc/arch/ppc/
H A Drshift.S16 License along with the GNU C Library; if not, write to the Free
32 slwi r10,r5,2 /* convert limbs to bytes */
37 addi r7,r3,-4 # move adjusted res_ptr to free return reg
/haiku/headers/os/support/
H A DList.h39 bool MoveItem(int32 from, int32 to);
/haiku/src/apps/mail/
H A DHeader.h8 Permission is hereby granted, free of charge, to any person obtaining a copy of
9 this software and associated documentation files (the "Software"), to deal in
10 the Software without restriction, including without limitation the rights to
12 of the Software, and to permit persons to whom the Software is furnished to do
13 so, subject to the following conditions:
15 The above copyright notice and this permission notice applies to all licensees
26 used in advertising or otherwise to promote the sale, use or other dealings in
66 void SetTo(const char* to);
[all...]
/haiku/headers/private/graphics/common/
H A Ddebug_ext.h17 // flow: used to trace execution
29 // to specify the module that created the message you have
30 // to define a string called
43 // you _can_ ask to delay execution after each printed message
73 #error you need to define DEBUG_MSG_PREFIX with the module name
/haiku/src/add-ons/kernel/network/stack/
H A Dinterfaces.h41 status_t SetLocal(const sockaddr* to);
42 status_t SetDestination(const sockaddr* to);
43 status_t SetMask(const sockaddr* to);
59 static status_t Set(sockaddr** _address, const sockaddr* to);
79 // support for binding to an interface
/haiku/src/apps/codycam/
H A DSpawningUploadClient.h47 ssize_t ReadReply(BString* to);
/haiku/src/system/kernel/arch/sparc/
H A Darch_vm.cpp45 TRACE(("arch_vm_init_end(): %lu virtual ranges to keep:\n",
71 panic("arch_vm_init_end(): Failed to create area for boot loader "
89 arch_vm_aspace_swap(struct VMAddressSpace *from, struct VMAddressSpace *to) argument
92 // of dying. It switches to the kernel team and does whatever cleanup is
95 // It is however not necessary to change the page directory. Userland team's
/haiku/headers/private/kernel/arch/arm/
H A Darch_thread_types.h51 // used to track interrupts on this thread
60 // a char in C++. So we have to put a dummy in to be able to use the struct
75 void arm_context_switch(struct arch_thread* from, struct arch_thread* to);
/haiku/headers/private/kernel/util/
H A Dring_buffer.h47 size_t ring_buffer_move(struct ring_buffer *to, ssize_t length, struct ring_buffer *from);
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php23 // relative path to the vnc java applet jar
24 // you must *copy* (apache doesn't seem to like symlinks) it there.
32 // to use the tightvnc applet instead (supports > 8bpp):
37 // (you will have to move the VncViewer.jar file around)
71 // timeout before the demo session is killed, as argument to /bin/sleep
74 // path to qemu binary
91 // absolute path to the image.
110 // uncomment if you want to pass your Sonix webcam device through
111 // migth need to update VID:PID
399 echo "Check to enabl
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/pcnet/dev/le/
H A Dlance.c9 * This code is derived from software contributed to The NetBSD Foundation
39 * This code is derived from software contributed to Berkeley by
51 * may be used to endorse or promote products derived from this software
299 /* Set the current media. This may require the chip to be stopped. */
317 /* Try to initialize the LANCE. */
321 /* Wait for initialization to finish. */
335 if_printf(ifp, "controller failed to initialize\n");
342 * Routine to copy from mbuf chain to transmit buffer in
643 * Just call memcpy() to d
649 lance_copyfrombuf_contig(struct lance_softc *sc, void *to, int boff, int len) argument
[all...]
/haiku/src/kits/mail/
H A DMailMessage.cpp208 //---I am ashamed to have the written the code between here and the next comment
209 // ... and you still managed to get it wrong ;-)), axeld.
281 /* The usual values are a number from 1 to 5, or one of three words:
336 BEmailMessage::SetTo(const char* to, uint32 charset, mail_encoding encoding) argument
338 SetHeaderField("To", to, charset, encoding);
359 BEmailMessage::SetPriority(int to) argument
363 if (to < 1)
364 to = 1;
365 if (to > 5)
366 to
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug.cpp58 # define va_copy(to, from) __va_copy(to, from)
63 void* to; member in struct:debug_memcpy_parameters
69 char* to; member in struct:debug_strlcpy_parameters
78 // separates panic() message from command list to execute
253 // move the following chars to make room for the ones to insert
483 kputs("\x1b[1D"); // move to the left one
502 // All the following needs to be transparent for the
504 // we have to ge
1938 debug_memcpy(team_id teamID, void* to, const void* from, size_t size) argument
1992 debug_strlcpy(team_id teamID, char* to, const char* from, size_t size) argument
[all...]

Completed in 378 milliseconds

1234567891011>>