Searched refs:current (Results 126 - 150 of 168) sorted by relevance

1234567

/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c157 (current->values[_NL_ITEM_INDEX (item)].string)
247 struct locale_data *current = loc->__locales[LC_NUMERIC]; variable in typeref:struct:locale_data
249 /* The thousands character of the current locale. */
256 /* The numeric grouping specification of the current locale,
/haiku/src/kits/storage/
H A DResourceFile.cpp125 const uint8* current = csData; local
126 for (; current < dataEnd; current += 4) {
128 int32 bytes = std::min((int32)4, (int32)(dataEnd - current));
130 word = (word << 8) + current[i];
201 const char* current = (const char*)_current; local
202 return (start <= current && start + size >= current + skip);
/haiku/headers/private/kernel/util/
H A DOpenHashTable.h349 The iterator is not invalidated when removing the current element from
367 ValueType* current = fNext; local
369 return current;
/haiku/src/apps/deskcalc/
H A DExpressionTextView.cpp84 BString current = Text(); local
100 if (current != Text())
323 // increase the current digit value with one
408 // save current expression
/haiku/src/servers/app/
H A DServerWindow.cpp568 // Initialize the view with the current application plain font.
572 // the current font here, the be_plain_font on the client may still
1117 View *current; local
1119 (void**)&current) != B_OK
1120 || current->Window()->ServerWindow() != this) {
1126 current = NULL;
1129 "token %" B_PRId32 "\n", fTitle, current->Name(), token));
1130 _SetCurrentView(current);
1666 BAffineTransform current = local
1668 current
1679 BAffineTransform current = local
1691 BAffineTransform current = local
3354 BAffineTransform current = local
3370 BAffineTransform current = local
3385 BAffineTransform current = local
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp651 // update all current iterators
787 // move the attributes after the current one
855 // update all current iterators
1502 int32 current = (start % indirectSize) / directSize; local
1505 index % runsPerBlock]) + current / runsPerBlock);
1510 run = indirect[current % runsPerBlock];
1515 + (current * directSize);
1531 int32 current = -1; local
1532 while (++current < runsPerBlock) {
1533 if (indirect[current]
1552 int32 current = -1; local
[all...]
/haiku/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/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.cpp1655 ValueNodeChild* current = container->ChildAt(i); local
1656 const BString& nodeName = current->Name();
1658 child = current;
1661 thisChild = current;
1686 ValueNodeChild* current = parentNode->ChildAt(i); local
1687 const BString& nodeName = current->Name();
1689 child = current;
/haiku/src/system/kernel/fs/
H A Drootfs.cpp118 struct rootfs_vnode* current; member in struct:__anon39::rootfs_dir_cookie
235 if (cookie->current == vnode)
236 cookie->current = vnode->dir_next;
737 cookie->current = vnode->stream.dir.dir_head;
805 childNode = cookie->current;
831 cookie->current = nextChildNode;
848 cookie->current = vnode->stream.dir.dir_head;
/haiku/src/apps/deskbar/
H A DSwitcher.cpp119 void Update(int32 previous, int32 current,
182 void Update(int32 previous, int32 current,
785 int32 current = fCurrentIndex; local
786 SwitchToApp(current, fQuickSwitchIndex, false);
789 fCurrentIndex = current;
868 TSwitchManager::SwitchToApp(int32 previous, int32 current, bool forward) argument
872 fCurrentIndex = current;
924 // of teams. The current window (defined by fCurrentWindow) will define
931 // If the first window in the list isn't in current workspace,
961 // Now we go through all the windows in the current workspac
1805 Update(int32 previous, int32 current, int32 previousSlot, int32 currentSlot, bool forward) argument
1990 Update(int32 previous, int32 current, int32 previousSlot, int32 currentSlot, bool forward) argument
[all...]
/haiku/src/preferences/keymap/
H A DKeymapWindow.cpp181 // Try and find the current map name in the two list views (if the name
185 KeymapListItem* current local
188 fCurrentMap.Load(current->EntryRef());
783 /*! Marks the menu items corresponding to the dead key state of the current
903 //! Saves current map to the "Key_map" file.
1038 KeymapListItem* current = local
1040 if (current != NULL && fCurrentMapName == current->EntryRef().name) {
/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp191 net_protocol* current = socket->first_protocol; local
192 for (int i = 0; current != NULL; current = current->next, i++)
193 TRACE(" [%d] %p %s\n", i, current, current->module->info.name);
H A Dutility.cpp62 void* current = fBuffer; local
67 return current;
H A Dnet_buffer.cpp138 // the current place where we allocate header space (nodes, ...)
752 int32 current = atomic_add(&sAllocatedDataHeaderCount, 1) + 1; local
754 if (current > max)
755 atomic_test_and_set(&sMaxAllocatedDataHeaderCount, current, max);
767 int32 current = atomic_add(&sAllocatedNetBufferCount, 1) + 1; local
769 if (current > max)
770 atomic_test_and_set(&sMaxAllocatedNetBufferCount, current, max);
913 // try to allocate in our current allocation header
1460 \return B_BAD_VALUE if you write outside of the buffers current
2063 /*! Stores the current heade
[all...]
/haiku/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/src/system/kernel/vm/
H A Dvm.cpp1135 // temporarily unlock the current cache since it might be mapped to
3979 for (addr_t current = start; current < end; current += B_PAGE_SIZE) {
3983 if (map->Query(current, &physicalAddress, &flags) == B_OK
4469 "address that is looked up in the translation map of the current\n"
4748 // The current cache does not contain the page we're looking for.
5375 for (VMArea* current = cache->areas; current != NULL;
5376 current
[all...]
/haiku/headers/private/graphics/nvidia/
H A DDriverInterface.h322 display_mode dm; /* current display mode configuration: head1 */
323 uint32 dpms_flags; /* current DPMS mode */
345 uint32 current; /* first free 32-bit-word adress in buffer */ member in struct:__anon21::__anon23::__anon25
439 overlay_window ow; /* current position of overlay output window */
440 overlay_buffer ob; /* current inputbuffer in use */
441 overlay_view my_ov; /* current corrected view in inputbuffer */
442 uint32 h_ifactor; /* current 'unclipped' horizontal inverse scaling factor */
443 uint32 v_ifactor; /* current 'unclipped' vertical inverse scaling factor */
/haiku/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
/haiku/src/kits/media/
H A DMediaRoster.cpp986 // ask the node to get it's current timesource id
2431 // TODO: it might be better to query the node for the (current) parameter
2893 // the specified BBufferProducer, producer, given the current connections.
3464 RosterNotification* current; local
3465 if (sNotificationList.Get(i, &current) != true)
3467 if (current->what == notification.what
3468 && current->messenger == notification.messenger) {
3512 RosterNotification* current; local
3513 if (sNotificationList.Get(i, &current) != true)
3515 if (current
3545 RosterNotification* current; local
[all...]
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc42 // In get mode, gptr() is the current position,
44 // In put mode, pptr() is the current position,
215 /* make sure that the gap in the current buffer is at least k
263 /* Add `amount' to the position of every marker in the current buffer
264 whose current position is between `from' (exclusive) and `to' (inclusive).
303 mpos = file->current() - old_data;
420 // Otherwise, current pos is right of gap.
445 buf_index cur_pos = buffer->tell((buf_char*)current());;
/haiku/src/kits/network/libnetservices/
H A DNetworkCookieJar.cpp203 const BNetworkCookie* current = list->ItemAt(i); local
204 if (current->Path().Length() < cookie->Path().Length())
674 // Get an element from the current list
/haiku/src/system/kernel/
H A Delf.cpp166 // in-memory image -- use the current values
427 elf_image_info* current = iterator.Next(); local
428 if (current->text_region.start <= num
429 && current->text_region.start
430 + current->text_region.size >= num) {
431 image = current;
451 elf_image_info* current = iterator.Next(); local
452 if (!strcmp(current->name, argv[1])) {
453 image = current;
2548 // get the current strin
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf-parse.h208 means to use the `outdigits' of the current locale. */
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.h195 PCIDev * _FindDevice(PCIBus *current, uint8 domain,
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp759 * come after the current change.
1128 bigtime_t current = system_time(); local
1129 if (lastReport + 500000LL < current) {
1135 lastReport = current;
1138 // search for data in current block

Completed in 195 milliseconds

1234567