Searched refs:fsize (Results 1 - 6 of 6) sorted by relevance

/openwrt/package/network/services/ead/src/tinysrp/
H A Dtconf.c71 int c, ch, i, lastidx, keylen, yesno, fsize, status, nparams; local
127 fsize = atoi(cbuf);
128 if(fsize < MIN_BASIS_BITS || fsize > BASIS_BITS) {
134 if(fsize <= keylen)
142 printf("done.\n\nGenerating a %d-bit composite with safe prime factors. This may take a while.\n", fsize);
144 printf("done.\n\nGenerating a %d-bit safe prime. This may take a while.\n", fsize);
146 while((tcent = (composite ? t_makeconfent_c(tc, fsize) :
147 t_makeconfent(tc, fsize))) == NULL)
/openwrt/tools/firmware-utils/src/
H A Dbuffalo-tag.c34 static ssize_t fsize[MAX_INPUT_FILES]; variable
181 tag->data_len = htonl(fsize[0]);
217 tag->len1 = htonl(fsize[0]);
218 tag->len2 = htonl(fsize[1]);
248 fsize[i] = get_file_size(ifname[i]);
249 if (fsize[i] < 0) {
253 buflen += fsize[i];
264 err = read_file_to_buf(ifname[i], buf + offset, fsize[i]);
270 offset += fsize[i];
H A Dseama.c170 size_t i, fsize = 0; local
178 fsize += i;
182 return fsize;
370 size_t i, fsize; local
380 fsize = calculate_digest(ifh, 0, digest);
381 verbose("file size (%s) : %d\n", o_images[i], fsize);
389 write_seama_header(fh, o_meta, o_msize, fsize);
H A Djcgimage.c199 mkuheader(struct uimage_header *h, size_t ksize, size_t fsize) argument
204 // printf("mkuheader: %p, %zd, %zd\n", h, ksize, fsize);
208 h->ih_size = htonl(ksize + fsize);
/openwrt/target/linux/generic/files/fs/yaffs2/
H A Dyaffs_guts.h996 void yaffs_oh_size_load(struct yaffs_obj_hdr *oh, loff_t fsize);
H A Dyaffs_guts.c5103 void yaffs_oh_size_load(struct yaffs_obj_hdr *oh, loff_t fsize) argument
5105 oh->file_size_low = (fsize & 0xFFFFFFFF);
5106 oh->file_size_high = ((fsize >> 32) & 0xFFFFFFFF);

Completed in 397 milliseconds