Searched refs:current (Results 226 - 250 of 331) sorted by relevance

1234567891011>>

/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DBlockAllocator.cpp40 // The current implementation is only slightly optimized and could probably
48 block_run current; member in struct:check_cookie
795 // the current directory inode is still locked in memory
796 put_vnode(fVolume->ID(), fVolume->ToVnode(cookie->current));
870 if (!cookie->stack.Pop(&cookie->current)) {
881 Vnode vnode(fVolume, cookie->current);
884 FATAL(("check: Could not open inode at %Ld\n", fVolume->ToBlock(cookie->current)));
889 FATAL(("check: inode at %Ld should have been a directory\n", fVolume->ToBlock(cookie->current)));
895 FATAL(("check: could not open b+tree from inode at %Ld\n", fVolume->ToBlock(cookie->current)));
933 put_vnode(fVolume->ID(), fVolume->ToVnode(cookie->current));
[all...]
/haiku-fatelf/src/apps/deskcalc/
H A DExpressionTextView.cpp80 BString current = Text(); local
96 if (current != Text())
302 // increase the current digit value with one
387 // save current expression
/haiku-fatelf/src/bin/gawk/
H A Dio.c2128 FILE *current; local
2131 current = popen(cmd, binmode("r"));
2136 if (current == NULL)
2138 os_close_on_exec(fileno(current), cmd, "pipe", "from");
2139 rp->iop = iop_alloc(fileno(current), cmd, NULL);
2141 (void) pclose(current);
2142 current = NULL;
2144 rp->ifp = current;
2177 int current; local
2186 if ((current
[all...]
H A DMakefile62 ACLOCAL = ${SHELL} /Dano/home/obos/current/src/apps/bin/gawk/missing --run aclocal-1.7
66 AMTAR = ${SHELL} /Dano/home/obos/current/src/apps/bin/gawk/missing --run tar
67 AUTOCONF = ${SHELL} /Dano/home/obos/current/src/apps/bin/gawk/missing --run autoconf
68 AUTOHEADER = ${SHELL} /Dano/home/obos/current/src/apps/bin/gawk/missing --run autoheader
69 AUTOMAKE = ${SHELL} /Dano/home/obos/current/src/apps/bin/gawk/missing --run automake-1.7
109 MAKEINFO = ${SHELL} /Dano/home/obos/current/src/apps/bin/gawk/missing --run makeinfo
158 install_sh = /Dano/home/obos/current/src/apps/bin/gawk/install-sh
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dltmain.sh174 # is ksh but when the shell is invoked as "sh" and the current value of
242 # Echo program name prefixed message, along with the current mode
974 # FAIL_CMD may read-access the current command in variable CMD!
1156 continue # The current "srcfile" will either be retained or
1179 # Accept the current argument as the source file.
1180 # The previous "srcfile" becomes the current argument.
3720 /* empty path: current directory */
5630 func_arith $current - $age
6185 # use the current revision as the major version
6193 current
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp647 // update all current iterators
778 // move the attributes after the current one
844 // update all current iterators
1461 int32 current = (start % indirectSize) / directSize; local
1465 + current / runsPerBlock);
1469 run = indirect[current % runsPerBlock];
1474 + (current * directSize);
1489 int32 current = -1; local
1490 while (++current < runsPerBlock) {
1491 if (indirect[current]
1510 int32 current = -1; local
[all...]
H A DBlockAllocator.cpp35 // The current implementation is only slightly optimized and could probably
191 block_run current; member in struct:check_cookie
1282 // the current directory inode is still locked in memory
1283 put_vnode(fVolume->FSVolume(), fVolume->ToVnode(fCheckCookie->current));
1354 if (!fCheckCookie->stack.Pop(&fCheckCookie->current)) {
1378 Vnode vnode(fVolume, fCheckCookie->current);
1382 fVolume->ToBlock(fCheckCookie->current)));
1404 "\n", fVolume->ToBlock(fCheckCookie->current)));
1442 fVolume->ToVnode(fCheckCookie->current));
/haiku-fatelf/src/bin/network/telnet/
H A Dtelnet.c210 * is in disagreement as to what the current state should be.
2152 * the current address is a user data character, or it will
2154 * if the current address is a TELNET IAC ("I Am a Command")
2159 nextitem(char *current)
2161 if ((*current&0xff) != IAC) {
2162 return current+1;
2164 switch (*(current+1)&0xff) {
2169 return current+3;
2172 char *look = current+2;
2183 return current
[all...]
/haiku-fatelf/src/system/kernel/fs/
H A Drootfs.cpp87 struct rootfs_vnode* current; member in struct:rootfs_dir_cookie
212 if (cookie->current == vnode)
213 cookie->current = vnode->dir_next;
689 cookie->current = vnode->stream.dir.dir_head;
757 childNode = cookie->current;
783 cookie->current = nextChildNode;
800 cookie->current = vnode->stream.dir.dir_head;
/haiku-fatelf/src/preferences/keymap/
H A DKeymapWindow.cpp144 // Try and find the current map name in the two list views (if the name
148 KeymapListItem* current local
151 fCurrentMap.Load(current->EntryRef());
686 /*! Marks the menu items corresponding to the dead key state of the current
790 //! Saves current map to the "Key_map" file.
917 BStringItem* current = dynamic_cast<BStringItem *>(view->ItemAt(i)); local
918 if (current != NULL && fCurrentMapName == current->Text()) {
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dprint-canon.c462 /* function returns the current set printmode (specified by resolution) */
512 /* function returns the best ink_type for the current mode */
1702 canon_channel_t* current; local
1709 current = &(privdata->channels[privdata->num_channels]);
1712 current->name = ink->channel;
1713 current->props = ink->ink;
1714 current->delay = delay;
1716 current->buf_length = ((privdata->length * current->props->bits)+1)*(delay + 1);
1718 if(current
[all...]
/haiku-fatelf/src/add-ons/kernel/network/stack/
H A Dutility.cpp148 void* current = fBuffer; local
153 return current;
/haiku-fatelf/src/apps/mediaplayer/interface/
H A DPeakView.cpp131 // Reset the overshot flag and set the observed max to the current
365 PeakView:: _RenderSpan(uint8* span, uint32 width, float current, float peak, argument
391 uint32 split = (uint32)(current * (evenWidth - 1) + 0.5);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdbarch.sh305 # contain the current architecture. Care should be taken.
327 # will contain the current architecture. Care should be
633 # frame of the current function has been destroyed. This mostly happens
1042 /* Helper function. Force an update of the current architecture.
1131 /* Initialize the current architecture to the "first" one we find on
1323 the current local architecture and not the previous global
1478 /* Print out the details of the current architecture. */
1770 /* Initialize the current value of the specified per-architecture
1784 /* Return the current value of the specified per-architecture
2046 that there is no current architectur
[all...]
/haiku-fatelf/src/bin/sharutils/contrib/
H A Duuencode.pas102 Write ('Overwrite current ', outfilename, '? [Y/N] ');
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dtransform.c313 * Get the current default debug tracing level mask
315 * Returns the current default debug tracing level mask
544 * Extend the current text node with the new string, it handles coalescing
1836 * Check the common case: The parent element of the current
1866 * Create a new ns-decl on the current result element.
1883 * Create the ns-decl on the current result element.
1960 * @notcur: flag to show current template rule doesn't change
1966 * requirement that the "current template rule" should not be changed
2254 * current template if we are in the first level children
2648 * Add extra namespaces inherited from the current templat
[all...]
/haiku-fatelf/headers/private/graphics/nvidia/
H A DDriverInterface.h304 display_mode dm; /* current display mode configuration: head1 */
305 uint32 dpms_flags; /* current DPMS mode */
325 uint32 current; /* first free 32-bit-word adress in buffer */ member in struct:__anon821::__anon823::__anon825
419 overlay_window ow; /* current position of overlay output window */
420 overlay_buffer ob; /* current inputbuffer in use */
421 overlay_view my_ov; /* current corrected view in inputbuffer */
422 uint32 h_ifactor; /* current 'unclipped' horizontal inverse scaling factor */
423 uint32 v_ifactor; /* current 'unclipped' vertical inverse scaling factor */
/haiku-fatelf/headers/private/graphics/nvidia_gpgpu/
H A DDriverInterface.h224 display_mode dm; /* current display mode configuration: head1 */
225 uint32 dpms_flags; /* current DPMS mode */
244 uint32 current; /* first free 32-bit-word adress in buffer */ member in struct:__anon864::__anon866::__anon868
/haiku-fatelf/src/add-ons/kernel/bus_managers/pci/
H A Dpci.h148 PCIDev * _FindDevice(PCIBus *current, int domain, uint8 bus,
/haiku-fatelf/src/add-ons/kernel/busses/usb/
H A Dxhci.h56 uint8 current; member in struct:xhci_endpoint
/haiku-fatelf/src/add-ons/kernel/drivers/disk/floppy/pc_floppy/
H A Dfloppy.h120 int current; /* currently selected drive */ member in struct:floppy
/haiku-fatelf/src/add-ons/media/plugins/xvid_decoder/
H A Dxvid.h400 xvid_enc_zone_t * zone; /* [out] current zone */
413 xvid_image_t current; /* [out] -> [in,out] */ member in struct:__anon2643
414 xvid_image_t original; /* [out] after: points the original (uncompressed) copy of the current frame */
/haiku-fatelf/src/bin/coreutils/src/
H A Ddircolors.c231 `TERM name' directive where name matches the current terminal type.
/haiku-fatelf/src/bin/diffutils/
H A Dconfig.status3 # Run this file to recreate the current configuration.
259 current configuration.
472 s,@ACLOCAL@,${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run aclocal-1.6,;t t
473 s,@AUTOCONF@,${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoconf,;t t
474 s,@AUTOMAKE@,${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run automake-1.6,;t t
475 s,@AUTOHEADER@,${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoheader,;t t
476 s,@MAKEINFO@,${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run makeinfo,;t t
477 s,@AMTAR@,${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run tar,;t t
478 s,@install_sh@,/boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/install-sh,;t t
499 s,@HELP2MAN@,${SHELL} /boot/home/Development/current/sr
[all...]
/haiku-fatelf/src/add-ons/translators/tga/
H A DTGATranslator.cpp694 uint32 current = 0, next = 0, aftnext = 0;
706 memcpy(&current, pbits, bitsBytesPerPixel);
710 reinterpret_cast<uint8 *> (&current), 1,
733 if (current == next && !bJustWroteRLE) {
737 result = copy_rle_packet(ptga, current, rlecount,
750 // output the current pixel only if
753 memcpy(praw, &current, bitsBytesPerPixel);
792 current = next;
1008 // for each bit in the current byte, convert to a TGA palette

Completed in 420 milliseconds

1234567891011>>