| /src/crypto/external/apache2/openssl/dist/crypto/rc4/ |
| rc4_enc.c | 31 register RC4_INT x, y, tx, ty; local 40 tx = d[x]; \ 41 y = (tx + y) & 0xff; \ 43 d[y] = tx; \ 44 (out) = d[(tx + ty) & 0xff] ^ (in);
|
| /src/crypto/external/bsd/openssl/dist/crypto/rc4/ |
| rc4_enc.c | 31 register RC4_INT x, y, tx, ty; local 40 tx=d[x]; \ 41 y=(tx+y)&0xff; \ 43 d[y]=tx; \ 44 (out) = d[(tx+ty)&0xff]^ (in);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/rc4/ |
| rc4_enc.c | 25 register RC4_INT x, y, tx, ty; local 34 tx=d[x]; \ 35 y=(tx+y)&0xff; \ 37 d[y]=tx; \ 38 (out) = d[(tx+ty)&0xff]^ (in);
|
| /src/external/bsd/kyua-cli/dist/engine/drivers/ |
| scan_action.cpp | 50 /// \param tx The open store transaction. 59 get_action(store::transaction& tx, optional< int64_t >& action_id) 63 return tx.get_action(action_id.get()); 66 tx.get_latest_action(); 99 store::transaction tx = db.start(); local 101 const engine::action action = get_action(tx, action_id); 104 store::results_iterator iter = tx.get_action_results(action_id.get());
|
| /src/external/bsd/kyua-cli/dist/utils/sqlite/ |
| transaction_test.cpp | 78 sqlite::transaction tx = db.begin_transaction(); local 93 sqlite::transaction tx = db.begin_transaction(); local 95 tx.commit(); 109 sqlite::transaction tx = db.begin_transaction(); local 111 tx.rollback(); 123 sqlite::transaction tx = db.begin_transaction(); local
|
| /src/games/dab/ |
| board.h | 54 size_t tx(void) const { return _tx; } function in class:BOARD
|
| ttyscrn.cc | 196 int tx, ty; local 200 tx = getmaxx(stdscr); 203 if (tx == ERR || ty == ERR 204 || static_cast<size_t>(tx) < *x * 2 + TTYSCRN::offsx + 14 210 *x = (tx - 14 - TTYSCRN::offsx) / 2; 219 that->_tx = tx; 221 that->_sx = tx - 12;
|
| /src/games/hack/ |
| hack.wizard.c | 158 schar tx, ty; local 167 tx = u.ux - mtmp->mx; 169 if ((!tx && abs(ty) < BOLT_LIM) || (!ty && abs(tx) < BOLT_LIM) 170 || (abs(tx) == abs(ty) && abs(tx) < BOLT_LIM)) { 174 buzz(-1, mtmp->mx, mtmp->my, sgn(tx), sgn(ty)); 249 buzz(-rnd(3), mtmp->mx, mtmp->my, sgn(tx), sgn(ty));
|
| def.trap.h | 68 xchar tx,ty; member in struct:trap
|
| hack.makemon.c | 241 int tx, ty; local 249 tx = rn1(COLNO - 3, 2); 251 } while (!goodpos(tx, ty)); 252 mtmp->mx = tx; 256 u.ux = tx;
|
| /src/lib/libm/src/ |
| e_rem_pio2f.h | 52 double tx[1],ty[1]; local 76 tx[0] = z; 77 n = __kernel_rem_pio2(tx,ty,e0,1,0);
|
| e_rem_pio2.c | 62 double tx[3]; local 143 tx[i] = (double)((int32_t)(z)); 144 z = (z-tx[i])*two24; 146 tx[2] = z; 148 while(tx[nx-1]==zero) nx--; /* skip zero term */ 149 n = __kernel_rem_pio2(tx,y,e0,nx,2);
|
| e_rem_pio2f.c | 95 float tx[3]; local 172 tx[i] = (float)((int32_t)(z)); 173 z = (z-tx[i])*two8; 175 tx[2] = z; 177 while(tx[nx-1]==zero) nx--; /* skip zero term */ 178 n = __kernel_rem_pio2f(tx,y,e0,nx,2,two_over_pi);
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_fast_s_mp_mul_digs.c | 55 int tx, ty; local 61 tx = ix - ty; 64 tmpx = a->dp + tx; 68 while (tx++ < a->used && ty-- >= 0) { ... } 70 iy = MIN(a->used-tx, ty+1);
|
| bn_fast_s_mp_mul_high_digs.c | 47 int tx, ty, iy; local 52 tx = ix - ty; 55 tmpx = a->dp + tx; 59 while (tx++ < a->used && ty-- >= 0) { ... } 61 iy = MIN(a->used-tx, ty+1);
|
| bn_fast_s_mp_sqr.c | 24 * (ty-tx) so that it never happens. You double all those 47 int tx, ty, iy; local 56 tx = ix - ty; 59 tmpx = a->dp + tx; 63 while (tx++ < a->used && ty-- >= 0) { ... } 65 iy = MIN(a->used-tx, ty+1); 67 /* now for squaring tx can never equal ty 71 iy = MIN(iy, (ty-tx+1)>>1);
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| dsl_synctask.c | 37 dsl_null_checkfunc(void *arg, dmu_tx_t *tx) 50 * dmu_tx_is_syncing(tx). 71 dmu_tx_t *tx; local 82 tx = dmu_tx_create_dd(dp->dp_mos_dir); 83 VERIFY0(dmu_tx_assign(tx, TXG_WAIT)); 86 dst.dst_txg = dmu_tx_get_txg(tx); 96 err = dst.dst_checkfunc(arg, tx); 100 dmu_tx_commit(tx); 107 dmu_tx_commit(tx); 122 int blocks_modified, zfs_space_check_t space_check, dmu_tx_t *tx) [all...] |
| dmu_object.c | 36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 86 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); 91 dmu_tx_add_new_object(tx, os, object); 97 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 102 if (object == DMU_META_DNODE_OBJECT && !dmu_tx_private_ok(tx)) 108 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); 111 dmu_tx_add_new_object(tx, os, object); 117 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 130 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); 137 dmu_object_free(objset_t *os, uint64_t object, dmu_tx_t *tx) 205 SPA_FEATURE_EXTENSIBLE_DATASET, tx); local 222 SPA_FEATURE_EXTENSIBLE_DATASET, tx); local [all...] |
| /src/games/hunt/huntd/ |
| makemaze.c | 120 int tx, ty; local 128 tx = ty = 0; 139 tx = x; 143 tx = x; 147 tx = x + 2; 151 tx = x - 2; 155 if (tx < 0 || ty < 0 || tx >= WIDTH || ty >= HEIGHT) 157 if (Maze[ty][tx] == SPACE) 159 Maze[(y + ty) / 2][(x + tx) / 2] = SPACE [all...] |
| /src/sys/arch/evbmips/cavium/ |
| autoconf.c | 186 prop_number_t tx, rx; local 189 tx = rx = NULL; 193 tx = prop_number_create_signed(16); 197 if (tx) 198 prop_dictionary_set_and_rel(dict, "rgmii-tx", tx);
|
| /src/crypto/external/apache2/openssl/dist/doc/designs/ddd/ |
| ddd-01-conn-blocking.c | 101 int tx(BIO *bio, const void *buf, int buf_len) function 167 l = tx(b, msg, mlen); 169 fprintf(stderr, "tx error\n");
|
| ddd-03-fd-blocking.c | 94 int tx(SSL *ssl, const void *buf, int buf_len) function 193 l = tx(ssl, msg, mlen); 195 fprintf(stderr, "tx error\n");
|
| /src/sys/arch/evbppc/virtex/dev/ |
| tft_ll.c | 97 struct ll_dmac *tx = vaa->vaa_tx_dmac; local 102 KASSERT(tx); 104 lsc->lsc_dma_iot = tx->dmac_iot; 116 if ((error = bus_space_map(lsc->lsc_dma_iot, tx->dmac_ctrl_addr,
|
| /src/sys/arch/powerpc/ibm4xx/dev/ |
| gpiic_opb.c | 179 uint8_t tx, txen; local 187 tx = sc->sc_tx; 189 tx |= IIC_DIRECTCNTL_SDAC; 190 bus_space_write_1(sc->sc_bust, sc->sc_bush, IIC_DIRECTCNTL, tx);
|
| /src/external/bsd/iscsi/dist/include/ |
| driver.h | 61 unsigned tx_queued, tx, tx_error, tx_overflow; member in struct:iscsi_driver_stats_t
|