HomeSort by: relevance | last modified time | path
    Searched refs:dec (Results 1 - 25 of 102) sorted by relevancy

1 2 3 4 5

  /src/sys/dev/dec/
Makefile 3 INCSDIR= /usr/include/dev/dec
mcclock_pad32.c 55 #include <dev/dec/clockvar.h>
56 #include <dev/dec/mcclockvar.h>
59 #include <dev/dec/mcclock_pad32.h>
  /src/lib/libc/arch/sparc64/sys/
__vfork14.S 57 dec %o1 /* from 1 to 0 in child, 0 to -1 in parent */
fork.S 50 dec %o1 /* from 1 to 0 in child, 0 to -1 in parent */
  /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...]
rpc_hout.c 470 pdeclaration(const char *name, declaration *dec, int tab,
477 if (streq(dec->type, "void")) {
481 if (streq(dec->type, name) && !dec->prefix) {
484 if (streq(dec->type, "string")) {
485 f_print(fout, "char *%s", dec->name);
488 if (streq(dec->type, "bool")) {
491 if (streq(dec->type, "opaque")) {
494 if (dec->prefix) {
495 s_print(buf, "%s ", dec->prefix)
    [all...]
  /src/common/lib/libc/arch/powerpc/atomic/
atomic_dec.S 36 ATOMIC_OP_32_ARG(dec,addi,-1)
37 ATOMIC_OP_32_ARG_NV(dec,addi,-1)
46 ATOMIC_OP_64_ARG(dec,addi,-1)
47 ATOMIC_OP_64_ARG_NV(dec,addi,-1)
  /src/lib/libc/compat/arch/sparc64/sys/
compat_Ovfork.S 60 dec %o1 /* from 1 to 0 in child, 0 to -1 in parent */
  /src/sys/crypto/aes/arch/arm/
aes_neon_impl.h 61 aes_neon_dec2(const struct aesdec *dec, uint8x16x2_t b2, unsigned nrounds)
65 [0] = aes_neon_dec1(dec, b2.val[0], nrounds),
66 [1] = aes_neon_dec1(dec, b2.val[1], nrounds),
aes_armv8.c 91 aesarmv8_setdeckey_impl(struct aesdec *dec, const uint8_t key[static 16],
98 aesarmv8_enctodec(&enc, dec, nrounds);
115 aesarmv8_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
120 aesarmv8_dec(dec, in, out, nrounds);
138 aesarmv8_cbc_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
148 aesarmv8_cbc_dec1(dec, in, out, nbytes % 128, iv, nrounds);
156 aesarmv8_cbc_dec8(dec, in, out, nbytes, iv, nrounds);
186 aesarmv8_xts_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
196 aesarmv8_xts_dec1(dec, in, out, nbytes % 128, tweak, nrounds);
204 aesarmv8_xts_dec8(dec, in, out, nbytes, tweak, nrounds)
    [all...]
aes_neon_impl.c 66 aes_neon_setdeckey_impl(struct aesdec *dec, const uint8_t *key,
71 aes_neon_setdeckey(dec, key, nrounds);
86 aes_neon_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
91 aes_neon_dec(dec, in, out, nrounds);
109 aes_neon_cbc_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
117 aes_neon_cbc_dec(dec, in, out, nbytes, iv, nrounds);
135 aes_neon_xts_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
143 aes_neon_xts_dec(dec, in, out, nbytes, iv, nrounds);
  /src/lib/libc/arch/sparc/sys/
__vfork14.S 57 dec %o1 ! from 1 to 0 in child, 0 to -1 in parent
fork.S 50 dec %o1 ! from 1 to 0 in child, 0 to -1 in parent
  /src/common/lib/libc/arch/i386/string/small/
strlen.S 36 dec %eax
  /src/lib/libc/compat/arch/sparc/sys/
compat_Ovfork.S 60 dec %o1 ! from 1 to 0 in child, 0 to -1 in parent
  /src/sys/crypto/aes/arch/x86/
aes_sse2_impl.c 61 aes_sse2_setdeckey_impl(struct aesdec *dec, const uint8_t *key,
70 aes_sse2_setkey(dec->aesd_aes.aes_rk64, key, nrounds);
85 aes_sse2_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
90 aes_sse2_dec(dec, in, out, nrounds);
108 aes_sse2_cbc_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
116 aes_sse2_cbc_dec(dec, in, out, nbytes, iv, nrounds);
134 aes_sse2_xts_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
142 aes_sse2_xts_dec(dec, in, out, nbytes, tweak, nrounds);
aes_ssse3_impl.c 58 aes_ssse3_setdeckey_impl(struct aesdec *dec, const uint8_t *key,
63 aes_ssse3_setdeckey(dec, key, nrounds);
78 aes_ssse3_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
83 aes_ssse3_dec(dec, in, out, nrounds);
101 aes_ssse3_cbc_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
109 aes_ssse3_cbc_dec(dec, in, out, nbytes, iv, nrounds);
127 aes_ssse3_xts_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
135 aes_ssse3_xts_dec(dec, in, out, nbytes, iv, nrounds);
aes_ni.c 89 aesni_setdeckey_impl(struct aesdec *dec, const uint8_t key[static 16],
96 aesni_enctodec(&enc, dec, nrounds);
113 aesni_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
118 aesni_dec(dec, in, out, nrounds);
136 aesni_cbc_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
146 aesni_cbc_dec1(dec, in, out, nbytes % 128, iv, nrounds);
154 aesni_cbc_dec8(dec, in, out, nbytes, iv, nrounds);
184 aesni_xts_dec_impl(const struct aesdec *dec, const uint8_t in[static 16],
194 aesni_xts_dec1(dec, in, out, nbytes % 128, iv, nrounds);
202 aesni_xts_dec8(dec, in, out, nbytes, iv, nrounds)
    [all...]
  /src/sys/crypto/aes/
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/sys/arch/pmax/ibus/
mcclock_ibus.c 41 #include <dev/dec/mcclockvar.h>
42 #include <dev/dec/mcclock_pad32.h>
  /src/sys/arch/pmax/tc/
mcclock_ioasic.c 39 #include <dev/dec/mcclockvar.h>
40 #include <dev/dec/mcclock_pad32.h>
  /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);
  /src/common/lib/libc/arch/sparc/string/
bzero.S 127 dec %o1 ! len--;
134 dec 2, %o1 ! len -= 2;
138 dec 8, %o1
141 dec 4, %o1 ! len -= 4;
  /src/sys/arch/pmax/pmax/
clock.c 50 #include <dev/dec/clockvar.h>
  /src/usr.bin/m4/
tokenizer.l 46 dec [1-9][0-9]*
51 {hex}|{oct}|{dec} { yylval = number(); return(NUMBER); }

Completed in 17 milliseconds

1 2 3 4 5