Searched refs:vsize (Results 1 - 19 of 19) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dmpi-cmp.c61 mpi_size_t vsize; local
84 vsize = v->nlimbs;
95 if (usize != vsize && !u->sign && !v->sign)
96 return usize - vsize;
97 if (usize != vsize && u->sign && v->sign)
98 return vsize + usize;
H A Dmpih-mul.c380 mpi_ptr_t vp, mpi_size_t vsize,
385 if( !ctx->tspace || ctx->tspace_size < vsize ) {
388 ctx->tspace_nlimbs = 2 * vsize;
389 ctx->tspace = mpi_alloc_limb_space( 2 * vsize,
392 ctx->tspace_size = vsize;
395 MPN_MUL_N_RECURSE( prodp, up, vp, vsize, ctx->tspace );
397 prodp += vsize;
398 up += vsize;
399 usize -= vsize;
400 if( usize >= vsize ) {
378 _gcry_mpih_mul_karatsuba_case( mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t usize, mpi_ptr_t vp, mpi_size_t vsize, struct karatsuba_ctx *ctx ) argument
475 _gcry_mpih_mul( mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t usize, mpi_ptr_t vp, mpi_size_t vsize) argument
[all...]
H A Dmpi-mul.c112 mpi_size_t usize, vsize, wsize; local
125 vsize = u->nlimbs;
135 vsize = v->nlimbs;
144 wsize = usize + vsize;
176 tmp_limb_nlimbs = vsize;
177 vp = tmp_limb = mpi_alloc_limb_space( vsize, vsecure );
179 MPN_COPY( vp, wp, vsize );
183 if( !vsize )
186 cy = _gcry_mpih_mul( wp, up, usize, vp, vsize );
H A Dmpi-add.c91 mpi_size_t usize, vsize, wsize; local
97 vsize = u->nlimbs;
108 vsize = v->nlimbs;
119 if( !vsize ) { /* simple */
126 if( usize != vsize ) {
127 _gcry_mpih_sub(wp, up, usize, vp, vsize);
148 mpi_limb_t cy = _gcry_mpih_add(wp, up, usize, vp, vsize);
H A Dmpi-internal.h225 mpi_ptr_t vp, mpi_size_t vsize);
232 mpi_ptr_t vp, mpi_size_t vsize,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ehca/
H A Dehca_uverbs.c109 u64 vsize, physical; local
111 vsize = vma->vm_end - vma->vm_start;
112 if (vsize != EHCA_PAGESIZE) {
113 ehca_gen_err("invalid vsize=%lx", vma->vm_end - vma->vm_start);
119 ehca_gen_dbg("vsize=%lx physical=%lx", vsize, physical);
122 vsize, vma->vm_page_prot);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dnsvdec.c428 PRINT(("NSV NSVs vsize %dx%d\n", vwidth, vheight));
535 uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
536 uint32_t vsize; local
562 vsize = get_le16(pb);
564 vsize = (vsize << 4) | (auxcount >> 4);
566 PRINT(("NSV CHUNK %d aux, %u bytes video, %d bytes audio\n", auxcount, vsize, asize));
578 vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
583 if (!vsize && !asize) {
594 if (vsize/*
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/proc/
H A Dtask_nommu.c74 unsigned long vsize = 0; local
79 vsize += kobjsize((void *) tbp->vma->vm_start);
82 return vsize;
H A Darray.c384 unsigned long vsize, eip, esp, wchan = ~0UL; local
403 vsize = eip = esp = 0;
406 vsize = task_vsize(mm);
511 vsize,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/pwc/
H A Dpwc-uncompress.c119 if (pdev->vsize == PSZ_VGA && pdev->vframes == 5 && pdev->vsnapshot) {
H A Dpwc-ctrl.c241 pdev->vsize = size;
301 pdev->vsize = size;
373 pdev->vsize = size;
382 PWC_TRACE("frame_size=%d, vframes=%d, vsize=%d, vsnapshot=%d, vbandlength=%d\n",
383 pdev->frame_size,pdev->vframes,pdev->vsize,pdev->vsnapshot,pdev->vbandlength);
H A Dpwc.h183 int vframes, vsize; /* frames-per-second & size (see PSZ_*) */ member in struct:pwc_device
H A Dpwc-if.c1156 i = pwc_set_video_mode(pdev, pwc_image_sizes[pdev->vsize].x, pwc_image_sizes[pdev->vsize].y, pdev->vframes, pdev->vcompression, 0);
1661 pdev->vsize = default_size;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dacct.c538 unsigned long vsize = 0; local
545 vsize += vma->vm_end - vma->vm_start;
553 pacct->ac_mem = vsize / 1024;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-gobject/
H A Dga-entry-group.c275 const guint8 * value, gsize vsize) {
278 _new_entry(value, vsize));
274 _set_entry(GHashTable * table, const guint8 * key, gsize ksize, const guint8 * value, gsize vsize) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/ttpci/
H A Dav7110_av.c361 int hsize, vsize; local
376 vsize = ((p[1] &0x0F) << 8) | (p[2]);
380 dprintk(2, "playback %dx%d fr=%d\n", hsize, vsize, sw);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dw9968cf.c2861 unsigned long vsize = vma->vm_end - vma->vm_start, local
2877 PDBGG("mmapping %lu bytes...", vsize)
2879 if (vsize > psize - (vma->vm_pgoff << PAGE_SHIFT))
2882 while (vsize > 0) {
2889 vsize -= PAGE_SIZE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/build-aux/
H A Dtexinfo.tex386 % (We lessened \vsize for it in \oddfootingyyy.)
2931 \global\advance\vsize by -12pt
4589 % Double the \vsize as well. (We don't need a separate register here,
4590 % since nobody clobbers \vsize.)
4591 \vsize = 2\vsize
4602 \dimen@ = \vsize
4670 % \pagegoal was set to the doubled \vsize above, since we restarted
4672 % typesetting, so reset \pagegoal to the normal \vsize (after the
4673 % \endgroup where \vsize go
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dtexinfo.tex390 % (We lessened \vsize for it in \oddfootingyyy.)
3154 \global\advance\vsize by -12pt
4831 % Double the \vsize as well. (We don't need a separate register here,
4832 % since nobody clobbers \vsize.)
4833 \vsize = 2\vsize
4844 \dimen@ = \vsize
4912 % \pagegoal was set to the doubled \vsize above, since we restarted
4914 % typesetting, so reset \pagegoal to the normal \vsize (after the
4915 % \endgroup where \vsize go
[all...]

Completed in 173 milliseconds