Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 7300) sorted by relevance

12345678910>>...292

/freebsd-14-stable/usr.sbin/acpi/acpidb/
HDMakefile3 SRCS= acpidb.c
6 SRCS+= acfileio.c acgetline.c ahids.c ahuuids.c cmfsize.c
9 SRCS+= dbcmds.c dbconvert.c dbdisply.c dbexec.c dbfileio.c \
10 dbhistry.c dbinput.c dbmethod.c dbnames.c dbobject.c \
11 dbstats.c dbtest.c dbutils.c dbxface.c
14 SRCS+= dmbuffer.c dmcstyle.c dmdeferred.c dmnames.c dmopcode.c \
15 dmresrc.c dmresrcl.c dmresrcl2.c dmresrcs.c dmutils.c \
16 dmwalk.c
19 SRCS+= dsargs.c dscontrol.c dsdebug.c dsfield.c dsinit.c \
20 dsmethod.c dsmthdat.c dsobject.c dsopcode.c dspkginit.c \
[all …]
/freebsd-14-stable/usr.sbin/tcpdump/tcpdump/
HDMakefile9 SRCS= addrtoname.c \
10 addrtostr.c \
11 af.c \
12 ascii_strcasecmp.c \
13 checksum.c \
14 cpack.c \
15 fptype.c \
16 gmpls.c \
17 in_cksum.c \
18 ipproto.c \
[all …]
/freebsd-14-stable/contrib/tcsh/
HDsh.char.h151 # define cmap(c, bits) \ argument
152 (((c) & QUOTE) || (unsigned int)(c) >= 0x0080 ? 0 : \
153 (_cmap[(tcshuc)ASC(c)] & (bits)))
155 # define cmap(c, bits) \ argument
156 ((((c) & QUOTE) || ((tcshuc)(ASC(c) & 0x80) && adrof(STRnokanji))) ? \
157 0 : (_cmap[(tcshuc)ASC(c)] & (bits)))
159 # define cmap(c, bits) \ argument
160 (((c) & QUOTE) ? 0 : (_cmap[(tcshuc)ASC(c)] & (bits)))
163 #define isglob(c) cmap((c), _GLOB) argument
164 #define isspc(c) cmap((c), _SP) argument
[all …]
/freebsd-14-stable/sbin/ipf/libipf/
HDMakefile6 SRCS= addicmp.c addipopt.c alist_free.c alist_new.c allocmbt.c \
7 assigndefined.c bcopywrap.c \
8 binprint.c buildopts.c checkrev.c connecttcp.c \
9 count4bits.c count6bits.c \
10 debug.c dupmbt.c \
11 facpri.c familyname.c \
12 fill6bits.c findword.c \
13 flags.c freembt.c ftov.c \
14 genmask.c \
15 gethost.c getifname.c geticmptype.c \
[all …]
/freebsd-14-stable/usr.sbin/acpi/iasl/
HDMakefile5 SRCS= acfileio.c adfile.c adisasm.c adwalk.c ahids.c \
6 ahpredef.c ahtable.c ahuuids.c cmfsize.c dmextern.c \
7 dmrestag.c dmswitch.c dmtable.c dmtables.c dmtbdump.c \
8 dmtbdump1.c dmtbdump2.c dmtbdump3.c dmtbinfo.c \
9 dmtbinfo1.c dmtbinfo2.c dmtbinfo3.c getopt.c
12 SRCS+= aslallocate.c aslanalyze.c aslascii.c aslbtypes.c \
13 aslcache.c aslcodegen.c aslcompile.c aslcompiler.y.h \
14 aslcompilerlex.c aslcompilerparse.c asldebug.c \
15 aslerror.c aslexternal.c aslfileio.c aslfiles.c \
16 aslfold.c aslhelp.c aslhex.c asllength.c asllisting.c \
[all …]
/freebsd-14-stable/secure/lib/libcrypto/
HDMakefile21 SRCS= asn1_dsa.c bsearch.c cpt_err.c context.c core_algorithm.c core_fetch.c core_namemap.c cpuid.c
22 SRCS+= cversion.c der_writer.c ebcdic.c ex_data.c getenv.c info.c init.c initthread.c
23 SRCS+= mem.c mem_sec.c o_dir.c o_fopen.c o_init.c o_str.c o_time.c packet.c
24 SRCS+= param_build.c param_build_set.c params.c params_dup.c params_from_text.c
25c provider.c provider_child.c provider_conf.c provider_core.c provider_predefined.c punycode.c sel…
27 SRCS+= arm64cpuid.S armcap.c
32 SRCS+= armv4cpuid.S armcap.c
36 SRCS+= ppccpuid.S ppccap.c
38 SRCS+= ppccpuid.S ppccap.c
40 SRCS+= ppccpuid.S ppccap.c
[all …]
/freebsd-14-stable/lib/libbearssl/
HDMakefile12 codec/dec16be.c \
13 codec/dec16le.c \
14 codec/dec32le.c \
15 codec/dec64le.c \
16 codec/enc16be.c \
17 codec/enc16le.c \
18 codec/enc32le.c \
19 codec/enc64le.c \
20 codec/pemenc.c \
21 ec/ec_all_m15.c \
[all …]
/freebsd-14-stable/crypto/openssh/
HDnchan.c93 chan_set_istate(Channel *c, u_int next) in chan_set_istate() argument
95 if (c->istate > CHAN_INPUT_CLOSED || next > CHAN_INPUT_CLOSED) in chan_set_istate()
96 fatal("chan_set_istate: bad state %d -> %d", c->istate, next); in chan_set_istate()
97 debug2("channel %d: input %s -> %s", c->self, istates[c->istate], in chan_set_istate()
99 c->istate = next; in chan_set_istate()
103 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() argument
105 if (c->ostate > CHAN_OUTPUT_CLOSED || next > CHAN_OUTPUT_CLOSED) in chan_set_ostate()
106 fatal("chan_set_ostate: bad state %d -> %d", c->ostate, next); in chan_set_ostate()
107 debug2("channel %d: output %s -> %s", c->self, ostates[c->ostate], in chan_set_ostate()
109 c->ostate = next; in chan_set_ostate()
[all …]
/freebsd-14-stable/sys/modules/isci/
HDMakefile9 SRCS = isci.c isci_oem_parameters.c \
10 isci_controller.c isci_domain.c isci_io_request.c \
11 isci_timer.c isci_remote_device.c isci_logger.c \
12 isci_task_request.c isci_sysctl.c isci_interrupt.c
15 sci_base_controller.c \
16 sci_base_domain.c \
17 sci_base_iterator.c \
18 sci_base_library.c \
19 sci_base_logger.c \
20 sci_base_memory_descriptor_list.c \
[all …]
/freebsd-14-stable/sys/contrib/openzfs/module/
HDMakefile.bsd86 SRCS+= avl.c
89 SRCS+= edonr.c
92 SRCS+= blake3.c \
93 blake3_generic.c \
94 blake3_impl.c
111 SRCS+= sha2_generic.c \
112 sha256_impl.c \
113 sha512_impl.c
134 SRCS+= lapi.c \
135 lauxlib.c \
[all …]
/freebsd-14-stable/sys/modules/zfs/
HDMakefile57 SRCS+= avl.c
60 SRCS+= edonr.c
63 SRCS+= blake3.c \
64 blake3_generic.c \
65 blake3_impl.c
89 SRCS+= sha2_generic.c \
90 sha256_impl.c \
91 sha512_impl.c
120 SRCS+= lapi.c \
121 lauxlib.c \
[all …]
/freebsd-14-stable/usr.bin/vi/
HDMakefile46 SRCS+= cl_funcs.c cl_main.c cl_read.c cl_screen.c cl_term.c
49 SRCS+= conv.c cut.c delete.c encoding.c exf.c key.c line.c log.c main.c mark.c msg.c options.c \
50 options_f.c put.c recover.c screen.c search.c seq.c util.c
53 SRCS+= ex.c ex_abbrev.c ex_append.c ex_args.c ex_argv.c ex_at.c ex_bang.c \
54 ex_cd.c ex_cmd.c ex_cscope.c ex_delete.c ex_display.c \
55 ex_edit.c ex_equal.c ex_file.c ex_filter.c ex_global.c \
56 ex_init.c ex_join.c ex_map.c ex_mark.c ex_mkexrc.c ex_move.c \
57 ex_open.c ex_preserve.c ex_print.c ex_put.c ex_quit.c \
58 ex_read.c ex_screen.c ex_script.c ex_set.c ex_shell.c \
59 ex_shift.c ex_source.c ex_stop.c ex_subst.c ex_tag.c \
[all …]
/freebsd-14-stable/contrib/libfido2/regress/
HDcred.c1429 fido_cred_t *c; in alloc_cred() local
1431 c = fido_cred_new(); in alloc_cred()
1432 assert(c != NULL); in alloc_cred()
1434 return (c); in alloc_cred()
1438 free_cred(fido_cred_t *c) in free_cred() argument
1440 fido_cred_free(&c); in free_cred()
1441 assert(c == NULL); in free_cred()
1465 fido_cred_t *c; in empty_cred() local
1469 c = alloc_cred(); in empty_cred()
1470 assert(fido_cred_authdata_len(c) == 0); in empty_cred()
[all …]
/freebsd-14-stable/usr.sbin/ntp/libntp/
HDMakefile11 NTP_SRCS= systime.c a_md5encrypt.c adjtime.c atoint.c \
12 atolfp.c atouint.c audio.c authkeys.c \
13 authreadkeys.c authusekey.c bsd_strerror.c buftvtots.c \
14 caljulian.c caltontp.c calyearstart.c clocktime.c \
15 clocktypes.c decodenetnum.c dofptoa.c dolfptoa.c \
16 emalloc.c findconfig.c getopt.c hextoint.c \
17 hextolfp.c humandate.c icom.c iosignal.c \
18 is_ip_address.c \
19 lib_strbuf.c \
20 libssl_compat.c \
[all …]
/freebsd-14-stable/crypto/openssl/crypto/x509/
HDbuild.info3 x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \
4 x509_obj.c x509_req.c x509spki.c x509_vfy.c \
5 x509_set.c x509cset.c x509rset.c x509_err.c \
6 x509name.c x509_v3.c x509_ext.c x509_att.c \
7 x509_meth.c x509_lu.c x_all.c x509_txt.c \
8 x509_trust.c by_file.c by_dir.c by_store.c x509_vpm.c \
9 x_crl.c t_crl.c x_req.c t_req.c x_x509.c t_x509.c \
10 x_pubkey.c x_x509a.c x_attrib.c x_exten.c x_name.c \
11 v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_utf8.c v3_lib.c \
12 v3_prn.c v3_utl.c v3err.c v3_genn.c v3_san.c v3_skid.c v3_akid.c \
[all …]
/freebsd-14-stable/secure/lib/libssh/
HDMakefile8 SRCS= ssh_api.c ssherr.c \
9 sshbuf.c sshkey.c sshbuf-getput-basic.c \
10 sshbuf-misc.c sshbuf-getput-crypto.c krl.c bitmap.c
11 SRCS+= authfd.c authfile.c \
12 canohost.c channels.c cipher.c cipher-aes.c cipher-aesctr.c \
13 cleanup.c \
14 compat.c fatal.c hostfile.c \
15 log.c match.c moduli.c nchan.c packet.c \
16 readpass.c ttymodes.c xmalloc.c addr.c addrmatch.c \
17 atomicio.c dispatch.c mac.c misc.c utf8.c \
[all …]
/freebsd-14-stable/sys/ddb/
HDdb_lex.c101 int c; in db_read_char() local
104 c = -1; in db_read_char()
106 c = *db_lp++; in db_read_char()
107 return (c); in db_read_char()
111 db_unread_char(int c) in db_unread_char() argument
114 if (c == -1) { in db_unread_char()
121 if (*db_lp != c) in db_unread_char()
168 int c, n, radix_mode; in db_lex() local
189 c = db_read_char(); in db_lex()
190 for (n = 0; c <= ' ' || c > '~'; n++) { in db_lex()
[all …]
/freebsd-14-stable/usr.bin/ofed/opensm/
HDMakefile9 main.c \
10 osm_congestion_control.c \
11 osm_console.c \
12 osm_console_io.c \
13 osm_db_files.c \
14 osm_db_pack.c \
15 osm_drop_mgr.c \
16 osm_dump.c \
17 osm_event_plugin.c \
18 osm_guid_info_rcv.c \
[all …]
/freebsd-14-stable/usr.sbin/ppp/
HDchat.c81 #define BUFLEFT(c) (sizeof (c)->buf - ((c)->bufend - (c)->buf)) argument
89 struct chat *c = (struct chat *)v; in chat_PauseTimer() local
90 timer_Stop(&c->pause); in chat_PauseTimer()
91 c->pause.load = 0; in chat_PauseTimer()
95 chat_Pause(struct chat *c, u_long load) in chat_Pause() argument
97 timer_Stop(&c->pause); in chat_Pause()
98 c->pause.load += load; in chat_Pause()
99 c->pause.func = chat_PauseTimer; in chat_Pause()
100 c->pause.name = "chat pause"; in chat_Pause()
101 c->pause.arg = c; in chat_Pause()
[all …]
/freebsd-14-stable/sys/contrib/openzfs/lib/libzpool/
HDMakefile.am14 %D%/abd_os.c \
15 %D%/arc_os.c \
16 %D%/kernel.c \
17 %D%/taskq.c \
18 %D%/util.c \
19 %D%/vdev_label_os.c \
20 %D%/zfs_racct.c \
21 %D%/zfs_debug.c
24 module/lua/lapi.c \
25 module/lua/lauxlib.c \
[all …]
/freebsd-14-stable/lib/ncurses/ncurses/
HDMakefile15 expanded.c \
16 lib_gen.c
22 new_pair.c \
23 lib_dft_fgbg.c \
24 legacy_coding.c \
25 lib_addch.c \
26 lib_addstr.c \
27 lib_beep.c \
28 lib_bkgd.c \
29 lib_box.c \
[all …]
/freebsd-14-stable/lib/msun/
HDMakefile61 COMMON_SRCS= b_tgamma.c \
62 e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c \
63 e_atan2.c e_atan2f.c e_atanh.c e_atanhf.c e_cosh.c e_coshf.c e_exp.c \
64 e_expf.c e_fmod.c e_fmodf.c e_gamma.c e_gamma_r.c e_gammaf.c \
65 e_gammaf_r.c e_hypot.c e_hypotf.c e_j0.c e_j0f.c e_j1.c e_j1f.c \
66 e_jn.c e_jnf.c e_lgamma.c e_lgamma_r.c e_lgammaf.c e_lgammaf_r.c \
67 e_log.c e_log10.c e_log10f.c e_log2.c e_log2f.c e_logf.c \
68 e_pow.c e_powf.c e_rem_pio2.c \
69 e_rem_pio2f.c e_remainder.c e_remainderf.c e_scalb.c e_scalbf.c \
70 e_sinh.c e_sinhf.c e_sqrt.c e_sqrtf.c fenv.c \
[all …]
/freebsd-14-stable/contrib/gdtoa/
HDmakefile26 .SUFFIXES: .c .o
32 .c.o:
33 $(CC) -c $(CFLAGS) $*.c
39 arith.h: arithchk.c
40 $(CC) $(CFLAGS) arithchk.c || $(CC) -DNO_LONG_LONG $(CFLAGS) arithchk.c
44 gd_qnan.h: arith.h qnan.c
45 $(CC) $(CFLAGS) qnan.c
49 gdtoa.a: dmisc.c dtoa.c g_Qfmt.c g__fmt.c g_ddfmt.c g_dfmt.c\
50 g_ffmt.c g_xLfmt.c g_xfmt.c gdtoa.c gethex.c gmisc.c hd_init.c\
51 hexnan.c misc.c smisc.c strtoIQ.c strtoId.c strtoIdd.c\
[all …]
/freebsd-14-stable/stand/libsa/
HDMakefile15 SRCS+= gzguts.h zutil.h __main.c abort.c assert.c bcd.c environment.c \
16 features.c getopt.c gets.c globals.c \
17 hexdump.c nvstore.c pager.c panic.c printf.c strdup.c strerror.c \
18 random.c sbrk.c tslog.c twiddle.c zalloc.c zalloc_malloc.c
21 SRCS+= strcasecmp.c
25 SRCS+= ntoh.c
29 SRCS+= bcmp.c bcopy.c bzero.c ffs.c fls.c \
30 memccpy.c memchr.c memcmp.c memcpy.c memmove.c memset.c \
31 strcat.c strchr.c strchrnul.c strcmp.c strcpy.c stpcpy.c stpncpy.c \
32 strcspn.c strlcat.c strlcpy.c strlen.c strncat.c strncmp.c strncpy.c \
[all …]
/freebsd-14-stable/lib/libsm/
HDMakefile24 SRCS+= assert.c debug.c errstring.c exc.c heap.c match.c rpool.c \
25 strdup.c strerror.c strl.c clrerr.c fclose.c feof.c ferror.c \
26 fflush.c fget.c fpos.c findfp.c flags.c fopen.c fprintf.c \
27 fpurge.c fput.c fread.c fscanf.c fseek.c fvwrite.c fwalk.c \
28 fwrite.c get.c makebuf.c put.c refill.c rewind.c setvbuf.c \
29 smstdio.c snprintf.c sscanf.c stdio.c strio.c ungetc.c \
30 vasprintf.c vfprintf.c vfscanf.c vprintf.c vsnprintf.c \
31 wbuf.c wsetup.c string.c stringf.c \
32 xtrap.c strto.c test.c strcasecmp.c strrevcmp.c \
33 signal.c clock.c config.c sem.c shm.c mbdb.c strexit.c cf.c ldap.c \
[all …]

12345678910>>...292