Searched defs:IV (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A DAFSplitter.c36 grub_uint32_t IV; /* host byte order independend hash IV */ local
41 grub_uint8_t temp[sizeof (IV) + hash->mdlen];
48 IV = grub_cpu_to_be32 (i);
49 grub_memcpy (temp, &IV, sizeof (IV));
50 grub_memcpy (temp + sizeof (IV), src + hash->mdlen * i, hash->mdlen);
52 sizeof (IV) + hash->mdlen);
57 IV = grub_cpu_to_be32 (i);
58 grub_memcpy (temp, &IV, sizeo
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dperl.h1073 The IV type is supposed to be long enough to hold any integral
1078 typedef IVTYPE IV; typedef
1149 * the same size as IV and UV. Otherwise we need an explicit
1164 #define PTR2IV(p) INT2PTR(IV,p)
1740 # define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
2287 IV any_iv;
2471 may be greater than sizeof(IV), so don't assume that half max UV is max IV.
2495 #define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
2496 : ((n) < UV_MAX_P1 ? (IV)(U
[all...]

Completed in 31 milliseconds