Searched refs:fc (Results 26 - 50 of 51) sorted by relevance

123

/haiku-fatelf/src/add-ons/input_server/methods/canna/lib/
H A Duldefine.c901 forichiranContext fc; local
909 fc = (forichiranContext)d->modec;
910 cur = fc->curIkouho;
953 forichiranContext fc; local
972 fc = (forichiranContext)d->modec;
976 fc->allkouho = hinshitbl2;
980 fc->allkouho = hinshitbl1;
984 fc->curIkouho = 0;
991 if((retval = selectOne(d, fc->allkouho, &fc
[all...]
H A Dcanna.h802 #define freeForIchiranContext(fc) free((char *)fc)
/haiku-fatelf/src/add-ons/kernel/file_systems/googlefs/
H A Dgooglefs.c522 fs_file_cookie *fc; local
540 fc = malloc(sizeof(fs_file_cookie));
541 if (!fc)
543 memset(fc, 0, sizeof(fs_file_cookie));
544 fc->node = node;
545 fc->omode = omode;
546 fc->type = S_IFREG;
547 err = SLL_INSERT(node->opened, next, fc);
554 *cookie = fc;
560 SLL_REMOVE(node->opened, next, fc);
1086 fs_file_cookie *fc; local
[all...]
/haiku-fatelf/src/bin/rcs/
H A Drcsedit.c534 register FILE *fc; local
538 fc = fcopy;
540 while (1 < expandline(fe,fc,delta,false,(FILE*)0,true))
543 fastcopy(fe,fc);
570 register FILE *fc; local
579 fc = fcopy;
583 if (expandline(fe,fc,delta,false,(FILE*)0,true) <= 1)
591 aputc_(c, fc)
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/dev/e1000/
H A Dif_em.c504 OID_AUTO, "fc", CTLTYPE_INT|CTLFLAG_RW, adapter, 0,
2864 hw->fc.high_water = rx_buffer_size -
2866 hw->fc.low_water = hw->fc.high_water - 1500;
2868 if (adapter->fc) /* locally set flow control value? */
2869 hw->fc.requested_mode = adapter->fc;
2871 hw->fc.requested_mode = e1000_fc_full;
2874 hw->fc.pause_time = 0xFFFF;
2876 hw->fc
[all...]
H A Dif_em.h425 u16 fc; member in struct:adapter
H A Dif_igb.c484 OID_AUTO, "fc", CTLTYPE_INT|CTLFLAG_RW,
2875 struct e1000_fc_info *fc = &hw->fc; local
2953 fc->high_water = hwm & 0xFFF8; /* 8-byte granularity */
2954 fc->low_water = fc->high_water - 8;
2956 fc->high_water = hwm & 0xFFF0; /* 16-byte granularity */
2957 fc->low_water = fc->high_water - 16;
2960 fc
[all...]
H A Dif_igb.h404 u16 fc; member in struct:adapter
H A Dif_lem.c2333 adapter->hw.fc.high_water = rx_buffer_size -
2335 adapter->hw.fc.low_water = adapter->hw.fc.high_water - 1500;
2337 adapter->hw.fc.pause_time = EM_FC_PAUSE_TIME;
2338 adapter->hw.fc.send_xon = TRUE;
2342 adapter->hw.fc.requested_mode = lem_fc_setting;
2344 adapter->hw.fc.requested_mode = e1000_fc_none;
4411 CTLFLAG_RD, &adapter->hw.fc.high_water, 0,
4414 CTLFLAG_RD, &adapter->hw.fc.low_water, 0,
H A De1000_ich8lan.c3549 if (hw->fc.requested_mode == e1000_fc_default)
3550 hw->fc.requested_mode = e1000_fc_full;
3556 hw->fc.current_mode = hw->fc.requested_mode;
3559 hw->fc.current_mode);
3566 E1000_WRITE_REG(hw, E1000_FCTTV, hw->fc.pause_time);
3570 E1000_WRITE_REG(hw, E1000_FCRTV_PCH, hw->fc.refresh_time);
3574 hw->fc.pause_time);
H A De1000_82571.c1572 if (hw->fc.requested_mode == e1000_fc_default)
1573 hw->fc.requested_mode = e1000_fc_full;
H A De1000_hw.h950 struct e1000_fc_info fc; member in struct:e1000_hw
H A De1000_phy.c1485 * Need to parse both autoneg_advertised and fc and set up
1547 * The possible values of the "fc" parameter are:
1557 switch (hw->fc.current_mode) {
2020 hw->fc.current_mode = e1000_fc_none;
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/
H A Dif_em_hw.c646 * control setting, then the variable hw->fc will
654 if(hw->fc == em_fc_default) {
656 hw->fc = em_fc_none;
659 hw->fc = em_fc_tx_pause;
661 hw->fc = em_fc_full;
669 hw->fc &= (~em_fc_tx_pause);
672 hw->fc &= (~em_fc_rx_pause);
674 hw->original_fc = hw->fc;
676 HW_DEBUGOUT1("After fix-ups FlowControl is now = %x", hw->fc);
714 if(!(hw->fc
[all...]
H A Dif_em_hw.h980 em_fc_type fc; member in struct:em_hw
/haiku-fatelf/src/add-ons/kernel/drivers/network/via_rhine/dev/vr/
H A Dif_vr.c324 uint8_t cr0, cr1, fc; local
369 fc = 0;
372 fc = CSR_READ_1(sc, VR_FLOWCR1);
373 fc &= ~(VR_FLOWCR1_TXPAUSE | VR_FLOWCR1_RXPAUSE);
376 fc |= VR_FLOWCR1_RXPAUSE;
379 fc |= VR_FLOWCR1_TXPAUSE;
382 CSR_WRITE_1(sc, VR_FLOWCR1, fc);
385 fc = CSR_READ_1(sc, VR_MISC_CR0);
386 fc &= ~VR_MISCCR0_RXPAUSE;
389 fc |
[all...]
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dm68k-dis.c1084 int fc = fetch_arg (buffer, place, 5, info);
1085 if (fc == 1)
1087 else if (fc == 0)
1091 (*info->fprintf_func) (info->stream, _("<function code %d>"), fc);
1082 int fc = fetch_arg (buffer, place, 5, info); local
/haiku-fatelf/headers/private/kernel/arch/m68k/
H A Darch_cpu.h34 uint16 fc:1; member in struct:mc68030_ssw
/haiku-fatelf/src/bin/gzip/
H A Dtrees.c164 } fc; member in struct:ct_data
171 #define Freq fc.freq
172 #define Code fc.code
/haiku-fatelf/src/bin/zip/
H A Dtrees.c217 } fc; member in struct:ct_data
224 #define Freq fc.freq
225 #define Code fc.code
/haiku-fatelf/src/add-ons/translators/raw/
H A DRAW.cpp1722 int i, j, tr, tc, fc, c, d, val, hm[2];
1758 for (fc = FC(row, col); col < left + TS
1761 val = ((pix[-1][1] + pix[0][fc] + pix[1][1]) * 2
1762 - pix[-2][fc] - pix[2][fc]) >> 2;
1765 val = ((pix[-fInputWidth][1] + pix[0][fc]
1767 - pix[-2 * fInputWidth][fc] - pix[2 * fInputWidth][fc])
/haiku-fatelf/src/bin/bash/
H A Dexecute_cmd.c3906 COMMAND *tc, *fc, *save_current; local
3916 USE_VAR(fc);
4029 fc = tc;
4056 result = execute_command_internal (fc, 0, NO_PIPE, NO_PIPE, fds_to_close);
4064 result = execute_command_internal (fc, 0, NO_PIPE, NO_PIPE, fds_to_close);
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Darmdbg.h708 Dbg_DComplex fc; member in union:Dbg_ConstantVal
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_asin.c338 double fc;
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwnreg.h1100 uint8_t fc[2]; member in struct:iwn5000_tx_stat

Completed in 832 milliseconds

123