Searched refs:temp (Results 1 - 25 of 195) sorted by last modified time

12345678

/haiku/src/apps/processcontroller/
H A DProcessController.cpp153 ProcessController::ProcessController(BRect frame, bool temp) argument
162 fTemp(temp),
167 if (!temp) {
/haiku/src/kits/tracker/
H A DFSUtils.cpp3948 BMessage temp(B_REFS_RECEIVED);
3951 temp.AddRef("refs", ref);
3952 listOfRefs = &temp;
H A DUtilities.cpp503 int32 temp = from; local
505 to = temp;
540 int32 temp = from; local
542 to = temp;
/haiku/src/apps/pulse/
H A DNormalPulseView.cpp76 char temp[4]; local
77 snprintf(temp, sizeof(temp), "%hhd", int8(x + 1));
78 fCpuButtons[x] = new CPUButton(r, B_TRANSLATE("Pulse"), temp, NULL);
/haiku/src/apps/poorman/
H A DPoorManWindow.cpp733 BFile* temp = new BFile(str, B_CREATE_FILE | B_WRITE_ONLY | B_OPEN_AT_END);
735 if (temp->InitCheck() != B_OK) {
736 delete temp;
742 fLogFile = temp;
745 delete temp;
/haiku/src/add-ons/kernel/drivers/audio/cmedia/
H A Dpcm.c610 pcm_cfg temp = port->config; local
611 temp.play_buf_size /= 2;
612 temp.rec_buf_size /= 2;
613 configure_pcm(port, &temp, false); /* change rec/play if needed */
/haiku/src/system/kernel/fs/
H A Dvfs.cpp2197 struct vnode* temp = NULL; local
2198 status = lookup_dir_entry(vnode.Get(), path, &temp);
2199 nextVnode.SetTo(temp);
4837 struct vnode* temp = NULL; local
4838 status = get_vnode(device, inode, &temp, true, false);
4839 vnode.SetTo(temp);
5937 struct vnode* temp = NULL; local
5938 status = get_vnode(mountID, parentID, &temp, true, false);
5939 vnode.SetTo(temp);
7541 VnodePutter temp; local
[all...]
/haiku/src/apps/text_search/
H A DGrepWindow.cpp1034 uchar* temp = (uchar*)strdup(buf); local
1035 uchar* ptr = temp;
1050 fSearchResults->AddUnder(new BStringItem((const char*)temp), item);
1052 free(temp);
/haiku/src/apps/deskcalc/
H A DExpressionTextView.cpp247 BString temp = value; local
248 temp.Truncate(offset + 2);
249 stringWidth = font.StringWidth(temp);
H A DCalcView.cpp884 BString temp; local
885 temp.Append(text, numBytes);
886 fExpressionTextView->Insert(temp.String());
973 BString temp; local
974 temp.Append(bytes, numBytes);
975 int32 key = _KeyForLabel(temp.String());
/haiku/src/add-ons/kernel/busses/usb/
H A Dxhci.cpp667 uint32 temp = ReadCapReg32(eecp + 8); local
668 uint32 offset = XHCI_SUPPORTED_PROTOCOLS_1_OFFSET(temp);
669 uint32 count = XHCI_SUPPORTED_PROTOCOLS_1_COUNT(temp);
2192 uint32 temp = min_c(max_c(interval, 1), 255); local
2193 for (calcInterval = 0; temp != 1; calcInterval++)
2194 temp = temp >> 1;
2516 uint32 temp = ReadRunReg32(XHCI_IMAN(0)); local
2518 WriteRunReg32(XHCI_IMAN(0), temp);
2537 status, temp);
2567 uint32 temp; local
3063 uint32 temp = B_LENDIAN_TO_HOST_INT32(fEventRing[i].flags); local
[all...]
H A Duhci.cpp1800 isochronous_transfer_data *temp local
1802 while (transfer != temp->link)
1803 temp = temp->link;
1806 fLastIsochronousTransfer = temp;
1807 temp->link = temp->link->link;
H A Dehci.cpp2197 isochronous_transfer_data *temp local
2199 while (temp != NULL && transfer != temp->link)
2200 temp = temp->link;
2203 fLastIsochronousTransfer = temp;
2204 if (temp != NULL && temp->link != NULL)
2205 temp->link = temp
[all...]
/haiku/src/kits/interface/
H A DMenu.cpp2099 BMenuItem* temp = fSelected; local
2103 _SelectItem(temp, false);
H A DColumnListView.cpp4820 BRow* temp = items[step]; local
4823 if (CompareRows(temp, items[i]) < 0)
4829 items[i + h] = temp;
4974 BRow* temp = start; local
4976 end = temp;
/haiku/src/apps/icon-o-matic/gui/
H A DGradientControl.cpp100 uint8* temp = new uint8[width * 4]; local
101 fGradient->MakeGradient((uint32*)temp, width);
104 uint8* bits = temp;
115 delete[] temp;
/haiku/src/servers/app/
H A DWindow.cpp1906 UpdateSession* temp = fCurrentUpdateSession; local
1908 fPendingUpdateSession = temp;
H A DView.cpp1492 BRegion temp; local
1493 temp.Set((clipping_rect)clippedBounds);
1494 fScreenClipping.IntersectWith(&temp);
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp2678 BString temp; local
2679 temp = "application/x-vnd.Be.URL.";
2680 temp += proto;
2684 if (be_roster->Launch(temp.String(), 1, argv) == B_OK)
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DACPICAHaiku.cpp438 uint8 temp; local
441 scanf("%1c", &temp);
442 if (!temp || temp == '\n')
445 buffer[i] = temp;
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.cpp1255 FDELookupInfo* temp = _GetContainingFDEInfo(initialLocation, local
1257 if (temp == NULL) {
/haiku/src/apps/mail/
H A DMailWindow.cpp3217 BString temp; local
3218 temp << "(" << queryString << "&&(BEOS:TYPE==\"text/x-email\"))";
3219 queryString = temp;
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp153 uint128 temp = *this; local
155 if (shiftedDivider <= temp) {
157 temp = temp - shiftedDivider;
/haiku/src/system/libroot/add-ons/icu/
H A DICUTimeConversion.cpp116 UnicodeString temp;
117 if (fTimeZone->getID(temp) == UCAL_UNKNOWN_ZONE_ID)
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp1351 unsigned int temp;
1355 temp = cpuid.regs.edx;
1357 cpuid.regs.ecx = temp;
1361 temp = cpuid.regs.edx;
1363 cpuid.regs.ecx = temp;
1368 temp = cpuid.regs.edx;
1370 cpuid.regs.ecx = temp;

Completed in 198 milliseconds

12345678