Home
last modified time | relevance | path

Searched refs:npath (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/sound/pci/riptide/
Driptide.c782 unsigned char *npath = path; in alloclbuspath() local
784 while (*npath != 0xff) in alloclbuspath()
785 npath++; in alloclbuspath()
786 alloclbuspath(cif, source + 1, ++npath, mixer, s); in alloclbuspath()
804 unsigned char *npath = path; in freelbuspath() local
806 while (*npath != 0xff) in freelbuspath()
807 npath++; in freelbuspath()
808 freelbuspath(cif, source + 1, ++npath); in freelbuspath()
/linux-4.4.14/fs/ext4/
Dextents.c1933 struct ext4_ext_path *npath = NULL; in ext4_ext_insert_extent() local
2040 BUG_ON(npath != NULL); in ext4_ext_insert_extent()
2041 npath = ext4_find_extent(inode, next, NULL, 0); in ext4_ext_insert_extent()
2042 if (IS_ERR(npath)) in ext4_ext_insert_extent()
2043 return PTR_ERR(npath); in ext4_ext_insert_extent()
2044 BUG_ON(npath->p_depth != path->p_depth); in ext4_ext_insert_extent()
2045 eh = npath[depth].p_hdr; in ext4_ext_insert_extent()
2049 path = npath; in ext4_ext_insert_extent()
2141 ext4_ext_drop_refs(npath); in ext4_ext_insert_extent()
2142 kfree(npath); in ext4_ext_insert_extent()
/linux-4.4.14/tools/perf/
Dbuiltin-trace.c1458 char **npath = realloc(ttrace->paths.table, (fd + 1) * sizeof(char *)); in trace__set_fd_pathname() local
1460 if (npath == NULL) in trace__set_fd_pathname()
1464 memset(npath + ttrace->paths.max + 1, 0, in trace__set_fd_pathname()
1467 memset(npath, 0, (fd + 1) * sizeof(char *)); in trace__set_fd_pathname()
1470 ttrace->paths.table = npath; in trace__set_fd_pathname()