| /freebsd-9-stable/crypto/openssl/crypto/lhash/ |
| D | lhash.h | 102 # define DECLARE_LHASH_HASH_FN(f_name,o_type) \ argument 103 unsigned long f_name##_LHASH_HASH(const void *); 104 # define IMPLEMENT_LHASH_HASH_FN(f_name,o_type) \ argument 105 unsigned long f_name##_LHASH_HASH(const void *arg) { \ 107 return f_name(a); } 108 # define LHASH_HASH_FN(f_name) f_name##_LHASH_HASH argument 111 # define DECLARE_LHASH_COMP_FN(f_name,o_type) \ argument 112 int f_name##_LHASH_COMP(const void *, const void *); 113 # define IMPLEMENT_LHASH_COMP_FN(f_name,o_type) \ argument 114 int f_name##_LHASH_COMP(const void *arg1, const void *arg2) { \ [all …]
|
| /freebsd-9-stable/crypto/openssl/doc/crypto/ |
| D | lhash.pod | 52 #define DECLARE_LHASH_HASH_FN(f_name,o_type) \ 53 unsigned long f_name##_LHASH_HASH(const void *); 54 #define IMPLEMENT_LHASH_HASH_FN(f_name,o_type) \ 55 unsigned long f_name##_LHASH_HASH(const void *arg) { \ 57 return f_name(a); } 58 #define LHASH_HASH_FN(f_name) f_name##_LHASH_HASH 60 #define DECLARE_LHASH_COMP_FN(f_name,o_type) \ 61 int f_name##_LHASH_COMP(const void *, const void *); 62 #define IMPLEMENT_LHASH_COMP_FN(f_name,o_type) \ 63 int f_name##_LHASH_COMP(const void *arg1, const void *arg2) { \ [all …]
|
| /freebsd-9-stable/usr.bin/find/ |
| D | option.c | 92 { "-ilname", c_name, f_name, F_LINK | F_IGNCASE }, 93 { "-iname", c_name, f_name, F_IGNCASE }, 99 { "-lname", c_name, f_name, F_LINK }, 107 { "-name", c_name, f_name, 0 },
|
| D | extern.h | 97 exec_f f_name; variable
|
| /freebsd-9-stable/sys/fs/smbfs/ |
| D | smbfs_smb.c | 1029 ctx->f_name = ctx->f_fname; in smbfs_findopenLM1() 1059 cp = ctx->f_name; in smbfs_findnextLM1() 1063 while (*cp == ' ' && cp >= ctx->f_name) in smbfs_findnextLM1() 1069 ctx->f_nmlen = strlen(ctx->f_name); in smbfs_findnextLM1() 1220 ctx->f_name = malloc(SMB_MAXFNAMELEN * 2, M_SMBFSDATA, M_WAITOK); in smbfs_findopenLM2() 1222 ctx->f_name = malloc(SMB_MAXFNAMELEN, M_SMBFSDATA, M_WAITOK); in smbfs_findopenLM2() 1223 if (ctx->f_name == NULL) in smbfs_findopenLM2() 1305 cp = ctx->f_name; in smbfs_findnextLM2() 1339 bcopy(ctx->f_name, ctx->f_rname, nmlen); in smbfs_findnextLM2() 1353 if (ctx->f_name) in smbfs_findcloseLM2() [all …]
|
| D | smbfs_subr.h | 92 char * f_name; /* current file name */ member
|
| /freebsd-9-stable/tools/regression/security/cap_test/ |
| D | cap_test_fcntl.c | 55 char *f_name; member 110 FAIL("Error calling fcntl('%s', F_GETFL)", f.f_name); in test_fcntl()
|
| /freebsd-9-stable/sys/boot/ia64/common/ |
| D | exec.c | 223 printf("Entering %s at 0x%lx...\n", fp->f_name, hdr->e_entry); in elf64_exec() 225 error = ia64_platform_enter(fp->f_name); in elf64_exec() 247 fp->f_name); in elf64_obj_exec()
|
| /freebsd-9-stable/contrib/ntp/sntp/libopts/ |
| D | configfile.c | 1006 char f_name[ AG_PATH_MAX+1 ]; in intern_file_load() local 1052 if (! optionMakePath(f_name, (int)sizeof(f_name), in intern_file_load() 1061 if (stat(f_name, &sb) != 0) in intern_file_load() 1065 size_t len = strlen(f_name); in intern_file_load() 1067 char * pz = f_name + len; in intern_file_load() 1069 if (len + 1 + nln >= sizeof(f_name)) in intern_file_load() 1077 file_preset(opts, f_name, inc); in intern_file_load()
|
| /freebsd-9-stable/usr.bin/csup/ |
| D | fixups.c | 87 fixup->f_name = xstrdup(name); in fixup_new() 96 free(fixup->f_name); in fixup_free()
|
| D | fixups.h | 38 char *f_name; member
|
| D | detailer.c | 207 fixup->f_name, coll->co_tag, coll->co_date); in detailer_batch() 210 fixup->f_name); in detailer_batch()
|
| /freebsd-9-stable/contrib/ntp/libparse/ |
| D | parsestreams.c | 236 if (!Strncmp(fm->f_name, mname, FMNAMESZ)) in xxxinit() 243 (fm->f_name[0] == '\0') && in xxxinit() 267 Strncpy(ifm->f_name, mname, FMNAMESZ); in xxxinit() 268 ifm->f_name[FMNAMESZ] = '\0'; in xxxinit() 323 if (!Strncmp(fm->f_name, mname, FMNAMESZ)) in xxxinit() 328 fm->f_name[0] = '\0'; in xxxinit()
|
| /freebsd-9-stable/sys/boot/common/ |
| D | module.c | 241 (void *) fp->f_addr, fp->f_name, fp->f_type, (long) fp->f_size); in command_lsmod() 407 fp->f_name = strdup(name); in file_loadraw() 527 if (((name == NULL) || !strcmp(name, fp->f_name)) && in file_findfile() 851 if (fp->f_name != NULL) in file_discard() 852 free(fp->f_name); in file_discard()
|
| D | bootstrap.h | 208 char *f_name; /* file name */ member
|
| /freebsd-9-stable/sys/boot/i386/efi/ |
| D | elf32_freebsd.c | 75 ldr_enter(fp->f_name); in elf32_exec()
|
| D | bootinfo.c | 209 MOD_NAME(addr, fp->f_name); in bi_copymodules()
|
| /freebsd-9-stable/contrib/libstdc++/scripts/ |
| D | make_graph.py | 88 def __parse_res_sets(self, f_name, cntnr_list): argument 89 tst_dat = minidom.parse(f_name) 114 f_name = res_dir + '/' + self.__test_to_f_names[test_name] 115 parsed = self.__parse_res_sets(f_name, cntnr_list)
|
| /freebsd-9-stable/usr.sbin/config/ |
| D | config.h | 60 char *f_name; member
|
| D | mkmakefile.c | 571 read_file(nl->f_name); in read_files() 573 free(nl->f_name); in read_files()
|
| /freebsd-9-stable/sys/i386/i386/ |
| D | db_disasm.c | 105 const char * f_name; /* name for memory instruction */ member 1072 if (*fp->f_name == '\0') { 1080 db_printf("%s", fp->f_name); 1112 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; 1116 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; 1120 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name;
|
| /freebsd-9-stable/sys/amd64/amd64/ |
| D | db_disasm.c | 120 const char * f_name; /* name for memory instruction */ member 1135 if (*fp->f_name == '\0') { 1143 db_printf("%s", fp->f_name); 1175 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; 1179 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; 1183 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name;
|
| /freebsd-9-stable/sys/boot/i386/libi386/ |
| D | bootinfo64.c | 113 MOD_NAME(addr, fp->f_name, c); /* this field must come first */ in bi_copymodules64()
|
| D | bootinfo32.c | 111 MOD_NAME(addr, fp->f_name, c); /* this field must come first */ in bi_copymodules32()
|
| /freebsd-9-stable/sys/boot/userboot/userboot/ |
| D | bootinfo64.c | 113 MOD_NAME(addr, fp->f_name, c); /* this field must come first */ in bi_copymodules64()
|