Home
last modified time | relevance | path

Searched defs:c (Results 126 – 150 of 2757) sorted by relevance

12345678910>>...111

/dragonfly/crypto/libressl/crypto/gost/
H A Dgost2814789.c64 f(const GOST2814789_KEY *c, unsigned int x) in f()
268 unsigned char c; in Gost2814789_cfb64_encrypt() local
296 unsigned char c; in Gost2814789_cfb64_encrypt() local
309 unsigned char c; in Gost2814789_cfb64_encrypt() local
408 GOST2814789IMIT_Init(GOST2814789IMIT_CTX *c, int nid) in GOST2814789IMIT_Init()
440 GOST2814789IMIT_Final(unsigned char *md, GOST2814789IMIT_CTX *c) in GOST2814789IMIT_Final()
458 GOST2814789IMIT_CTX c; in GOST2814789IMIT() local
H A Dgost_locl.h73 # define c2l(c,l) ((l)=*((const unsigned int *)(c)), (c)+=4) argument
74 # define l2c(l,c) (*((unsigned int *)(c))=(l), (c)+=4) argument
76 #define c2l(c,l) (l =(((unsigned long)(*((c)++))) ), \ argument
80 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
/dragonfly/contrib/gdb-7/readline/
H A Dhistlib.h42 #define whitespace(c) (((c) == ' ') || ((c) == '\t')) argument
46 #define _rl_digit_p(c) ((c) >= '0' && (c) <= '9') argument
50 #define _rl_digit_value(c) ((c) - '0') argument
57 #define member(c, s) ((c) ? ((char *)strchr ((s), (c)) != (char *)NULL) : 0) argument
H A Dinput.c334 _rl_insert_typein (c) in _rl_insert_typein() argument
385 rl_execute_next (c) in rl_execute_next() argument
412 int c; in rl_read_key() local
461 unsigned char c; local
523 int mb_len, c; local
575 int i, c; local
/dragonfly/contrib/gdb-7/gdb/
H A Dcharset.c142 unsigned long c = 0; in phony_iconv() local
213 struct cmd_list_element *c, in show_host_charset_name()
227 struct cmd_list_element *c, const char *value) in show_target_charset_name()
243 struct cmd_list_element *c, in show_target_wide_charset_name()
344 struct cmd_list_element *c) in set_charset_sfunc()
355 struct cmd_list_element *c) in set_host_charset_sfunc()
363 struct cmd_list_element *c) in set_target_charset_sfunc()
371 struct cmd_list_element *c) in set_target_wide_charset_sfunc()
379 struct cmd_list_element *c, in show_charset()
435 host_letter_to_control_character (char c) in host_letter_to_control_character()
[all …]
/dragonfly/games/adventure/
H A Dcrc.c104 crc_start(struct crcstate *c) in crc_start()
114 crc_add(struct crcstate *c, const void *data, size_t num) in crc_add()
135 crc_get(struct crcstate *c) in crc_get()
/dragonfly/stand/boot/efi/libefi/
H A Defi_console.c128 efi_cons_rawputchar(int c) in efi_cons_rawputchar()
183 bail_out(int c) in bail_out()
294 get_arg(int c) in get_arg()
304 efi_term_emu(int c) in efi_term_emu()
415 efi_cons_putchar(int c) in efi_cons_putchar()
456 efi_cons_efiputchar(int c) in efi_cons_efiputchar()
/dragonfly/contrib/gcc-4.7/include/
H A Dfilenames.h41 # define IS_DIR_SEPARATOR(c) IS_DOS_DIR_SEPARATOR (c) argument
54 #define IS_DIR_SEPARATOR_1(dos_based, c) \ argument
65 #define IS_DOS_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (1, c) argument
69 #define IS_UNIX_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (0, c) argument
/dragonfly/contrib/gdb-7/include/
H A Dfilenames.h43 # define IS_DIR_SEPARATOR(c) IS_DOS_DIR_SEPARATOR (c) argument
56 #define IS_DIR_SEPARATOR_1(dos_based, c) \ argument
67 #define IS_DOS_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (1, c) argument
71 #define IS_UNIX_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (0, c) argument
/dragonfly/contrib/binutils-2.34/include/
H A Dfilenames.h43 # define IS_DIR_SEPARATOR(c) IS_DOS_DIR_SEPARATOR (c) argument
56 #define IS_DIR_SEPARATOR_1(dos_based, c) \ argument
67 #define IS_DOS_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (1, c) argument
71 #define IS_UNIX_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (0, c) argument
/dragonfly/contrib/gcc-8.0/include/
H A Dfilenames.h43 # define IS_DIR_SEPARATOR(c) IS_DOS_DIR_SEPARATOR (c) argument
56 #define IS_DIR_SEPARATOR_1(dos_based, c) \ argument
67 #define IS_DOS_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (1, c) argument
71 #define IS_UNIX_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (0, c) argument
/dragonfly/contrib/binutils-2.27/include/
H A Dfilenames.h43 # define IS_DIR_SEPARATOR(c) IS_DOS_DIR_SEPARATOR (c) argument
56 #define IS_DIR_SEPARATOR_1(dos_based, c) \ argument
67 #define IS_DOS_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (1, c) argument
71 #define IS_UNIX_DIR_SEPARATOR(c) IS_DIR_SEPARATOR_1 (0, c) argument
/dragonfly/crypto/libressl/crypto/modes/
H A Dcbc128.c121 union { size_t t[16/sizeof(size_t)]; unsigned char c[16]; } tmp; in CRYPTO_cbc128_decrypt() member
155 unsigned char c; in CRYPTO_cbc128_decrypt() local
169 size_t c, *out_t=(size_t *)out, *ivec_t=(size_t *)ivec; in CRYPTO_cbc128_decrypt() local
186 unsigned char c; in CRYPTO_cbc128_decrypt() local
H A Dccm128.c158 u8 c; in ctr64_inc() local
179 union { u64 u[2]; u8 c[16]; } scratch; in CRYPTO_ccm128_encrypt() member
201 union { u64 u[2]; u8 c[16]; } temp; in CRYPTO_ccm128_encrypt() member
254 union { u64 u[2]; u8 c[16]; } scratch; in CRYPTO_ccm128_decrypt() member
272 union { u64 u[2]; u8 c[16]; } temp; in CRYPTO_ccm128_decrypt() member
333 union { u64 u[2]; u8 c[16]; } scratch; in CRYPTO_ccm128_encrypt_ccm64() member
390 union { u64 u[2]; u8 c[16]; } scratch; in CRYPTO_ccm128_decrypt_ccm64() member
/dragonfly/sys/cpu/x86_64/include/
H A Dbus_dma.h911 #define bus_space_read_multi_stream_1(t, h, o, a, c) \ argument
913 #define bus_space_read_multi_stream_2(t, h, o, a, c) \ argument
915 #define bus_space_read_multi_stream_4(t, h, o, a, c) \ argument
925 #define bus_space_write_multi_stream_1(t, h, o, a, c) \ argument
927 #define bus_space_write_multi_stream_2(t, h, o, a, c) \ argument
932 #define bus_space_set_multi_stream_1(t, h, o, v, c) \ argument
934 #define bus_space_set_multi_stream_2(t, h, o, v, c) \ argument
936 #define bus_space_set_multi_stream_4(t, h, o, v, c) \ argument
953 #define bus_space_set_region_stream_1(t, h, o, v, c) \ argument
955 #define bus_space_set_region_stream_2(t, h, o, v, c) \ argument
[all …]
/dragonfly/contrib/elftoolchain/libelf/
H A Dgelf_fsize.c35 elf32_fsize(Elf_Type t, size_t c, unsigned int v) in elf32_fsize()
41 elf64_fsize(Elf_Type t, size_t c, unsigned int v) in elf64_fsize()
47 gelf_fsize(Elf *e, Elf_Type t, size_t c, unsigned int v) in gelf_fsize()
/dragonfly/contrib/libedit/src/
H A Dchartype.c185 ct_enc_width(wchar_t c) in ct_enc_width()
198 ct_encode_char(char *dst, size_t len, wchar_t c) in ct_encode_char()
256 ct_visual_width(wchar_t c) in ct_visual_width()
280 ct_visual_char(wchar_t *dst, size_t len, wchar_t c) in ct_visual_char()
327 ct_chr_class(wchar_t c) in ct_chr_class()
/dragonfly/contrib/tcsh-6/
H A Dtc.os.c194 dogetxvers(Char **v, struct command *c) in dogetxvers()
206 dosetxvers(Char **v, struct command *c) in dosetxvers()
415 domigrate(Char **v, struct command *c) in domigrate()
496 dodmmode(Char **v, struct command *c) in dodmmode()
555 dowarp(Char **v, struct command *c) in dowarp()
758 dobs2cmd(Char **v, struct command *c) in dobs2cmd()
789 int c; in dobs2cmd() local
868 doatt(Char **v, struct command *c) in doatt()
893 doucb(Char **v, struct command *c) in doucb()
1470 doinlib(Char **v, struct command *c) in doinlib()
[all …]
/dragonfly/crypto/libressl/crypto/des/
H A Ddes_locl.h82 #define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \ argument
88 #define c2ln(c,l1,l2,n) { \ argument
103 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
112 #define n2l(c,l) (l =((DES_LONG)(*((c)++)))<<24L, \ argument
117 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ argument
123 #define l2cn(l1,l2,c,n) { \ argument
156 #define LOAD_DATA_tmp(a,b,c,d,e,f) LOAD_DATA(a,b,c,d,e,f,g) argument
/dragonfly/games/backgammon/common_source/
H A Dfancy.c251 int i, r, c; in refresh() local
300 fixpos(int cur, int new, int r, int c, int inc) in fixpos()
386 fixcol(int r, int c, int l, int ch, int inc) in fixcol()
399 curmove(int r, int c) in curmove()
415 int c; /* destination column */ in newpos() local
596 fancyc(int c) in fancyc()
669 int c; in cline() local
/dragonfly/contrib/nvi2/common/
H A Dmultibyte.h72 #define STRTOL(a,b,c) (strtol(a,(char**)b,c)) argument
73 #define STRTOUL(a,b,c) (strtoul(a,(char**)b,c)) argument
118 isatoz(CHAR_T c) in isatoz()
124 isAtoZ(CHAR_T c) in isAtoZ()
130 is0to9(CHAR_T c) in is0to9()
136 isazAZ(CHAR_T c) in isazAZ()
142 is09azAZ(CHAR_T c) in is09azAZ()
/dragonfly/contrib/lvm2/dist/libdm/datastruct/
H A Dhash.c125 struct dm_hash_node *c, *n; in _free_nodes() local
146 struct dm_hash_node **c; in _find() local
162 struct dm_hash_node **c = _find(t, key, len); in dm_hash_lookup_binary() local
170 struct dm_hash_node **c = _find(t, key, len); in dm_hash_insert_binary() local
192 struct dm_hash_node **c = _find(t, key, len); in dm_hash_remove_binary() local
224 struct dm_hash_node *c, *n; in dm_hash_iter() local
255 struct dm_hash_node *c = NULL; in _next_slot() local
/dragonfly/contrib/mpc/src/
H A Dinp_str.c29 int c = getc (stream); in skip_whitespace() local
46 int c; in extract_suffix() local
79 int c; in extract_string() local
166 int c; in mpc_inp_str() local
/dragonfly/crypto/libressl/crypto/whrlpool/
H A Dwp_dgst.c59 int WHIRLPOOL_Init(WHIRLPOOL_CTX *c) in WHIRLPOOL_Init()
65 int WHIRLPOOL_Update (WHIRLPOOL_CTX *c,const void *_inp,size_t bytes) in WHIRLPOOL_Update()
86 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *_inp,size_t bits) in WHIRLPOOL_BitUpdate()
217 int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c) in WHIRLPOOL_Final()
/dragonfly/sys/dev/misc/dcons/
H A Ddcons_os.c141 dcons_check_break(struct dcons_softc *dc, int c) in dcons_check_break()
168 #define dcons_check_break(dc, c) (c) argument
174 int c; in dcons_os_checkc() local
190 int c; in dcons_os_getc() local
198 dcons_os_putc(struct dcons_softc *dc, int c) in dcons_os_putc()
341 int i, c, polltime; in dcons_timeout() local
403 dcons_cnputc(struct consdev *cp, int c) in dcons_cnputc()
422 dcons_cnputc(void *private, int c) in dcons_cnputc()

12345678910>>...111