/netbsd-src/usr.sbin/mopd/common/ |
H A D | dl.c | 43 u_char tmpc,c,program[257],code; in mopDumpDL() local 63 tmpc = mopGetChar(pkt,&idx); /* Load Number */ in mopDumpDL() 64 (void)fprintf(fd,"Load Number : %02x\n",tmpc); in mopDumpDL() 109 tmpc = mopGetChar(pkt,&idx); /* Load Number */ in mopDumpDL() 110 (void)fprintf(fd,"Load Number : %02x\n",tmpc); in mopDumpDL() 158 tmpc = mopGetChar(pkt,&idx); /* Device Type */ in mopDumpDL() 159 (void)fprintf(fd, "Device Type : %02x ",tmpc); in mopDumpDL() 160 mopPrintDevice(fd, tmpc); (void)fprintf(fd, "\n"); in mopDumpDL() 162 tmpc = mopGetChar(pkt,&idx); /* Format Version */ in mopDumpDL() 163 (void)fprintf(fd,"Format : %02x\n",tmpc); in mopDumpDL() [all …]
|
H A D | rc.c | 43 u_char tmpc,code,control; in mopDumpRC() local 62 tmpc = mopGetChar(pkt,&idx); in mopDumpRC() 63 (void)fprintf(fd,"Reserved : %02x\n",tmpc); in mopDumpRC() 79 tmpc = mopGetChar(pkt,&idx); /* Processor */ in mopDumpRC() 80 (void)fprintf(fd,"Processor : %02x ",tmpc); in mopDumpRC() 81 mopPrintBPTY(fd, tmpc); (void)fprintf(fd, "\n"); in mopDumpRC() 102 tmpc = mopGetChar(pkt,&idx);/* Device ID */ in mopDumpRC() 104 "Device ID : %02x '",tmpc); in mopDumpRC() 105 for (i = 0; i < ((int) tmpc); i++) { in mopDumpRC() 112 tmpc = mopGetChar(pkt,&idx); /* Software ID */ in mopDumpRC() [all …]
|
H A D | print.c | 439 u_char ilen ,tmpc,device; in mopPrintInfo() local 461 tmpc = mopGetChar(pkt,idx); in mopPrintInfo() 462 *idx = *idx + tmpc; in mopPrintInfo() 524 tmpc = mopGetChar(pkt,idx); in mopPrintInfo() 525 (void)fprintf(fd,"Software ID : %02x ",tmpc); in mopPrintInfo() 526 if (tmpc == 0) { in mopPrintInfo() 529 if (tmpc == 254) { in mopPrintInfo() 531 tmpc = 0; in mopPrintInfo() 533 if (tmpc == 255) { in mopPrintInfo() 535 tmpc = 0; in mopPrintInfo() [all …]
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
H A D | bn_mp_add_d.c | 25 mp_digit *tmpa, *tmpc, mu; in mp_add_d() local 61 tmpc = c->dp; in mp_add_d() 68 *tmpc = *tmpa++ + b; in mp_add_d() 69 mu = *tmpc >> DIGIT_BIT; in mp_add_d() 70 *tmpc++ &= MP_MASK; in mp_add_d() 74 *tmpc = *tmpa++ + mu; in mp_add_d() 75 mu = *tmpc >> DIGIT_BIT; in mp_add_d() 76 *tmpc++ &= MP_MASK; in mp_add_d() 80 *tmpc++ = mu; in mp_add_d() 90 *tmpc++ = b - a->dp[0]; in mp_add_d() [all …]
|
H A D | bn_mp_sub_d.c | 24 mp_digit *tmpa, *tmpc, mu; in mp_sub_d() local 51 tmpc = c->dp; in mp_sub_d() 56 *tmpc++ = b - *tmpa; in mp_sub_d() 58 *tmpc++ = b; in mp_sub_d() 71 *tmpc = *tmpa++ - b; in mp_sub_d() 72 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1); in mp_sub_d() 73 *tmpc++ &= MP_MASK; in mp_sub_d() 77 *tmpc = *tmpa++ - mu; in mp_sub_d() 78 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1); in mp_sub_d() 79 *tmpc++ &= MP_MASK; in mp_sub_d() [all …]
|
H A D | bn_s_mp_add.c | 52 register mp_digit u, *tmpa, *tmpb, *tmpc; in s_mp_add() local 64 tmpc = c->dp; in s_mp_add() 70 *tmpc = *tmpa++ + *tmpb++ + u; in s_mp_add() 73 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add() 76 *tmpc++ &= MP_MASK; in s_mp_add() 85 *tmpc = x->dp[i] + u; in s_mp_add() 88 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add() 91 *tmpc++ &= MP_MASK; in s_mp_add() 96 *tmpc++ = u; in s_mp_add() 100 *tmpc++ = 0; in s_mp_add()
|
H A D | bn_s_mp_sub.c | 40 register mp_digit u, *tmpa, *tmpb, *tmpc; in s_mp_sub() local 46 tmpc = c->dp; in s_mp_sub() 52 *tmpc = *tmpa++ - *tmpb++ - u; in s_mp_sub() 59 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1)); in s_mp_sub() 62 *tmpc++ &= MP_MASK; in s_mp_sub() 68 *tmpc = *tmpa++ - u; in s_mp_sub() 71 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1)); in s_mp_sub() 74 *tmpc++ &= MP_MASK; in s_mp_sub() 79 *tmpc++ = 0; in s_mp_sub()
|
H A D | bn_mp_mul_2d.c | 49 register mp_digit *tmpc, shift, mask, r, rr; in mp_mul_2d() local 59 tmpc = c->dp; in mp_mul_2d() 65 rr = (*tmpc >> shift) & mask; in mp_mul_2d() 68 *tmpc = ((*tmpc << d) | r) & MP_MASK; in mp_mul_2d() 69 ++tmpc; in mp_mul_2d()
|
H A D | bn_mp_div_2d.c | 63 register mp_digit *tmpc, mask, shift; in mp_div_2d() local 72 tmpc = c->dp + (c->used - 1); in mp_div_2d() 78 rr = *tmpc & mask; in mp_div_2d() 81 *tmpc = (*tmpc >> D) | (r << shift); in mp_div_2d() 82 --tmpc; in mp_div_2d()
|
H A D | bn_mp_mul_d.c | 24 mp_digit u, *tmpa, *tmpc; in mp_mul_d() local 45 tmpc = c->dp; in mp_mul_d() 56 *tmpc++ = (mp_digit) (r & ((mp_word) MP_MASK)); in mp_mul_d() 63 *tmpc++ = u; in mp_mul_d() 68 *tmpc++ = 0; in mp_mul_d()
|
H A D | bn_fast_s_mp_mul_digs.c | 90 register mp_digit *tmpc; in fast_s_mp_mul_digs() local 91 tmpc = c->dp; in fast_s_mp_mul_digs() 94 *tmpc++ = W[ix]; in fast_s_mp_mul_digs() 99 *tmpc++ = 0; in fast_s_mp_mul_digs()
|
H A D | bn_fast_s_mp_mul_high_digs.c | 80 register mp_digit *tmpc; in fast_s_mp_mul_high_digs() local 82 tmpc = c->dp + digs; in fast_s_mp_mul_high_digs() 85 *tmpc++ = W[ix]; in fast_s_mp_mul_high_digs() 90 *tmpc++ = 0; in fast_s_mp_mul_high_digs()
|
/netbsd-src/usr.sbin/mopd/mopd/ |
H A D | process.c | 65 u_char ilen ,tmpc,device; in mopProcessInfo() local 85 tmpc = mopGetChar(pkt,idx); in mopProcessInfo() 86 *idx = *idx + tmpc; in mopProcessInfo() 118 tmpc = mopGetChar(pkt,idx); in mopProcessInfo() 119 ucp = pkt + *idx; *idx = *idx + tmpc; in mopProcessInfo() 122 tmpc = mopGetChar(pkt,idx); in mopProcessInfo() 125 tmpc = mopGetChar(pkt,idx); in mopProcessInfo() 430 u_char tmpc; in mopProcessDL() local 468 tmpc = mopGetChar(pkt,idx); /* Device Type */ in mopProcessDL() 470 tmpc = mopGetChar(pkt,idx); /* Format Version */ in mopProcessDL() [all …]
|
/netbsd-src/usr.sbin/mopd/mopprobe/ |
H A D | mopprobe.c | 130 u_char *dst, *src, *p, mopcode, tmpc, ilen; in mopProcess() local 179 tmpc = mopGetChar(pkt,&idx); /* Reserved */ in mopProcess() 190 tmpc = mopGetChar(pkt,&idx); in mopProcess() 191 idx = idx + tmpc; in mopProcess() 221 tmpc = mopGetChar(pkt,&idx); in mopProcess() 223 idx = idx + tmpc; in mopProcess()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rc5/asm/ |
H A D | rc5-586.pl | 27 $tmpc="ecx"; 69 &mov($tmpc, $B); 75 &mov($tmpc, $A); 96 &mov($tmpc, $A); 102 &mov($tmpc, $B);
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rc5/asm/ |
H A D | rc5-586.pl | 26 $tmpc="ecx"; 68 &mov($tmpc, $B); 74 &mov($tmpc, $A); 95 &mov($tmpc, $A); 101 &mov($tmpc, $B);
|
/netbsd-src/crypto/external/bsd/netpgp/dist/src/libbn/ |
H A D | bignum.c | 310 mp_digit *tmpc, shift, mask, r, rr; in mp_mul_2d() local 320 tmpc = c->dp; in mp_mul_2d() 326 rr = (*tmpc >> shift) & mask; in mp_mul_2d() 329 *tmpc = ((*tmpc << d) | r) & MP_MASK; in mp_mul_2d() 330 ++tmpc; in mp_mul_2d() 621 mp_digit u, *tmpc; in s_mp_add() local 633 tmpc = c->dp; in s_mp_add() 639 *tmpc = *tmpa++ + *tmpb++ + u; in s_mp_add() 642 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add() 645 *tmpc++ &= MP_MASK; in s_mp_add() [all …]
|
/netbsd-src/sbin/nvmectl/ |
H A D | bignum.c | 280 mp_digit *tmpc, shift, mask, carry, rr; in lshift_bits() local 290 tmpc = c->dp; in lshift_bits() 296 rr = (*tmpc >> shift) & mask; in lshift_bits() 299 *tmpc = ((*tmpc << d) | carry) & MP_MASK; in lshift_bits() 300 ++tmpc; in lshift_bits() 565 mp_digit carry, *tmpa, *tmpb, *tmpc; in basic_add() local 577 tmpc = c->dp; in basic_add() 583 *tmpc = *tmpa++ + *tmpb++ + carry; in basic_add() 586 carry = *tmpc >> ((mp_digit)DIGIT_BIT); in basic_add() 589 *tmpc++ &= MP_MASK; in basic_add() [all …]
|
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
H A D | bignum.c | 284 mp_digit *tmpc, shift, mask, carry, rr; in lshift_bits() local 294 tmpc = c->dp; in lshift_bits() 300 rr = (*tmpc >> shift) & mask; in lshift_bits() 303 *tmpc = ((*tmpc << d) | carry) & MP_MASK; in lshift_bits() 304 ++tmpc; in lshift_bits() 569 mp_digit carry, *tmpa, *tmpb, *tmpc; in basic_add() local 581 tmpc = c->dp; in basic_add() 587 *tmpc = *tmpa++ + *tmpb++ + carry; in basic_add() 590 carry = *tmpc >> ((mp_digit)DIGIT_BIT); in basic_add() 593 *tmpc++ &= MP_MASK; in basic_add() [all …]
|
/netbsd-src/external/lgpl3/mpfr/dist/src/ |
H A D | add1sp.c | 46 mpfr_t tmpa, tmpb, tmpc, tmpd; in mpfr_add1sp() local 57 mpfr_init2 (tmpc, MPFR_PREC (c)); in mpfr_add1sp() 62 inexc = mpfr_set (tmpc, c, MPFR_RNDN); in mpfr_add1sp() 67 if (MPFR_GET_EXP (tmpb) < MPFR_GET_EXP (tmpc)) in mpfr_add1sp() 71 MPFR_ALIAS (tmpd, tmpc, MPFR_SIGN (tmpb), MPFR_EXP (tmpc)); in mpfr_add1sp() 76 inexact2 = mpfr_add1 (tmpa, tmpb, tmpc, rnd_mode); in mpfr_add1sp() 98 mpfr_fdump (stderr, tmpc); in mpfr_add1sp() 109 mpfr_clears (tmpa, tmpb, tmpc, (mpfr_ptr) 0); in mpfr_add1sp()
|
H A D | sub1sp.c | 50 mpfr_t tmpa, tmpb, tmpc; in mpfr_sub1sp() local 61 mpfr_init2 (tmpc, MPFR_PREC (c)); in mpfr_sub1sp() 66 inexc = mpfr_set (tmpc, c, MPFR_RNDN); in mpfr_sub1sp() 71 inexact2 = mpfr_sub1 (tmpa, tmpb, tmpc, rnd_mode); in mpfr_sub1sp() 92 mpfr_fdump (stderr, tmpc); in mpfr_sub1sp() 103 mpfr_clears (tmpa, tmpb, tmpc, (mpfr_ptr) 0); in mpfr_sub1sp()
|
/netbsd-src/external/gpl3/binutils/dist/gas/config/ |
H A D | obj-macho.c | 322 char tmpc; in obj_mach_o_section() local 335 tmpc = p[len]; in obj_mach_o_section() 343 p[len] = tmpc; in obj_mach_o_section() 350 p[len] = tmpc; in obj_mach_o_section() 374 tmpc = p[len]; in obj_mach_o_section() 382 p[len] = tmpc; in obj_mach_o_section() 392 p[len] = tmpc; in obj_mach_o_section()
|
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/ |
H A D | obj-macho.c | 322 char tmpc; in obj_mach_o_section() local 335 tmpc = p[len]; in obj_mach_o_section() 343 p[len] = tmpc; in obj_mach_o_section() 350 p[len] = tmpc; in obj_mach_o_section() 374 tmpc = p[len]; in obj_mach_o_section() 382 p[len] = tmpc; in obj_mach_o_section() 392 p[len] = tmpc; in obj_mach_o_section()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | tree-ssa-structalias.c | 4089 auto_vec<ce_s> tmpc; in handle_rhs_call() local 4091 get_constraint_for_address_of (gimple_call_lhs (stmt), &tmpc); in handle_rhs_call() 4095 FOR_EACH_VEC_ELT (tmpc, i, c) in handle_rhs_call() 4124 struct constraint_expr tmpc; in handle_lhs_call() local 4125 tmpc.var = escaped_id; in handle_lhs_call() 4126 tmpc.offset = 0; in handle_lhs_call() 4127 tmpc.type = SCALAR; in handle_lhs_call() 4128 lhsc.safe_push (tmpc); in handle_lhs_call() 4146 struct constraint_expr tmpc; in handle_lhs_call() local 4159 tmpc.var = vi->id; in handle_lhs_call() [all …]
|
/netbsd-src/external/gpl2/gmake/dist/ |
H A D | makefile.com | 104 $ open/write tmpc 'tc
|