Searched refs:temp (Results 51 - 75 of 195) sorted by relevance

12345678

/haiku/src/add-ons/accelerants/via/engine/
H A Dcrtc2.c80 uint8 temp; local
266 temp = ENG_REG8(RG8_MISCR);
270 temp &= ~0x40;
275 temp |= 0x40;
280 temp &= ~0x80;
285 temp |= 0x80;
287 ENG_REG8(RG8_MISCW) = temp;
460 uint8 temp; local
471 temp = SEQR(CLKMODE);
474 SEQW(CLKMODE, (temp
[all...]
/haiku/src/bin/network/telnet/
H A Dtelnet.c211 char *temp, temp2[11]; local
216 baudrate = (uint32_t)strtol(arg, &temp, 10);
217 if (temp[0] != '\0' || (baudrate == 0 && errno != 0))
239 printsub('>', &temp[2], sizeof(temp2) - 2);
778 unsigned char temp[50]; local
784 snprintf(temp, sizeof(temp), "%c%c%c%c%s%c%c", IAC, SB, TELOPT_TTYPE,
786 ring_supply_data(&netoring, temp, len);
787 printsub('>', &temp[2], len-2);
801 unsigned char temp[5 local
900 unsigned char temp[50], *dp; local
[all...]
/haiku/src/add-ons/accelerants/nvidia/engine/
H A Dnv_crtc.c192 uint8 temp; local
409 temp = NV_REG8(NV8_MISCR);
413 temp &= ~0x40;
418 temp |= 0x40;
423 temp &= ~0x80;
428 temp |= 0x80;
430 NV_REG8(NV8_MISCW) = temp;
603 uint8 temp; local
614 temp = SEQR(CLKMODE);
618 SEQW(CLKMODE, (temp
759 uint8 temp; local
[all...]
H A Dnv_crtc2.c178 uint8 temp; local
392 temp = NV_REG8(NV8_MISCR);
396 temp &= ~0x40;
401 temp |= 0x40;
406 temp &= ~0x80;
411 temp |= 0x80;
413 NV_REG8(NV8_MISCW) = temp;
586 uint8 temp; local
597 temp = SEQR(CLKMODE);
601 SEQW(CLKMODE, (temp
[all...]
/haiku/src/apps/processcontroller/
H A DProcessController.h21 ProcessController(BRect frame, bool temp = false);
/haiku/src/bin/
H A Ddf.cpp93 char temp[1024]; local
96 sprintf(temp, "%" B_PRId64, blocks * (blockSize / 1024));
98 strcpy(temp, ByteString(blocks, blockSize));
100 printf("%10s", temp);
/haiku/src/system/libroot/posix/stdlib/
H A Dradixsort.c133 stack s[SIZE], *sp, *sp0, *sp1, temp; local
204 swap(*sp0, *sp1, temp); /* Play it safe -- biggest bin last. */
232 stack s[512], *sp, *sp0, *sp1, temp; local
285 swap(*sp0, *sp1, temp);
287 for (ak = ta + n, ai = a+n; ak > ta;) /* Copy to temp. */
/haiku/src/system/kernel/arch/x86/paging/32bit/
H A DX86PagingMethod32Bit.cpp126 void* temp = fPageTable; local
127 area_id area = create_area("physical page pool", &temp,
138 temp = (void*)fVirtualBase;
140 "physical page pool space", &temp, B_EXACT_ADDRESS,
339 void *temp; local
347 temp = (void*)fKernelVirtualPageDirectory;
348 area = create_area("kernel_pgdir", &temp, B_EXACT_ADDRESS, B_PAGE_SIZE,
/haiku/src/system/kernel/arch/arm/paging/32bit/
H A DARMPagingMethod32Bit.cpp126 void* temp = fPageTable; local
127 area_id area = create_area("physical page pool", &temp,
138 temp = (void*)fVirtualBase;
140 "physical page pool space", &temp, B_EXACT_ADDRESS,
318 void *temp; local
321 temp = (void*)fKernelVirtualPageDirectory;
322 area = create_area("kernel_pgdir", &temp, B_EXACT_ADDRESS, args->arch_args.next_pagetable,
/haiku/src/libs/x86emu/
H A Ddebug.c186 char temp[100]; local
188 snprintf(temp, sizeof(temp), x, y);
189 sprintf(M.x86.decoded_buf + M.x86.enc_str_pos, "%s", temp);
190 M.x86.enc_str_pos += strlen(temp);
/haiku/src/kits/mail/
H A Dmail_util.cpp507 char *temp = (char*)realloc(*bufp, 2*(*bufLen + 1));
508 if (temp == NULL)
514 *bufp = temp;
841 char *temp = (char *)realloc(buf, len + 64); local
842 if (temp == NULL) {
848 buf = temp;
925 char *temp = (char *)realloc(buf, len + 64); local
926 if (temp == NULL) {
932 buf = temp;
1014 char *temp local
1437 BString temp; local
[all...]
/haiku/src/add-ons/accelerants/matrox/engine/
H A Dmga_maven.c113 uint8 temp, cnt, offset, loop; local
148 temp = MAVR(LUMA);
185 temp &= ~0x20;
186 MAVW(LUMA, temp);
189 temp |= 0x10;
190 MAVW(LUMA, temp);
195 MAVW(LUMA, (temp | 0x20));
197 MAVW(LUMA, (temp & ~0x20));
201 MAVW(LUMA, (temp & ~0x30));
/haiku/src/add-ons/kernel/busses/ata/silicon_image_3112/
H A Dsilicon_image_3112.c258 uint32 temp; local
309 temp = *(volatile uint32 *)(mmioAddr + SI_BMDMA2);
310 *(volatile uint32 *)(mmioAddr + SI_BMDMA2) = temp | SI_INT_STEERING;
330 temp = *(volatile uint32 *)(mmioAddr + SI_SYSCFG);
331 temp &= (asicIndex == ASIC_SI3114) ? (~SI_MASK_4PORT) : (~SI_MASK_2PORT);
332 *(volatile uint32 *)(mmioAddr + SI_SYSCFG) = temp;
346 uint32 temp; local
351 temp = *(volatile uint32 *)(controller->mmio_addr + SI_SYSCFG);
352 temp |= (controller->asic_index == ASIC_SI3114) ? SI_MASK_4PORT : SI_MASK_2PORT;
353 *(volatile uint32 *)(controller->mmio_addr + SI_SYSCFG) = temp;
682 uint32 temp; local
[all...]
/haiku/src/add-ons/accelerants/neomagic/engine/
H A Dnm_general.c221 uint8 temp; local
229 temp = (ISARB(MISCR) | 0x01);
232 ISAWB(MISCW, temp);
350 uint8 temp; local
406 temp = ((ISAGRPHR(IFACECTRL1) & 0x0f) | 0x30);
409 ISAGRPHW(IFACECTRL1, temp);
/haiku/src/add-ons/accelerants/s3/
H A Dsavage_mode.cpp573 uint8 temp = ((ReadMiscOutReg() & 0x3f) | 0x0c); local
576 temp |= 0x40;
578 temp |= 0x80;
580 WriteMiscOutReg(temp);
623 temp = ReadSeqReg(0x15) & ~0x20;
624 WriteSeqReg(0x15, temp);
625 WriteSeqReg(0x15, temp | 0x20);
626 WriteSeqReg(0x15, temp);
/haiku/src/kits/debugger/user_interface/util/
H A DUiUtils.cpp548 BString temp; local
551 temp.SetToFormat("%#" B_PRIx8,
555 temp.SetToFormat("%#" B_PRIx16,
559 temp.SetToFormat("%#" B_PRIx32,
563 temp.SetToFormat("%#" B_PRIx64,
567 temp.SetToFormat("%.3g",
571 temp.SetToFormat("%.3g",
575 _output += temp;
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyCommandMap.cpp166 BList temp; local
168 temp = fInjects;
173 int32 count = temp.CountItems();
175 BMessage* message = (BMessage*)temp.ItemAt(i);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_radar.c85 uint32_t val, temp; local
89 temp = MS(val,AR_PHY_RADAR_0_FIRPWR);
90 temp |= 0xFFFFFF80;
91 pe->pe_firpwr = temp;
/haiku/src/kits/interface/
H A DRegion.cpp329 BRegion temp(clipping);
332 Support::XUnionRegion(this, &temp, &result);
366 BRegion temp(clipping);
369 Support::XSubtractRegion(this, &temp, &result);
/haiku/src/add-ons/kernel/drivers/power/pch_thermal/
H A Dpch_thermal.cpp152 uint16 temp = read16(device->registers + PCH_THERMAL_TEMP); local
153 temp = (temp >> PCH_THERMAL_TEMP_TSR_SHIFT)
155 att->current_temp = (uint32)temp * 10 / 2 - 500;
/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/libs/compat/freebsd_wlan/crypto/rijndael/
H A Drijndael-alg-fst.c737 u32 temp; local
747 temp = rk[3];
749 (Te4[(temp >> 16) & 0xff] & 0xff000000) ^
750 (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
751 (Te4[(temp ) & 0xff] & 0x0000ff00) ^
752 (Te4[(temp >> 24) ] & 0x000000ff) ^
767 temp = rk[ 5];
769 (Te4[(temp >> 16) & 0xff] & 0xff000000) ^
770 (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
771 (Te4[(temp )
825 u32 temp; local
[all...]
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KPagingMethod040.cpp195 void* temp = fPageTable; local
196 area_id area = create_area("physical page pool", &temp,
207 temp = (void*)fVirtualBase;
209 "physical page pool space", &temp, B_EXACT_ADDRESS,
406 void *temp; local
417 temp = (void*)fKernelVirtualPageRoot;
418 area = create_area("kernel_pgdir", &temp, B_EXACT_ADDRESS, B_PAGE_SIZE,
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A De1000_80003es2lan.c406 u16 temp; local
424 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
425 ret_val = e1000_write_phy_reg_mdic(hw, page_select, temp);
439 ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
441 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
477 u16 temp; local
495 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
496 ret_val = e1000_write_phy_reg_mdic(hw, page_select, temp);
510 ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
512 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_conv_c_lookup.cpp57 uint32 temp; local
59 temp = *(pi2++);
60 Cb_G = Cb_Gtab[temp];
61 Cb_B = Cb_Btab[temp];
62 temp = *(pi3++);
63 Cr_R = Cr_Rtab[temp];
64 Cr_G = Cr_Gtab[temp];
66 temp = *(pi1Even++);
67 Y0 = Ytab[temp & 0xff];
68 Y1 = Ytab[temp >>
[all...]

Completed in 224 milliseconds

12345678