Searched refs:de (Results 26 - 50 of 142) sorted by relevance

123456

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DARMAttributeParser.cpp75 StringRef desc = de.getCStrRef(cursor);
99 uint64_t value = de.getULEB128(cursor);
212 uint64_t value = de.getULEB128(cursor);
231 uint64_t value = de.getULEB128(cursor);
286 uint64_t integer = de.getULEB128(cursor);
287 StringRef string = de.getCStrRef(cursor);
376 uint64_t value = de.getULEB128(cursor);
390 StringRef RawStringValue = de.getCStrRef(cursor);
393 uint64_t InnerTag = de.getULEB128(cursor);
407 uint64_t InnerValue = de
[all...]
H A DRISCVAttributeParser.cpp47 uint64_t value = de.getULEB128(cursor);
/freebsd-current/contrib/elftoolchain/nm/
H A Dnm.c965 Dwarf_Error de; local
967 if (dwarf_get_elf(dbg, &elf, &de) != DW_DLV_OK) {
968 warnx("dwarf_get_elf failed: %s", dwarf_errmsg(de));
998 Dwarf_Error de; local
1002 if (dwarf_attrval_string(die, DW_AT_name, &str, &de) == DW_DLV_OK) {
1010 if (dwarf_attr(die, DW_AT_specification, &at, &de) != DW_DLV_OK)
1013 if (dwarf_global_formref(at, &off, &de) != DW_DLV_OK)
1016 if (dwarf_offdie(dbg, off, &ret_die, &de) != DW_DLV_OK)
1033 Dwarf_Error de; local
1038 if (dwarf_tag(die, &tag, &de) !
1181 Dwarf_Error de; local
[all...]
/freebsd-current/sys/fs/devfs/
H A Ddevfs.h178 #define DEVFS_DE_HOLD(de) ((de)->de_holdcnt++)
179 #define DEVFS_DE_DROP(de) (--(de)->de_holdcnt == 0)
/freebsd-current/contrib/elftoolchain/readelf/
H A Dreadelf.c4890 Dwarf_Error de; local
4924 NULL, &de)) == DW_DLV_OK) {
4926 while (dwarf_siblingof(re->dbg, die, &die, &de) == DW_DLV_OK) {
4927 if (dwarf_tag(die, &tag, &de) != DW_DLV_OK) {
4929 dwarf_errmsg(de));
4941 &de) != DW_DLV_OK) {
4978 (void) dwarf_get_address_size(re->dbg, &pointer_size, &de);
5157 warnx("dwarf_next_cu_header: %s", dwarf_errmsg(de));
5172 Dwarf_Error de; local
5179 NULL, &de))
5232 Dwarf_Error de; local
5512 Dwarf_Error de; local
5610 Dwarf_Error de; local
5688 Dwarf_Error de; local
5769 Dwarf_Error de; local
5843 Dwarf_Error de; local
5921 Dwarf_Error de; local
5963 Dwarf_Error de; local
6016 Dwarf_Error de; local
6120 Dwarf_Error de; local
6216 Dwarf_Error de; local
6427 Dwarf_Error de; local
6762 Dwarf_Error de; local
6789 Dwarf_Error de; local
7376 Dwarf_Error de; local
[all...]
/freebsd-current/sys/fs/tmpfs/
H A Dtmpfs_vnops.c94 struct tmpfs_dirent *de; local
127 de = tmpfs_dir_lookup(dnode, NULL, cnp);
128 if (de != NULL && de->td_node == NULL)
130 if (de == NULL || de->td_node == NULL) {
158 tnode = de->td_node;
743 struct tmpfs_dirent *de; local
756 de = tmpfs_dir_lookup(dnode, node, v->a_cnp);
757 MPASS(de !
793 struct tmpfs_dirent *de; local
849 struct tmpfs_dirent *de; local
977 struct tmpfs_dirent *de; local
1314 struct tmpfs_dirent *de; local
1711 struct tmpfs_dirent *de; local
1734 struct tmpfs_dirent *de; local
1750 struct tmpfs_dirent *de; local
1785 struct tmpfs_dirent *de; local
[all...]
H A Dtmpfs.h522 * Checks that the directory entry pointed by 'de' matches the name 'name'
525 #define TMPFS_DIRENT_MATCHES(de, name, len) \
526 (de->td_namelen == len && \
527 bcmp((de)->ud.td_name, (name), (de)->td_namelen) == 0)
/freebsd-current/sys/security/mac/
H A Dmac_vfs.c97 mac_devfs_init(struct devfs_dirent *de) argument
101 de->de_label = mac_devfs_label_alloc();
103 de->de_label = NULL;
155 mac_devfs_destroy(struct devfs_dirent *de) argument
158 if (de->de_label != NULL) {
159 mac_devfs_label_free(de->de_label);
160 de->de_label = NULL;
229 mac_devfs_update(struct mount *mp, struct devfs_dirent *de, struct vnode *vp) argument
232 MAC_POLICY_PERFORM_NOSLEEP(devfs_update, mp, de, de
237 mac_devfs_vnode_associate(struct mount *mp, struct devfs_dirent *de, struct vnode *vp) argument
975 mac_devfs_create_device(struct ucred *cred, struct mount *mp, struct cdev *dev, struct devfs_dirent *de) argument
984 mac_devfs_create_symlink(struct ucred *cred, struct mount *mp, struct devfs_dirent *dd, struct devfs_dirent *de) argument
993 mac_devfs_create_directory(struct mount *mp, char *dirname, int dirnamelen, struct devfs_dirent *de) argument
[all...]
/freebsd-current/usr.bin/diff3/
H A Ddiff3.c115 * "de" is used to gather editing scripts. These are later spewed out in
117 * components of "de" contain line positions. Array overlap indicates which
118 * sections in "de" correspond to lines that are different in all three files.
120 static struct diff *de; variable in typeref:struct:diff
540 de[j].type = difftype;
542 de[j].line = strdup(diff->line);
545 de[j].old.from = diff->old.from;
546 de[j].old.to = diff->old.to;
547 de[j].new.from = diff->new.from;
548 de[
[all...]
/freebsd-current/sys/contrib/dev/athk/
H A Ddfs_pattern_detector.c188 struct pri_detector *de = cd->detectors[i]; local
189 if (de != NULL)
190 de->exit(de);
216 struct pri_detector *de = pri_detector_init(rs); local
217 if (de == NULL)
219 cd->detectors[i] = de;
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_link.c473 dof_elf32_t de; local
477 if (prepare_elf32(dtp, dof, &de) != 0)
484 nshdr = de.de_nrel == 0 ? ESHDR_SYMTAB + 1 : ESHDR_NUM;
557 shp->sh_size = de.de_strlen;
568 shp->sh_info = de.de_global;
569 shp->sh_size = de.de_nsym * sizeof (Elf32_Sym);
573 if (de.de_nrel == 0) {
577 PWRITE_SCN(ESHDR_STRTAB, de.de_strtab) ||
578 PWRITE_SCN(ESHDR_SYMTAB, de.de_sym) ||
587 shp->sh_entsize = sizeof (de
627 dof_elf64_t de; local
[all...]
/freebsd-current/share/vt/keymaps/
H A DMakefile25 de.acc.kbd \
26 de.noacc.kbd \
27 de.kbd \
/freebsd-current/sys/fs/ext2fs/
H A Dext2_lookup.c123 struct ext2fs_direct_2 *de, int entryoffsetinblock);
815 ext2_check_direntry(struct vnode *dp, struct ext2fs_direct_2 *de, argument
821 if (le16toh(de->e2d_reclen) < EXT2_DIR_REC_LEN(1))
823 else if (le16toh(de->e2d_reclen) % 4 != 0)
825 else if (le16toh(de->e2d_reclen) < EXT2_DIR_REC_LEN(de->e2d_namlen))
827 else if (entryoffsetinblock + le16toh(de->e2d_reclen)> fs->e2fs_bsize)
829 else if (le32toh(de->e2d_ino) > fs->e2fs->e2fs_icount)
831 else if (le32toh(de->e2d_ino) == EXT2_ROOTINO &&
832 ((de
[all...]
/freebsd-current/usr.sbin/makefs/
H A Dffs.c1021 struct direct *de; local
1030 de = (struct direct *)(dbuf->buf + i);
1031 reclen = ufs_rw16(de->d_reclen, needswap);
1034 ufs_rw32(de->d_ino, needswap),
1035 inode_type(DTTOIF(de->d_type)), i, reclen,
1036 de->d_namlen, de->d_name);
1045 struct direct de, *dp; local
1053 (void)memset(&de, 0, sizeof(de));
[all...]
H A Dmsdos.c243 struct denode *de; local
244 if ((de = msdosfs_mkdire(pbuf, dir, cur)) == NULL) {
248 if (msdos_populate_dir(pbuf, de, cur->child, cur,
/freebsd-current/contrib/bmake/unit-tests/
H A Dopt-debug-errors-jobs.mk3 # Tests for the -de command line option, which adds debug logging for
6 .MAKEFLAGS: -de -j1
H A Dvarname-make_print_var_on_error-jobs.mk11 # happened. For more details, use the debug options -de, -dj, -dl, -dn, -dx.
/freebsd-current/usr.sbin/bhyve/kbdlayout/
H A DMakefile12 de de_acc de_noacc \
/freebsd-current/contrib/dma/
H A Dspool.c287 struct dirent *de; local
298 while ((de = readdir(spooldir)) != NULL) {
303 if (de->d_name[0] != 'Q')
305 if (asprintf(&queuefn, "%s/Q%s", config.spooldir, de->d_name + 1) < 0)
307 if (asprintf(&mailfn, "%s/M%s", config.spooldir, de->d_name + 1) < 0)
311 * Some file systems don't provide a de->d_type, so we have to
/freebsd-current/contrib/unbound/contrib/
H A Dwarmup.sh99 shallalist.de
113 torstatus.blutmagie.de
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dzfs_znode.h157 #define ZFS_DIRENT_TYPE(de) BF64_GET(de, 60, 4)
158 #define ZFS_DIRENT_OBJ(de) BF64_GET(de, 0, 48)
/freebsd-current/tools/test/ptrace/
H A Dscescx.c104 char de[32]; local
126 snprintf(de, sizeof(de), "<%d>", i);
127 strlcat(c, de, sizeof(c));
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttributeParser.h34 DataExtractor de{ArrayRef<uint8_t>{}, true, 0};
/freebsd-current/usr.sbin/bsdinstall/scripts/
H A Ddocsinstall44 bn da de el en es fr hu id it ja ko mn nl pl pt ru tr zh_cn zh_tw \
/freebsd-current/contrib/libarchive/tar/test/
H A Dtest_copy.c245 struct dirent *de; local
252 while ((de = readdir(d)) != NULL) {
253 char *p = de->d_name;

Completed in 244 milliseconds

123456