/haiku/3rdparty/mmu_man/scripts/ |
H A D | bootstrap-haiku.sh | 30 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 D | HardwareChecker.sh | 374 tf=/tmp/hw_checker_$$.html 382 check_all > "$tf" 384 open "$tf"
|
/haiku/src/add-ons/kernel/busses/ata/ide_isa/ |
H A D | ide_isa.c | 112 write_command_block_regs(void *channel_cookie, ata_task_file *tf, in write_command_block_regs() argument 125 tf->raw.r[i + 7], i); in write_command_block_regs() 126 channel->isa->write_io_8(ioaddr + 1 + i, tf->raw.r[i + 7]); in write_command_block_regs() 130 TRACE("write_comamnd_block_regs(): %x->LO(%x)\n", tf->raw.r[i], i); in write_command_block_regs() 131 channel->isa->write_io_8(ioaddr + 1 + i, tf->raw.r[i]); in write_command_block_regs() 140 read_command_block_regs(void *channel_cookie, ata_task_file *tf, in read_command_block_regs() argument 152 tf->raw.r[i] = channel->isa->read_io_8(ioaddr + 1 + i); in read_command_block_regs() 153 TRACE("read_command_block_regs(%x): %x\n", i, (int)tf->raw.r[i]); in read_command_block_regs()
|
/haiku/src/add-ons/kernel/busses/ata/generic_ide_pci/ |
H A D | generic_ide_pci.cpp | 34 write_command_block_regs(void *channel_cookie, ata_task_file *tf, in write_command_block_regs() argument 38 (ata_adapter_channel_info *)channel_cookie, tf, mask); in write_command_block_regs() 43 read_command_block_regs(void *channel_cookie, ata_task_file *tf, in read_command_block_regs() argument 47 (ata_adapter_channel_info *)channel_cookie, tf, mask); in read_command_block_regs()
|
/haiku/src/add-ons/kernel/busses/ata/promise_tx2/ |
H A D | promise_tx2.c | 41 write_command_block_regs(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) in write_command_block_regs() argument 43 return sATAAdapter->write_command_block_regs((ata_adapter_channel_info *)channel_cookie, tf, mask); in write_command_block_regs() 48 read_command_block_regs(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) in read_command_block_regs() argument 50 return sATAAdapter->read_command_block_regs((ata_adapter_channel_info *)channel_cookie, tf, mask); in read_command_block_regs()
|
/haiku/src/add-ons/kernel/busses/ata/legacy_sata/ |
H A D | legacy_sata.cpp | 280 task_file_write(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) in task_file_write() argument 283 (ata_adapter_channel_info*)channel_cookie, tf, mask); in task_file_write() 288 task_file_read(void *channel_cookie, ata_task_file *tf, ata_reg_mask mask) in task_file_read() argument 291 (ata_adapter_channel_info*)channel_cookie, tf, mask); in task_file_read()
|
/haiku/src/add-ons/kernel/busses/ata/highpoint_ide_pci/ |
H A D | highpoint_ide_pci.cpp | 51 write_command_block_regs(void *channel_cookie, ata_task_file *tf, in write_command_block_regs() argument 57 (ata_adapter_channel_info *)channel_cookie, tf, mask); in write_command_block_regs() 62 read_command_block_regs(void *channel_cookie, ata_task_file *tf, in read_command_block_regs() argument 68 (ata_adapter_channel_info *)channel_cookie, tf, mask); in read_command_block_regs()
|
/haiku/src/add-ons/kernel/busses/ata/silicon_image_3112/ |
H A D | silicon_image_3112.c | 536 task_file_write(void *channelCookie, ata_task_file *tf, ata_reg_mask mask) in task_file_write() argument 548 FLOW("%x->HI(%x)\n", tf->raw.r[i + 7], i ); in task_file_write() 549 channel->task_file[i] = tf->raw.r[i + 7]; in task_file_write() 553 FLOW("%x->LO(%x)\n", tf->raw.r[i], i ); in task_file_write() 554 channel->task_file[i] = tf->raw.r[i]; in task_file_write() 564 task_file_read(void *channelCookie, ata_task_file *tf, ata_reg_mask mask) in task_file_read() argument 576 tf->raw.r[i] = channel->task_file[i]; in task_file_read() 577 FLOW("%x: %x\n", i, (int)tf->raw.r[i] ); in task_file_read()
|
/haiku/src/add-ons/kernel/generic/ata_adapter/ |
H A D | ata_adapter.cpp | 55 ata_task_file *tf, ata_reg_mask mask) in ata_adapter_write_command_block_regs() argument 69 SHOW_FLOW( 4, "%x->HI(%x)", tf->raw.r[i + 7], i ); in ata_adapter_write_command_block_regs() 70 pci->write_io_8(device, ioaddr + 1 + i, tf->raw.r[i + 7]); in ata_adapter_write_command_block_regs() 74 SHOW_FLOW( 4, "%x->LO(%x)", tf->raw.r[i], i ); in ata_adapter_write_command_block_regs() 75 pci->write_io_8(device, ioaddr + 1 + i, tf->raw.r[i]); in ata_adapter_write_command_block_regs() 85 ata_task_file *tf, ata_reg_mask mask) in ata_adapter_read_command_block_regs() argument 98 tf->raw.r[i] = pci->read_io_8(device, ioaddr + 1 + i); in ata_adapter_read_command_block_regs() 99 SHOW_FLOW( 4, "%x: %x", i, (int)tf->raw.r[i] ); in ata_adapter_read_command_block_regs()
|
/haiku/headers/private/drivers/ |
H A D | ata_adapter.h | 129 ata_task_file *tf, ata_reg_mask mask); 131 ata_task_file *tf, ata_reg_mask mask);
|
/haiku/src/system/libroot/os/arch/sparc/ |
H A D | fpu_extern.h | 45 int __fpu_exception(struct utrapframe *tf);
|
/haiku/data/catalogs/bin/filepanel/ |
H A D | hu.catkeys | 5 -s\t--save\tuse a save FilePanel\n FilePanelApp -s\t--save\tfájl mentési ablak megjelenítése\n 8 -l\t--load\tuse a load FilePanel (default)\n FilePanelApp -l\t--load\tfájl betöltési ablak megjele…
|
/haiku/src/system/libroot/posix/musl/math/ |
H A D | lgammal.c | 119 tf = -1.2148629053584961146050602565082954242826E-1, /* double precision */ variable 297 r += (tf + p); in __lgammal_r()
|
H A D | lgamma_r.c | 98 tf = -1.21486290535849611461e-01, /* 0xBFBF19B9, 0xBCC38A42 */ variable 247 r += tf + p; in __lgamma_r()
|
H A D | lgammaf_r.c | 33 tf = -1.2148628384e-01, /* 0xbdf8cdcd */ variable 182 r += (tf + p); in __lgammaf_r()
|
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ |
H A D | ar5416_misc.c | 225 uint32_t tf = OS_REG_READ(ah, AR_TFCNT); in ar5416GetMibCycleCounts() local 242 hsample->tx_busy = tf - ahp->ah_txBusy; in ar5416GetMibCycleCounts() 252 ahp->ah_txBusy = tf; in ar5416GetMibCycleCounts()
|
/haiku/src/kits/media/ |
H A D | SoundFile.cpp | 218 BSoundFile::SetIsCompressed(bool tf) in SetIsCompressed() argument
|
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/ |
H A D | ar5212_misc.c | 1422 uint32_t tf = OS_REG_READ(ah, AR_TFCNT); in ar5212GetMibCycleCounts() local 1439 hsample->tx_busy = tf - ahp->ah_txBusy; in ar5212GetMibCycleCounts() 1449 ahp->ah_txBusy = tf; in ar5212GetMibCycleCounts()
|
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/ |
H A D | ar9300_misc.c | 1100 u_int32_t tf, rf, rc, cc; in ar9300_print_reg() local 1102 tf = OS_REG_READ(ah, AR_TFCNT); in ar9300_print_reg() 1108 "AR_TFCNT Diff= 0x%x\n", tf - ahp->last_tf); in ar9300_print_reg() 1116 ahp->last_tf = tf; in ar9300_print_reg() 1606 u_int32_t tf = OS_REG_READ(ah, AR_TFCNT); in ar9300_get_mib_cycle_counts_pct() local 1622 u_int32_t tf_d = tf - ahp->ah_tx_frame; in ar9300_get_mib_cycle_counts_pct() 1636 ahp->ah_tx_frame = tf; in ar9300_get_mib_cycle_counts_pct()
|
/haiku/src/kits/ |
H A D | CountryFlags.rdef | 2431 resource(212,"flag-tf") #'VICN' array {
|