Home
last modified time | relevance | path

Searched refs:totalsize (Results 1 – 16 of 16) sorted by relevance

/linux-4.4.14/fs/ncpfs/
Dncpsign_kernel.h12 void __sign_packet(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, void …
13 int sign_verify_reply(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, co…
16 …_packet(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, void *sign_buff… in sign_packet() argument
19 __sign_packet(server, data, size, totalsize, sign_buff); in sign_packet()
Dncpsign_kernel.c95 void __sign_packet(struct ncp_server *server, const char *packet, size_t size, __u32 totalsize, voi… in __sign_packet() argument
99 *(__u32*)(data + 8) = totalsize; in __sign_packet()
110 int sign_verify_reply(struct ncp_server *server, const char *packet, size_t size, __u32 totalsize, … in sign_verify_reply() argument
115 *(__u32*)(data + 8) = totalsize; in sign_verify_reply()
/linux-4.4.14/scripts/dtc/
Dflattree.c359 fdt->totalsize = cpu_to_fdt32(reserve_off + reservesize + dtsize + strsize); in make_fdt_header()
400 padlen = minsize - fdt32_to_cpu(fdt.totalsize); in dt_to_blob()
404 fdt32_to_cpu(fdt.totalsize), minsize); in dt_to_blob()
411 int tsize = fdt32_to_cpu(fdt.totalsize); in dt_to_blob()
413 fdt.totalsize = cpu_to_fdt32(tsize); in dt_to_blob()
807 uint32_t magic, totalsize, version, size_dt, boot_cpuid_phys; in dt_from_blob() local
838 rc = fread(&totalsize, sizeof(totalsize), 1, f); in dt_from_blob()
848 totalsize = fdt32_to_cpu(totalsize); in dt_from_blob()
849 if (totalsize < FDT_V1_SIZE) in dt_from_blob()
850 die("DT blob size (%d) is too small\n", totalsize); in dt_from_blob()
[all …]
Dfdtdump.c56 uint32_t totalsize = fdt32_to_cpu(bph->totalsize); in dump_blob() local
68 printf("// totalsize:\t\t0x%x (%d)\n", totalsize, totalsize); in dump_blob()
Dutil.c271 int totalsize; in utilfdt_write_err() local
282 totalsize = fdt_totalsize(blob); in utilfdt_write_err()
285 while (offset < totalsize) { in utilfdt_write_err()
286 ret = write(fd, ptr + offset, totalsize - offset); in utilfdt_write_err()
/linux-4.4.14/arch/x86/include/asm/
Dmicrocode_intel.h15 unsigned int totalsize; member
47 ((struct microcode_intel *)mc)->hdr.totalsize : \
/linux-4.4.14/arch/arm/mach-pxa/
Dam200epd.c203 int totalsize; in am200_presetup_fb() local
237 totalsize = fw + am200_board.wfm_size + padding_size + (fw*fh); in am200_presetup_fb()
247 am200_fb_info.modes->yres = DIV_ROUND_UP(totalsize, fw); in am200_presetup_fb()
/linux-4.4.14/arch/sh/kernel/cpu/
Dinit.c199 #define CSHAPE(totalsize, linesize, assoc) \ argument
200 ((totalsize & ~0xff) | (linesize << 4) | assoc)
/linux-4.4.14/scripts/dtc/libfdt/
Dfdt.h59 fdt32_t totalsize; /* total size of DT block */ member
Dlibfdt.h173 #define fdt_totalsize(fdt) (fdt_get_header(fdt, totalsize))
190 __fdt_set_hdr(totalsize);
/linux-4.4.14/arch/powerpc/include/asm/
Dprom.h54 __be32 totalsize; /* total size of DT block */ member
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
Ddir.c1745 ssize_t totalsize; in ll_dir_ioctl() local
1752 totalsize = hur_len(hur); in ll_dir_ioctl()
1754 if (totalsize < 0) in ll_dir_ioctl()
1758 if (totalsize >= MDS_MAXREQSIZE / 3) in ll_dir_ioctl()
1761 hur = libcfs_kvzalloc(totalsize, GFP_NOFS); in ll_dir_ioctl()
1766 if (copy_from_user(hur, (void *)arg, totalsize)) { in ll_dir_ioctl()
1790 rc = obd_iocontrol(cmd, ll_i2mdexp(inode), totalsize, in ll_dir_ioctl()
/linux-4.4.14/arch/alpha/kernel/
Dsetup.c1312 #define CSHAPE(totalsize, linesize, assoc) \ argument
1313 ((totalsize & ~0xff) | (linesize << 4) | assoc)
/linux-4.4.14/arch/powerpc/platforms/powermac/
Dbootx_init.c401 hdr->totalsize = mem_end - mem_start; in bootx_flatten_dt()
/linux-4.4.14/Documentation/devicetree/
Dbooting-without-of.txt348 u32 totalsize; /* total size of DT block */
389 - totalsize
499 --- (base + totalsize)
/linux-4.4.14/arch/powerpc/kernel/
Dprom_init.c2290 hdr->totalsize = cpu_to_be32(dt_struct_end - dt_header_start); in flatten_device_tree()