Searched refs:tf (Results 1 - 18 of 18) sorted by relevance

/haiku/3rdparty/mmu_man/scripts/
H A Dbootstrap-haiku.sh30 tf=/tmp/haiku-files.org_raw_$$
31 wget -O $tf http://haiku-files.org/raw/ >/dev/null 2>&1 || error "wget error"
32 url="$(grep -m1 'http:.*nightly-.*gcc2hybrid-raw.zip' "$tf" | sed 's/.*href="//;s/".*//')"
35 rm "$tf"
H A DHardwareChecker.sh374 tf=/tmp/hw_checker_$$.html
382 check_all > "$tf"
384 open "$tf"
/haiku/src/add-ons/kernel/busses/ata/generic_ide_pci/
H A Dgeneric_ide_pci.cpp34 write_command_block_regs(void *channel_cookie, ata_task_file *tf, argument
38 (ata_adapter_channel_info *)channel_cookie, tf, mask);
43 read_command_block_regs(void *channel_cookie, ata_task_file *tf, argument
47 (ata_adapter_channel_info *)channel_cookie, tf, mask);
/haiku/src/system/libroot/os/arch/sparc/
H A Dfpu_extern.h45 int __fpu_exception(struct utrapframe *tf);
/haiku/src/add-ons/kernel/busses/ata/ide_isa/
H A Dide_isa.c112 write_command_block_regs(void *channel_cookie, ata_task_file *tf, argument
125 tf->raw.r[i + 7], i);
126 channel->isa->write_io_8(ioaddr + 1 + i, tf->raw.r[i + 7]);
130 TRACE("write_comamnd_block_regs(): %x->LO(%x)\n", tf->raw.r[i], i);
131 channel->isa->write_io_8(ioaddr + 1 + i, tf->raw.r[i]);
140 read_command_block_regs(void *channel_cookie, ata_task_file *tf, argument
152 tf->raw.r[i] = channel->isa->read_io_8(ioaddr + 1 + i);
153 TRACE("read_command_block_regs(%x): %x\n", i, (int)tf->raw.r[i]);
/haiku/src/add-ons/kernel/busses/ata/promise_tx2/
H A Dpromise_tx2.c41 write_command_block_regs(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) argument
43 return sATAAdapter->write_command_block_regs((ata_adapter_channel_info *)channel_cookie, tf, mask);
48 read_command_block_regs(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) argument
50 return sATAAdapter->read_command_block_regs((ata_adapter_channel_info *)channel_cookie, tf, mask);
/haiku/headers/private/drivers/
H A Data_adapter.h129 ata_task_file *tf, ata_reg_mask mask);
131 ata_task_file *tf, ata_reg_mask mask);
/haiku/src/add-ons/kernel/busses/ata/legacy_sata/
H A Dlegacy_sata.cpp280 task_file_write(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) argument
283 (ata_adapter_channel_info*)channel_cookie, tf, mask);
288 task_file_read(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) argument
291 (ata_adapter_channel_info*)channel_cookie, tf, mask);
/haiku/src/add-ons/kernel/busses/ata/highpoint_ide_pci/
H A Dhighpoint_ide_pci.cpp51 write_command_block_regs(void *channel_cookie, ata_task_file *tf, argument
57 (ata_adapter_channel_info *)channel_cookie, tf, mask);
62 read_command_block_regs(void *channel_cookie, ata_task_file *tf, argument
68 (ata_adapter_channel_info *)channel_cookie, tf, mask);
/haiku/src/system/libroot/posix/musl/math/
H A Dlgamma_r.c98 tf = -1.21486290535849611461e-01, /* 0xBFBF19B9, 0xBCC38A42 */ variable
99 /* tt = -(tail of tf) */
247 r += tf + p;
H A Dlgammaf_r.c33 tf = -1.2148628384e-01, /* 0xbdf8cdcd */ variable
34 /* tt = -(tail of tf) */
182 r += (tf + p);
H A Dlgammal.c119 tf = -1.2148629053584961146050602565082954242826E-1, /* double precision */ variable
120 /* tt = (tail of tf), i.e. tf + tt has extended precision. */
125 /* lgam (x + tc) = tf + tt + x g(x)/h(x)
297 r += (tf + p);
/haiku/src/add-ons/kernel/busses/ata/silicon_image_3112/
H A Dsilicon_image_3112.c536 task_file_write(void *channelCookie, ata_task_file *tf, ata_reg_mask mask) argument
548 FLOW("%x->HI(%x)\n", tf->raw.r[i + 7], i );
549 channel->task_file[i] = tf->raw.r[i + 7];
553 FLOW("%x->LO(%x)\n", tf->raw.r[i], i );
554 channel->task_file[i] = tf->raw.r[i];
564 task_file_read(void *channelCookie, ata_task_file *tf, ata_reg_mask mask) argument
576 tf->raw.r[i] = channel->task_file[i];
577 FLOW("%x: %x\n", i, (int)tf->raw.r[i] );
/haiku/src/add-ons/kernel/generic/ata_adapter/
H A Data_adapter.cpp55 ata_task_file *tf, ata_reg_mask mask)
69 SHOW_FLOW( 4, "%x->HI(%x)", tf->raw.r[i + 7], i );
70 pci->write_io_8(device, ioaddr + 1 + i, tf->raw.r[i + 7]);
74 SHOW_FLOW( 4, "%x->LO(%x)", tf->raw.r[i], i );
75 pci->write_io_8(device, ioaddr + 1 + i, tf->raw.r[i]);
85 ata_task_file *tf, ata_reg_mask mask)
98 tf->raw.r[i] = pci->read_io_8(device, ioaddr + 1 + i);
99 SHOW_FLOW( 4, "%x: %x", i, (int)tf->raw.r[i] );
54 ata_adapter_write_command_block_regs(ata_adapter_channel_info *channel, ata_task_file *tf, ata_reg_mask mask) argument
84 ata_adapter_read_command_block_regs(ata_adapter_channel_info *channel, ata_task_file *tf, ata_reg_mask mask) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_misc.c227 uint32_t tf = OS_REG_READ(ah, AR_TFCNT); local
244 hsample->tx_busy = tf - ahp->ah_txBusy;
254 ahp->ah_txBusy = tf;
/haiku/src/kits/media/
H A DSoundFile.cpp218 BSoundFile::SetIsCompressed(bool tf) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_misc.c1424 uint32_t tf = OS_REG_READ(ah, AR_TFCNT); local
1441 hsample->tx_busy = tf - ahp->ah_txBusy;
1451 ahp->ah_txBusy = tf;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_misc.c1100 u_int32_t tf, rf, rc, cc; local
1102 tf = OS_REG_READ(ah, AR_TFCNT);
1108 "AR_TFCNT Diff= 0x%x\n", tf - ahp->last_tf);
1116 ahp->last_tf = tf;
1602 u_int32_t tf = OS_REG_READ(ah, AR_TFCNT); local
1618 u_int32_t tf_d = tf - ahp->ah_tx_frame;
1632 ahp->ah_tx_frame = tf;

Completed in 89 milliseconds