Searched refs:dec (Results 1 - 25 of 136) sorted by relevance

123456

/freebsd-9.3-release/contrib/ntp/libntp/
H A Ddolfptoa.c22 int dec; local
43 for (dec = (int)(cp - cbuf); dec > 0 && fpi != 0; dec--) {
57 dec = ndec;
58 if (dec < 0)
59 dec = 0;
61 dec += 3;
64 if ((size_t)dec > sizeof(cbuf) - (cpend - cbuf))
65 dec
[all...]
H A Ddofptoa.c22 register short dec; local
66 dec = (short)(ndec + 3);
67 if (dec < 3)
68 dec = 3;
71 dec = ndec;
75 if (dec > 6)
76 dec = 6;
78 if (dec > 0) {
83 } while (--dec > 0);
/freebsd-9.3-release/tools/regression/usr.bin/calendar/
H A Dcalendar.calibrate344 12/01 dec 1
345 12/02 dec 2
346 12/03 dec 3
347 12/04 dec 4
348 12/05 dec 5
349 12/06 dec 6
350 12/07 dec 7
351 12/08 dec 8
352 12/09 dec 9
353 12/10 dec 1
[all...]
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Duniuni.cpp1984 unicode_decompose *dec = new unicode_decompose[1]; local
1985 dec->value = (char *)unicode_decompose_list[i].value;
1986 unicode_decompose_table.define(unicode_decompose_list[i].key, dec);
/freebsd-9.3-release/usr.bin/rpcgen/
H A Drpc_parse.c115 declaration dec; local
126 get_declaration(&dec, DEF_STRUCT);
128 decls->decl = dec;
142 declaration dec; local
183 get_prog_declaration(&dec, DEF_PROGRAM, num_args);
184 if (streq(dec.type, "void"))
188 decls->decl = dec;
193 get_prog_declaration(&dec, DEF_STRUCT,
196 decls->decl = dec;
198 if (streq(dec
290 declaration dec; local
415 declaration dec; local
428 get_declaration(declaration *dec, defkind dkind) argument
479 get_prog_declaration(declaration *dec, defkind dkind, int num) argument
[all...]
H A Drpc_hout.c452 pdeclaration(const char *name, declaration *dec, int tab, const char *separator) argument
458 if (streq(dec->type, "void")) {
462 if (streq(dec->type, name) && !dec->prefix) {
465 if (streq(dec->type, "string")) {
466 f_print(fout, "char *%s", dec->name);
469 if (streq(dec->type, "bool")) {
471 } else if (streq(dec->type, "opaque")) {
474 if (dec->prefix) {
475 s_print(buf, "%s ", dec
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dauxv.c199 enum { dec, hex, str } flavor = hex; enumerator in enum:__anon1326
207 TAG (AT_EXECFD, "File descriptor of program", dec);
209 TAG (AT_PHENT, "Size of program header entry", dec);
210 TAG (AT_PHNUM, "Number of program headers", dec);
211 TAG (AT_PAGESZ, "System page size", dec);
215 TAG (AT_NOTELF, "Program is not ELF", dec);
216 TAG (AT_UID, "Real user ID", dec);
217 TAG (AT_EUID, "Effective user ID", dec);
218 TAG (AT_GID, "Real group ID", dec);
219 TAG (AT_EGID, "Effective group ID", dec);
[all...]
/freebsd-9.3-release/usr.bin/calendar/calendars/
H A Dcalendar.dutch25 dec/05 Sinterklaasavond
26 dec/15 Koninkrijksdag
27 dec/24 Kerstavond
28 dec/25 Eerste Kerstdag
29 dec/26 Tweede Kerstdag
30 dec/28 Feest der Onnozele Kinderen
31 dec/31 Oudjaar
79 dec/07 Kroonprinses Catharina-Amalia (2003)
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dios_locale.cc47 _M_flags = skipws | dec;
/freebsd-9.3-release/usr.sbin/ppp/
H A Dfsm.c469 struct fsm_decode dec; local
490 dec.ackend = dec.ack;
491 dec.nakend = dec.nak;
492 dec.rejend = dec.rej;
494 (*fp->fn->DecodeConfig)(fp, cp, cp + flen, MODE_REQ, &dec);
498 if (dec.nakend == dec
612 struct fsm_decode dec; local
675 struct fsm_decode dec; local
805 struct fsm_decode dec; local
1180 fsm_rej(struct fsm_decode *dec, const struct fsm_opt *o) argument
1188 fsm_ack(struct fsm_decode *dec, const struct fsm_opt *o) argument
1196 fsm_nak(struct fsm_decode *dec, const struct fsm_opt *o) argument
1204 fsm_opt_normalise(struct fsm_decode *dec) argument
[all...]
H A Dlcp.c621 lcp_auth_nak(struct lcp *lcp, struct fsm_decode *dec) argument
631 fsm_nak(dec, &nak);
641 fsm_nak(dec, &nak);
646 fsm_nak(dec, &nak);
649 fsm_nak(dec, &nak);
660 struct fsm_decode *dec)
703 fsm_nak(dec, &nak);
710 fsm_nak(dec, &nak);
713 fsm_ack(dec, opt);
717 fsm_rej(dec, op
659 LcpDecodeConfig(struct fsm *fp, u_char *cp, u_char *end, int mode_type, struct fsm_decode *dec) argument
[all...]
H A Dipcp.c978 ipcp_ValidateReq(struct ipcp *ipcp, struct in_addr ip, struct fsm_decode *dec) argument
1012 *dec->rejend++ = TY_IPADDR;
1013 *dec->rejend++ = 6;
1014 memcpy(dec->rejend, &ip.s_addr, 4);
1015 dec->rejend += 4;
1017 *dec->nakend++ = TY_IPADDR;
1018 *dec->nakend++ = 6;
1019 memcpy(dec->nakend, &ipcp->peer_ip.s_addr, 4);
1020 dec->nakend += 4;
1030 *dec
1054 IpcpDecodeConfig(struct fsm *fp, u_char *cp, u_char *end, int mode_type, struct fsm_decode *dec) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/camellia/
H A Dcmll_misc.c83 key->dec = camellia_decrypt128;
88 key->dec = camellia_decrypt256;
93 key->dec = camellia_decrypt256;
137 key->dec(key->rd_key, tmp);
H A Dcmll_cbc.c118 key->dec(key->rd_key, (u32 *)out);
131 key->dec(key->rd_key, tmp.t32);
145 key->dec(key->rd_key, (u32 *)out);
158 key->dec(key->rd_key, (u32 *)out);
204 key->dec(key->rd_key, tmp.t32);
218 key->dec(key->rd_key, tmp.t32);
231 key->dec(key->rd_key, tmp.t32);
246 key->dec(key->rd_key, tmp.t32);
/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Dcrypto_gnutls.c197 gcry_cipher_hd_t dec; member in struct:crypto_cipher
219 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
229 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
234 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
239 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
247 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
260 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
262 gcry_cipher_close(ctx->dec);
269 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
271 gcry_cipher_close(ctx->dec);
[all...]
/freebsd-9.3-release/usr.bin/calendar/
H A Dsunpos.c193 #define DEBUG1(y, m, d, hh, mm, pdec, dec) \
195 y, m, d, hh, mm, pdec, dec)
196 #define DEBUG2(y, m, d, hh, mm, pdec, dec, pang, ang) \
198 y, m, d, hh, mm, pdec, dec, pang, ang)
214 double dec, prevdec, L; local
226 * It happens when the returned value "dec" goes from
265 * It happens when the returned value "dec" goes from
305 * It happens when the returned value "dec" peaks
314 0.0, 0.0, &L, &dec);
315 angle = ANGLE(prevdec, dec);
370 double dec; local
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/backward/
H A Diomanip.h51 using std::dec;
/freebsd-9.3-release/crypto/openssl/crypto/bn/asm/x86/
H A Dsqr.pl51 &dec($num) if ($i != 7-1);
H A Dadd.pl65 &dec($num) if ($i != 6);
/freebsd-9.3-release/usr.bin/m4/
H A Dtokenizer.l42 dec [1-9][0-9]*
47 {hex}|{oct}|{dec} { yylval = number(); return(NUMBER); }
/freebsd-9.3-release/sys/boot/i386/gptboot/
H A Dgptldr.S96 dec %si
97 dec %di
106 seta20.1: dec %cx # Timeout?
/freebsd-9.3-release/contrib/compiler-rt/lib/sparc64/
H A Ddivmod.m4164 dec SC
173 ! dec SC
200 dec Q
216 dec ITER
231 ` dec Q
/freebsd-9.3-release/lib/msun/src/
H A De_sqrtl.c54 dec(long double x) function
146 xn = dec(xn); /* xn = xn - ulp. */
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
H A Dpoint_iterators.hpp207 dec(integral_constant<int,Is_Forward_Iterator>());
222 { dec(true_type()); }
254 dec(false_type) function in class:pb_ds::detail::bin_search_tree_const_it_
258 dec(true_type) function in class:pb_ds::detail::bin_search_tree_const_it_
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dpoint_iterators.hpp226 dec(integral_constant<int,Is_Forward_Iterator>());
241 { dec(true_type()); }
269 dec(false_type) function in class:pb_ds::detail::pat_trie_const_it_
273 dec(true_type) function in class:pb_ds::detail::pat_trie_const_it_

Completed in 436 milliseconds

123456