HomeSort by: relevance | last modified time | path
    Searched defs:dec (Results 1 - 12 of 12) sorted by relevancy

  /src/lib/libm/src/
e_sqrtl.c 68 dec(long double x) function in typeref:typename:long double
155 xn = dec(xn); /* xn = xn - ulp. */
  /src/usr.bin/mail/
mime_detach.c 253 mime_codec_t dec; local in function:mime_detach_parts
259 if ((dec = mime_fio_decoder(mip->mi_encoding)) == NULL &&
260 (dec = mime_fio_decoder(MIME_TRANSFER_7BIT)) == NULL)
270 * run_decoder()), or just run dec()?
273 mime_run_function(dec, pipe_end(mip), NULL);
275 run_decoder(mip, dec);
mime_codecs.c 666 mime_codec_t dec; member in struct:transfer_encoding_s
702 return tep->dec;
mime_decode.c 856 get_display_mode(struct mime_info *mip, mime_codec_t dec)
944 if (mip->mi_encoding && dec == NULL)
976 mime_codec_t dec; local in function:mime_decode_body
995 dec = mime_fio_decoder(mip->mi_encoding);
1001 dispmode = cmd || mip->mi_command_hook ? DM_DISPLAY : get_display_mode(mip, dec);
1003 if (dec == NULL) /* make sure we have a usable decoder */
1004 dec = mime_fio_decoder(MIME_TRANSFER_7BIT);
1014 run_decoder(mip, dec);
  /src/sys/crypto/aes/
aes_selftest.c 105 struct aesdec dec; local in function:aes_selftest_encdec
118 impl->ai_setdeckey(&dec, key, aes_nrounds[i]);
123 impl->ai_dec(&dec, out, out, aes_nrounds[i]);
126 "AES-%u dec", aes_keybits[i]);
208 struct aesdec dec; local in function:aes_selftest_encdec_cbc
224 impl->ai_setdeckey(&dec, key, aes_nrounds[i]);
234 impl->ai_cbc_dec(&dec, out, out, 144, iv, aes_nrounds[i]);
237 "AES-%u-CBC dec", aes_keybits[i]);
251 impl->ai_cbc_dec(&dec, out, out, j, iv,
253 impl->ai_cbc_dec(&dec, out + j, out + j, 144 - j, iv
338 struct aesdec dec; local in function:aes_selftest_encdec_xts
    [all...]
aes_impl.c 208 aes_setdeckey(struct aesdec *dec, const uint8_t key[static 16],
213 aes_impl->ai_setdeckey(dec, key, nrounds);
217 aes_setdeckey128(struct aesdec *dec, const uint8_t key[static 16])
221 aes_setdeckey(dec, key, nrounds);
226 aes_setdeckey192(struct aesdec *dec, const uint8_t key[static 24])
230 aes_setdeckey(dec, key, nrounds);
235 aes_setdeckey256(struct aesdec *dec, const uint8_t key[static 32])
239 aes_setdeckey(dec, key, nrounds);
253 aes_dec(const struct aesdec *dec, const uint8_t in[static 16],
258 aes_impl->ai_dec(dec, in, out, nrounds)
444 const uint32_t *enc, *dec; member in struct:aes_selftest_stdkeysched::__anon22a7232e0108
    [all...]
  /src/usr.bin/rpcgen/
rpc_parse.c 123 declaration dec; local in function:def_struct
134 get_declaration(&dec, DEF_STRUCT);
136 decls->decl = dec;
150 declaration dec; local in function:def_program
189 get_prog_declaration(&dec, DEF_PROGRAM, num_args);
190 if (streq(dec.type, "void"))
194 decls->decl = dec;
199 get_prog_declaration(&dec, DEF_STRUCT,
202 decls->decl = dec;
204 if (streq(dec.type, "void")
296 declaration dec; local in function:def_union
398 declaration dec; local in function:def_typedef
    [all...]
  /src/sys/net/
if_ieee1394subr.c 595 int dec; local in function:ieee1394_watchdog
597 dec = (ifp->if_timer > 0) ? ifp->if_timer : 1;
602 if (rp->rp_ttl >= dec)
603 rp->rp_ttl -= dec;
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppevvmath.h 513 int dec[PRECISION]; local in function:uGetScaledDecimal
517 dec[i] = tmp / (1 << SHIFT_AMOUNT);
518 tmp = tmp - ((1 << SHIFT_AMOUNT)*dec[i]);
520 scaledDecimal = scaledDecimal + dec[i]*uPow(10, PRECISION - 1 -i);
  /src/sys/opencrypto/
cryptosoft_xform.c 605 struct aesdec dec; member in struct:aes_ctx
622 aes_dec(&ctx->dec, blk, blk, ctx->nr);
639 aes_setdeckey128(&ctx->dec, key);
644 aes_setdeckey192(&ctx->dec, key);
649 aes_setdeckey256(&ctx->dec, key);
  /src/sys/dev/sbus/
mgx.c 220 mgx_set_dec(struct mgx_softc *sc, uint32_t dec)
222 if (dec == sc->sc_r_dec) return;
223 sc->sc_r_dec = dec;
225 mgx_write_4(sc, ATR_DEC, dec);
652 uint32_t dec = sc->sc_dec; local in function:mgx_bitblt
654 dec |= (DEC_COMMAND_BLT << DEC_COMMAND_SHIFT) |
659 dec |= DEC_DIR_X_REVERSE;
664 dec |= DEC_DIR_Y_REVERSE;
666 mgx_set_dec(sc, dec);
679 uint32_t dec = sc->sc_dec local in function:mgx_rectfill
    [all...]
  /src/sys/dev/pci/
if_iwn.c 4172 #define dec(val, dec, min) \ macro
4174 if ((val) > (min) + (dec)) \
4175 (val) -= (dec); \
4212 dec(calib->ofdm_x1, 1, limits->min_ofdm_x1);
4213 dec(calib->ofdm_mrc_x1, 1, limits->min_ofdm_mrc_x1);
4214 dec(calib->ofdm_x4, 1, limits->min_ofdm_x4);
4215 dec(calib->ofdm_mrc_x4, 1, limits->min_ofdm_mrc_x4);
4265 dec(calib->energy_cck, 2, energy_min);
4285 dec(calib->cck_x4, 3, limits->min_cck_x4)
    [all...]

Completed in 41 milliseconds